Skip to content

Commit 168e018

Browse files
committed
TestFoundation: TestDateInterval: Add tests for functionality
1 parent 91abe2a commit 168e018

File tree

1 file changed

+114
-0
lines changed

1 file changed

+114
-0
lines changed

TestFoundation/TestDateInterval.swift

+114
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,124 @@
1010
class TestDateInterval: XCTestCase {
1111
static var allTests: [(String, (TestDateInterval) -> () throws -> Void)] {
1212
return [
13+
("test_default_constructor", test_default_constructor),
14+
("test_start_end_constructor", test_start_end_constructor),
15+
("test_start_duration_constructor", test_start_duration_constructor),
16+
("test_compare_different_starts", test_compare_different_starts),
17+
("test_compare_different_durations", test_compare_different_durations),
18+
("test_compare_same", test_compare_same),
19+
("test_comparison_operators", test_comparison_operators),
20+
("test_intersects", test_intersects),
21+
("test_intersection", test_intersection),
22+
("test_intersection_zero_duration", test_intersection_zero_duration),
23+
("test_intersection_nil", test_intersection_nil),
24+
("test_contains", test_contains),
1325
("test_hashing", test_hashing),
1426
]
1527
}
1628

29+
func test_default_constructor() {
30+
let dateInterval = DateInterval()
31+
XCTAssertEqual(dateInterval.duration, 0)
32+
}
33+
34+
func test_start_end_constructor() {
35+
let date1 = dateWithString("2019-04-04 17:09:23 -0700")
36+
let date2 = dateWithString("2019-04-04 18:09:23 -0700")
37+
let dateInterval = DateInterval(start: date1, end: date2)
38+
XCTAssertEqual(dateInterval.duration, 60 * 60)
39+
}
40+
41+
func test_start_duration_constructor() {
42+
let date = dateWithString("2019-04-04 17:09:23 -0700")
43+
let dateInterval = DateInterval(start: date, duration: 60)
44+
XCTAssertEqual(dateInterval.duration, 60)
45+
}
46+
47+
func test_compare_different_starts() {
48+
let date1 = dateWithString("2019-04-04 17:09:23 -0700")
49+
let date2 = dateWithString("2019-04-04 18:09:23 -0700")
50+
let dateInterval1 = DateInterval(start: date1, duration: 100)
51+
let dateInterval2 = DateInterval(start: date2, duration: 100)
52+
XCTAssertEqual(dateInterval1.compare(dateInterval2), .orderedAscending)
53+
XCTAssertEqual(dateInterval2.compare(dateInterval1), .orderedDescending)
54+
}
55+
56+
func test_compare_different_durations() {
57+
let date = dateWithString("2019-04-04 17:09:23 -0700")
58+
let dateInterval1 = DateInterval(start: date, duration: 60)
59+
let dateInterval2 = DateInterval(start: date, duration: 90)
60+
XCTAssertEqual(dateInterval1.compare(dateInterval2), .orderedAscending)
61+
XCTAssertEqual(dateInterval2.compare(dateInterval1), .orderedDescending)
62+
}
63+
64+
func test_compare_same() {
65+
let date = dateWithString("2019-04-04 17:09:23 -0700")
66+
let dateInterval1 = DateInterval(start: date, duration: 60)
67+
let dateInterval2 = DateInterval(start: date, duration: 60)
68+
XCTAssertEqual(dateInterval1.compare(dateInterval2), .orderedSame)
69+
XCTAssertEqual(dateInterval2.compare(dateInterval1), .orderedSame)
70+
}
71+
72+
func test_comparison_operators() {
73+
let date1 = dateWithString("2019-04-04 17:00:00 -0700")
74+
let date2 = dateWithString("2019-04-04 17:30:00 -0700")
75+
let dateInterval1 = DateInterval(start: date1, duration: 60)
76+
let dateInterval2 = DateInterval(start: date2, duration: 60)
77+
let dateInterval3 = DateInterval(start: date1, duration: 90)
78+
let dateInterval4 = DateInterval(start: date1, duration: 60)
79+
XCTAssertTrue(dateInterval1 < dateInterval2)
80+
XCTAssertTrue(dateInterval1 < dateInterval3)
81+
XCTAssertTrue(dateInterval1 == dateInterval4)
82+
}
83+
84+
func test_intersects() {
85+
let date1 = dateWithString("2019-04-04 17:09:23 -0700")
86+
let date2 = dateWithString("2019-04-04 17:10:20 -0700")
87+
let dateInterval1 = DateInterval(start: date1, duration: 60)
88+
let dateInterval2 = DateInterval(start: date2, duration: 15)
89+
XCTAssertTrue(dateInterval1.intersects(dateInterval2))
90+
}
91+
92+
func test_intersection() {
93+
let date1 = dateWithString("2019-04-04 17:00:00 -0700")
94+
let date2 = dateWithString("2019-04-04 17:15:00 -0700")
95+
let dateInterval1 = DateInterval(start: date1, duration: 60 * 30)
96+
let dateInterval2 = DateInterval(start: date2, duration: 60 * 30)
97+
let intersection = dateInterval1.intersection(with: dateInterval2)
98+
XCTAssertNotNil(intersection)
99+
XCTAssertEqual(intersection!.duration, 60 * 15)
100+
}
101+
102+
func test_intersection_zero_duration() {
103+
let date1 = dateWithString("2019-04-04 17:00:00 -0700")
104+
let date2 = dateWithString("2019-04-04 17:30:00 -0700")
105+
let dateInterval1 = DateInterval(start: date1, duration: 60 * 30)
106+
let dateInterval2 = DateInterval(start: date2, duration: 60 * 30)
107+
let intersection = dateInterval1.intersection(with: dateInterval2)
108+
XCTAssertNotNil(intersection)
109+
XCTAssertEqual(intersection!.duration, 0)
110+
}
111+
112+
func test_intersection_nil() {
113+
let date1 = dateWithString("2019-04-04 17:00:00 -0700")
114+
let date2 = dateWithString("2019-04-04 17:30:01 -0700")
115+
let dateInterval1 = DateInterval(start: date1, duration: 60 * 30)
116+
let dateInterval2 = DateInterval(start: date2, duration: 60 * 30)
117+
XCTAssertNil(dateInterval1.intersection(with: dateInterval2))
118+
}
119+
120+
func test_contains() {
121+
let date1 = dateWithString("2019-04-04 17:00:00 -0700")
122+
let date2 = dateWithString("2019-04-04 17:30:00 -0700")
123+
let date3 = dateWithString("2019-04-04 17:45:00 -0700")
124+
let date4 = dateWithString("2019-04-04 17:50:00 -0700")
125+
let dateInterval = DateInterval(start: date1, duration: 60 * 45)
126+
XCTAssertTrue(dateInterval.contains(date2))
127+
XCTAssertTrue(dateInterval.contains(date3))
128+
XCTAssertFalse(dateInterval.contains(date4))
129+
}
130+
17131
func test_hashing() {
18132
guard #available(iOS 10.10, OSX 10.12, tvOS 10.0, watchOS 3.0, *) else { return }
19133

0 commit comments

Comments
 (0)