forked from swiftlang/swift-corelibs-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestProgressFraction.swift
159 lines (122 loc) · 5.37 KB
/
TestProgressFraction.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
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016, 2019 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
class TestProgressFraction : XCTestCase {
#if !NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT // _ProgressFraction is an internal type
static let allTests: [(String, (TestProgressFraction) -> () throws -> Void)] = []
#else
static let allTests: [(String, (TestProgressFraction) -> () throws -> Void)] = [
("test_equal", test_equal ),
("test_subtract", test_subtract),
("test_multiply", test_multiply),
("test_simplify", test_simplify),
("test_overflow", test_overflow),
("test_addOverflow", test_addOverflow),
("test_andAndSubtractOverflow", test_andAndSubtractOverflow),
("test_fractionFromDouble", test_fractionFromDouble),
("test_unnecessaryOverflow", test_unnecessaryOverflow),
]
func test_equal() {
let f1 = _ProgressFraction(completed: 5, total: 10)
let f2 = _ProgressFraction(completed: 100, total: 200)
XCTAssertEqual(f1, f2)
let f3 = _ProgressFraction(completed: 3, total: 10)
XCTAssertNotEqual(f1, f3)
let f4 = _ProgressFraction(completed: 5, total: 10)
XCTAssertEqual(f1, f4)
}
func test_addSame() {
let f1 = _ProgressFraction(completed: 5, total: 10)
let f2 = _ProgressFraction(completed: 3, total: 10)
let r = f1 + f2
XCTAssertEqual(r.completed, 8)
XCTAssertEqual(r.total, 10)
}
func test_addDifferent() {
let f1 = _ProgressFraction(completed: 5, total: 10)
let f2 = _ProgressFraction(completed: 300, total: 1000)
let r = f1 + f2
XCTAssertEqual(r.completed, 800)
XCTAssertEqual(r.total, 1000)
}
func test_subtract() {
let f1 = _ProgressFraction(completed: 5, total: 10)
let f2 = _ProgressFraction(completed: 3, total: 10)
let r = f1 - f2
XCTAssertEqual(r.completed, 2)
XCTAssertEqual(r.total, 10)
}
func test_multiply() {
let f1 = _ProgressFraction(completed: 5, total: 10)
let f2 = _ProgressFraction(completed: 1, total: 2)
let r = f1 * f2
XCTAssertEqual(r.completed, 5)
XCTAssertEqual(r.total, 20)
}
func test_simplify() {
let f1 = _ProgressFraction(completed: 5, total: 10)
let f2 = _ProgressFraction(completed: 3, total: 10)
let r = (f1 + f2).simplified()
XCTAssertEqual(r.completed, 4)
XCTAssertEqual(r.total, 5)
}
func test_overflow() {
// These prime numbers are problematic for overflowing
let denominators : [Int64] = [5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 69]
var f1 = _ProgressFraction(completed: 1, total: 3)
for d in denominators {
f1 = f1 + _ProgressFraction(completed: 1, total: d)
}
let fractionResult = f1.fractionCompleted
var expectedResult = 1.0 / 3.0
for d in denominators {
expectedResult = expectedResult + 1.0 / Double(d)
}
XCTAssertEqual(fractionResult, expectedResult, accuracy: 0.00001)
}
func test_addOverflow() {
// These prime numbers are problematic for overflowing
let denominators : [Int64] = [5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 69]
var f1 = _ProgressFraction(completed: 1, total: 3)
for d in denominators {
f1 = f1 + _ProgressFraction(completed: 1, total: d)
}
// f1 should be in overflow
XCTAssertTrue(f1.overflowed)
let f2 = _ProgressFraction(completed: 1, total: 4) + f1
// f2 should also be in overflow
XCTAssertTrue(f2.overflowed)
// And it should have completed value of about 1.0/4.0 + f1.fractionCompleted
let expected = (1.0 / 4.0) + f1.fractionCompleted
XCTAssertEqual(expected, f2.fractionCompleted, accuracy: 0.00001)
}
func test_andAndSubtractOverflow() {
let f1 = _ProgressFraction(completed: 48, total: 60)
let f2 = _ProgressFraction(completed: 5880, total: 7200)
let f3 = _ProgressFraction(completed: 7048893638467736640, total: 8811117048084670800)
let result1 = (f3 - f1) + f2
XCTAssertTrue(result1.completed > 0)
let result2 = (f3 - f2) + f1
XCTAssertTrue(result2.completed < 60)
}
func test_fractionFromDouble() {
let d = 4.25 // exactly representable in binary
let f1 = _ProgressFraction(double: d)
let simplified = f1.simplified()
XCTAssertEqual(simplified.completed, 17)
XCTAssertEqual(simplified.total, 4)
}
func test_unnecessaryOverflow() {
// just because a fraction has a large denominator doesn't mean it needs to overflow
let f1 = _ProgressFraction(completed: (Int64.max - 1) / 2, total: Int64.max - 1)
let f2 = _ProgressFraction(completed: 1, total: 16)
let r = f1 + f2
XCTAssertFalse(r.overflowed)
}
#endif
}