- Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathTestThread.swift
174 lines (147 loc) · 6.39 KB
/
TestThread.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
#if canImport(SwiftFoundation) && !DEPLOYMENT_RUNTIME_OBJC
@testableimport SwiftFoundation
#else
@testableimport Foundation
#endif
#endif
classTestThread:XCTestCase{
func test_currentThread(){
letthread1=Thread.current
letthread2=Thread.current
XCTAssertEqual(thread1, thread2)
XCTAssertEqual(thread1,Thread.mainThread)
}
func test_threadStart(){
letcondition=NSCondition()
condition.lock()
letthread=Thread(){
condition.lock()
condition.broadcast()
condition.unlock()
}
XCTAssertEqual(thread.qualityOfService,.default)
thread.start()
letok= condition.wait(until:Date(timeIntervalSinceNow:2))
condition.unlock()
XCTAssertTrue(ok,"NSCondition wait timed out")
}
func test_threadName(){
func testInternalThreadName(_ name:String?){
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
XCTAssertEqual(Thread.current._name, name)
#endif
}
#if os(Linux) || os(Android) // Linux sets the initial thread name to the process name.
XCTAssertEqual(Thread.current.name,"swift-corelibs-")
testInternalThreadName("swift-corelibs-")
#elseif os(OpenBSD) // OpenBSD sets the initial thread name to this.
XCTAssertEqual(Thread.current.name,"Original thread")
testInternalThreadName("Original thread")
#else
// No name is set initially
XCTAssertEqual(Thread.current.name,"")
testInternalThreadName("")
#endif
Thread.current.name ="mainThread"
XCTAssertEqual(Thread.mainThread.name,"mainThread")
testInternalThreadName("mainThread")
Thread.current.name ="12345678901234567890"
#if os(Linux) || os(Android)
// pthread_setname_np() only allows 15 characters on Linux, so setting it fails
// and the previous name will still be there.
XCTAssertEqual(Thread.current.name,"mainThread")
#else
XCTAssertEqual(Thread.current.name,"12345678901234567890")
#endif
testInternalThreadName(Thread.current.name)
}
func test_mainThread(){
XCTAssertTrue(Thread.isMainThread)
lett=Thread.mainThread
XCTAssertTrue(t.isMainThread)
letc=Thread.current
XCTAssertTrue(c.isMainThread)
XCTAssertTrue(c.isExecuting)
XCTAssertTrue(c.isEqual(t))
letcondition=NSCondition()
condition.lock()
letthread=Thread(){
condition.lock()
XCTAssertFalse(Thread.isMainThread)
XCTAssertFalse(Thread.mainThread ==Thread.current)
condition.broadcast()
condition.unlock()
}
thread.start()
letok= condition.wait(until:Date(timeIntervalSinceNow:10))
condition.unlock()
XCTAssertTrue(ok,"NSCondition wait timed out")
}
func test_callStackSymbols()throws{
#if os(Android) || os(OpenBSD)
throwXCTSkip("Android/OpenBSD doesn't support backtraces at the moment.")
#elseif os(Windows)
throwXCTSkip("This test is unexpectedly crashing in CI at the moment.")
#else
letsymbols=Thread.callStackSymbols
XCTAssertTrue(symbols.count >0)
XCTAssertTrue(symbols.count <=128)
#endif
}
func test_callStackReturnAddresses()throws{
#if os(Android) || os(OpenBSD)
throwXCTSkip("Android/OpenBSD doesn't support backtraces at the moment.")
#elseif os(Windows)
throwXCTSkip("This test is unexpectedly crashing in CI at the moment.")
#else
letaddresses=Thread.callStackReturnAddresses
XCTAssertTrue(addresses.count >0)
XCTAssertTrue(addresses.count <=128)
#endif
}
func test_sleepForTimeInterval()throws{
throwXCTSkip("https://bugs.swift.org/browse/SR-15817")
#if false
letmeasureOversleep={(timeInterval:TimeInterval)->TimeIntervalin
letstart=Date()
Thread.sleep(forTimeInterval: timeInterval)
// Measures time Thread.sleep spends over specified timeInterval value
return-(start.timeIntervalSinceNow + timeInterval)
}
// Allow a little early wake-ups. Sleep timer on Windows
// is more precise than timer used in Date implementation.
letallowedOversleepRange=-0.00001..<0.1
letoversleep1=measureOversleep(TimeInterval(0.9))
XCTAssertTrue(allowedOversleepRange.contains(oversleep1),"Oversleep \(oversleep1) is not in expected range \(allowedOversleepRange)")
letoversleep2=measureOversleep(TimeInterval(1.2))
XCTAssertTrue(allowedOversleepRange.contains(oversleep2),"Oversleep \(oversleep2) is not in expected range \(allowedOversleepRange)")
letoversleep3=measureOversleep(TimeInterval(1.0))
XCTAssertTrue(allowedOversleepRange.contains(oversleep3),"Oversleep \(oversleep3) is not in expected range \(allowedOversleepRange)")
#endif
}
func test_sleepUntilDate()throws{
throwXCTSkip("https://bugs.swift.org/browse/SR-15489")
#if false
letmeasureOversleep={(date:Date)->TimeIntervalin
Thread.sleep(until: date)
return-date.timeIntervalSinceNow
}
letallowedOversleepRange=-0.00001..<0.1
letoversleep1=measureOversleep(Date(timeIntervalSinceNow:0.8))
XCTAssertTrue(allowedOversleepRange.contains(oversleep1),"Oversleep \(oversleep1) is not in expected range \(allowedOversleepRange)")
letoversleep2=measureOversleep(Date(timeIntervalSinceNow:1.1))
XCTAssertTrue(allowedOversleepRange.contains(oversleep2),"Oversleep \(oversleep2) is not in expected range \(allowedOversleepRange)")
letoversleep3=measureOversleep(Date(timeIntervalSinceNow:1.0))
XCTAssertTrue(allowedOversleepRange.contains(oversleep3),"Oversleep \(oversleep3) is not in expected range \(allowedOversleepRange)")
#endif
}
}