forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interval.swift
219 lines (183 loc) · 5.4 KB
/
Interval.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
//===--- Interval.swift ---------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 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
//
//===----------------------------------------------------------------------===//
// RUN: %target-run-simple-swift
// REQUIRES: executable_test
//
// XFAIL: interpret
import StdlibUnittest
// Check that the generic parameter is called 'Bound'.
protocol TestProtocol1 {}
extension HalfOpenInterval where Bound : TestProtocol1 {
var _elementIsTestProtocol1: Bool {
fatalError("not implemented")
}
}
extension ClosedInterval where Bound : TestProtocol1 {
var _elementIsTestProtocol1: Bool {
fatalError("not implemented")
}
}
var IntervalTestSuite = TestSuite("Interval")
IntervalTestSuite.test("Ambiguity") {
// Ensure type deduction still works as expected; these will fail to
// compile if it's broken
var pieToPie = -3.1415927..<3.1415927
expectType(HalfOpenInterval<Double>.self, &pieToPie)
var pieThruPie = -3.1415927...3.1415927
expectType(ClosedInterval<Double>.self, &pieThruPie)
var zeroToOne = 0..<1
expectType(Range<Int>.self, &zeroToOne)
var zeroThruOne = 0...1
// If/when we get a separate ClosedRange representation, this test
// will have to change.
expectType(Range<Int>.self, &zeroThruOne)
}
IntervalTestSuite.test("PatternMatching") {
let pie = 3.1415927
let expectations : [(Double, halfOpen: Bool, closed: Bool)] = [
(-2 * pie, false, false),
(-pie, true, true),
(0, true, true),
(pie, false, true),
(2 * pie, false, false)
]
for (x, halfOpenExpected, closedExpected) in expectations {
var halfOpen: Bool
switch x {
case -3.1415927..<3.1415927:
halfOpen = true
default:
halfOpen = false
}
var closed: Bool
switch x {
case -3.1415927...3.1415927:
closed = true
default:
closed = false
}
expectEqual(halfOpenExpected, halfOpen)
expectEqual(closedExpected, closed)
}
}
IntervalTestSuite.test("Overlaps") {
func expectOverlaps<
I0: IntervalType, I1: IntervalType where I0.Bound == I1.Bound
>(expectation: Bool, _ lhs: I0, _ rhs: I1) {
if expectation {
expectTrue(lhs.overlaps(rhs))
expectTrue(rhs.overlaps(lhs))
}
else {
expectFalse(lhs.overlaps(rhs))
expectFalse(rhs.overlaps(lhs))
}
}
// 0-4, 5-10
expectOverlaps(false, 0..<4, 5..<10)
expectOverlaps(false, 0..<4, 5...10)
expectOverlaps(false, 0...4, 5..<10)
expectOverlaps(false, 0...4, 5...10)
// 0-5, 5-10
expectOverlaps(false, 0..<5, 5..<10)
expectOverlaps(false, 0..<5, 5...10)
expectOverlaps(true, 0...5, 5..<10)
expectOverlaps(true, 0...5, 5...10)
// 0-6, 5-10
expectOverlaps(true, 0..<6, 5..<10)
expectOverlaps(true, 0..<6, 5...10)
expectOverlaps(true, 0...6, 5..<10)
expectOverlaps(true, 0...6, 5...10)
// 0-20, 5-10
expectOverlaps(true, 0..<20, 5..<10)
expectOverlaps(true, 0..<20, 5...10)
expectOverlaps(true, 0...20, 5..<10)
expectOverlaps(true, 0...20, 5...10)
}
IntervalTestSuite.test("Emptiness") {
expectTrue((0.0..<0.0).isEmpty)
expectFalse((0.0...0.0).isEmpty)
expectFalse((0.0..<0.1).isEmpty)
expectFalse((0.0..<0.1).isEmpty)
}
IntervalTestSuite.test("start/end") {
expectEqual(0.0, (0.0..<0.1).start)
expectEqual(0.0, (0.0...0.1).start)
expectEqual(0.1, (0.0..<0.1).end)
expectEqual(0.1, (0.0...0.1).end)
}
// Something to test with that distinguishes debugDescription from description
struct X<T : Comparable> : Comparable, CustomStringConvertible, CustomDebugStringConvertible {
init(_ a: T) {
self.a = a
}
var description: String {
return String(a)
}
var debugDescription: String {
return "X(\(String(reflecting: a)))"
}
var a: T
}
func < <T : Comparable>(lhs: X<T>, rhs: X<T>) -> Bool {
return lhs.a < rhs.a
}
func == <T : Comparable>(lhs: X<T>, rhs: X<T>) -> Bool {
return lhs.a == rhs.a
}
IntervalTestSuite.test("CustomStringConvertible/CustomDebugStringConvertible") {
expectEqual("0.0..<0.1", String(X(0.0)..<X(0.1)))
expectEqual("0.0...0.1", String(X(0.0)...X(0.1)))
expectEqual(
"HalfOpenInterval(X(0.0)..<X(0.1))",
String(reflecting: HalfOpenInterval(X(0.0)..<X(0.1))))
expectEqual(
"ClosedInterval(X(0.0)...X(0.1))",
String(reflecting: ClosedInterval(X(0.0)...X(0.1))))
}
IntervalTestSuite.test("rdar12016900") {
if true {
let wc = 0
expectFalse((0x00D800 ..< 0x00E000).contains(wc))
}
if true {
let wc = 0x00D800
expectTrue((0x00D800 ..< 0x00E000).contains(wc))
}
}
IntervalTestSuite.test("clamp") {
expectEqual(
(5..<10).clamp(0..<3), 5..<5)
expectEqual(
(5..<10).clamp(0..<9), 5..<9)
expectEqual(
(5..<10).clamp(0..<13), 5..<10)
expectEqual(
(5..<10).clamp(7..<9), 7..<9)
expectEqual(
(5..<10).clamp(7..<13), 7..<10)
expectEqual(
(5..<10).clamp(13..<15), 10..<10)
expectEqual(
(5...10).clamp(0...3), 5...5)
expectEqual(
(5...10).clamp(0...9), 5...9)
expectEqual(
(5...10).clamp(0...13), 5...10)
expectEqual(
(5...10).clamp(7...9), 7...9)
expectEqual(
(5...10).clamp(7...13), 7...10)
expectEqual(
(5...10).clamp(13...15), 10...10)
}
runAllTests()