This repository was archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCombinationsTests.swift
244 lines (207 loc) · 8.9 KB
/
CombinationsTests.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
//
// CombinationsTests.swift
// IteratorTools
//
// Created by Michael Pangburn on 8/28/17.
// Copyright © 2017 Michael Pangburn. All rights reserved.
//
import XCTest
@testable import IteratorTools
// MARK: - Combinations without repetition tests
class CombinationsWithoutRepetitionTests: XCTestCase {
// MARK: - Eager computation
func testCombinationsOfLengthTwo() {
let combinations = [1, 2, 3].combinations(length: 2, repeatingElements: false)
let expectedValues = [[1, 2], [1, 3], [2, 3]]
XCTAssert(combinations.count == expectedValues.count)
for index in expectedValues.indices {
XCTAssert(combinations[index] == expectedValues[index])
}
}
func testMoreCombinationsOfLengthTwo() {
let combinations = [1, 2, 3, 4].combinations(length: 2, repeatingElements: false)
let expectedValues = [
[1, 2], [1, 3], [1, 4],
[2, 3], [2, 4], [3, 4]
]
XCTAssert(combinations.count == expectedValues.count)
for index in expectedValues.indices {
XCTAssert(combinations[index] == expectedValues[index])
}
}
func testCombinationsOfLengthOne() {
let combinations = [1, 2, 3].combinations(length: 1, repeatingElements: false)
let expectedValues = [[1], [2], [3]]
XCTAssert(combinations.count == expectedValues.count)
for index in expectedValues.indices {
XCTAssert(combinations[index] == expectedValues[index])
}
}
func testCombinationsOfLengthZero() {
let combinations = [1, 2, 3].combinations(length: 0, repeatingElements: false)
XCTAssert(combinations.isEmpty)
}
func testCombinationsOfEqualLength() {
let combinations = [1, 2, 3].combinations(length: 3, repeatingElements: false)
XCTAssert(combinations.count == 1)
XCTAssert(combinations[0] == [1, 2, 3])
}
func testCombinationsOfLongerLength() {
let combinations = [1, 2, 3].combinations(length: 4, repeatingElements: false)
XCTAssert(combinations.isEmpty)
}
func testCombinationsEmpty() {
let combinations = [].combinations(length: 1, repeatingElements: false)
XCTAssert(combinations.isEmpty)
}
// MARK: - Lazy computation
func testLazyCombinationsOfLengthTwo() {
var combinations = [1, 2, 3].lazy.combinations(length: 2, repeatingElements: false)
let expectedValues = [[1, 2], [1, 3], [2, 3]]
for index in expectedValues.indices {
XCTAssert(combinations.next()! == expectedValues[index])
}
XCTAssert(combinations.next() == nil)
}
func testMoreLazyCombinationsOfLengthTwo() {
var combinations = [1, 2, 3, 4].lazy.combinations(length: 2, repeatingElements: false)
let expectedValues = [
[1, 2], [1, 3], [1, 4],
[2, 3], [2, 4], [3, 4]
]
for index in expectedValues.indices {
XCTAssert(combinations.next()! == expectedValues[index])
}
XCTAssert(combinations.next() == nil)
}
func testLazyCombinationsOfLengthOne() {
var combinations = [1, 2, 3].lazy.combinations(length: 1, repeatingElements: false)
let expectedValues = [[1], [2], [3]]
for index in expectedValues.indices {
XCTAssert(combinations.next()! == expectedValues[index])
}
XCTAssert(combinations.next() == nil)
}
func testLazyCombinationsOfLengthZero() {
var combinations = [1, 2, 3].lazy.combinations(length: 0, repeatingElements: false)
XCTAssert(combinations.next() == nil)
}
func testLazyCombinationsOfEqualLength() {
var combinations = [1, 2, 3].lazy.combinations(length: 3, repeatingElements: false)
XCTAssert(combinations.next()! == [1, 2, 3])
XCTAssert(combinations.next() == nil)
}
func testLazyCombinationsOfLongerLength() {
var combinations = [1, 2, 3].lazy.combinations(length: 4, repeatingElements: false)
XCTAssert(combinations.next() == nil)
}
func testLazyCombinationsEmpty() {
var combinations = [].lazy.combinations(length: 1, repeatingElements: false)
XCTAssert(combinations.next() == nil)
}
}
// MARK: - Combinations with replacement tests
class CombinationsWithRepetitionTests: XCTestCase {
// MARK: - Eager computation
func testCombinationsOfLengthTwoWithReplacement() {
let combinations = [1, 2, 3].combinations(length: 2, repeatingElements: true)
let expectedValues = [
[1, 1], [1, 2], [1, 3],
[2, 2], [2, 3], [3, 3]
]
XCTAssert(combinations.count == expectedValues.count)
for index in expectedValues.indices {
XCTAssert(combinations[index] == expectedValues[index])
}
}
func testCombinationsOfEqualLengthWithReplacement() {
let combinations = [1, 2, 3].combinations(length: 3, repeatingElements: true)
let expectedValues = [
[1, 1, 1], [1, 1, 2], [1, 1, 3], [1, 2, 2], [1, 2, 3],
[1, 3, 3], [2, 2, 2], [2, 2, 3], [2, 3, 3], [3, 3, 3]
]
XCTAssert(combinations.count == expectedValues.count)
for index in expectedValues.indices {
XCTAssert(combinations[index] == expectedValues[index])
}
}
func testCombinationsOfLongerLengthWithReplacement() {
let combinations = [1, 2, 3].combinations(length: 4, repeatingElements: true)
let expectedValues = [
[1, 1, 1, 1], [1, 1, 1, 2], [1, 1, 1, 3], [1, 1, 2, 2], [1, 1, 2, 3],
[1, 1, 3, 3], [1, 2, 2, 2], [1, 2, 2, 3], [1, 2, 3, 3], [1, 3, 3, 3],
[2, 2, 2, 2], [2, 2, 2, 3], [2, 2, 3, 3], [2, 3, 3, 3], [3, 3, 3, 3]
]
XCTAssert(combinations.count == expectedValues.count)
for index in expectedValues.indices {
XCTAssert(combinations[index] == expectedValues[index])
}
}
func testCombinationsOfLengthOneWithReplacement() {
let combinations = [1, 2, 3].combinations(length: 1, repeatingElements: true)
let expectedValues = [[1], [2], [3]]
XCTAssert(combinations.count == expectedValues.count)
for index in expectedValues.indices {
XCTAssert(combinations[index] == expectedValues[index])
}
}
func testCombinationsOfLengthZeroWithReplacement() {
let combinations = [1, 2, 3].combinations(length: 0, repeatingElements: true)
XCTAssert(combinations.isEmpty)
}
func testCombinationsWithRepetitionEmpty() {
let combinations = [].combinations(length: 1, repeatingElements: true)
XCTAssert(combinations.isEmpty)
}
// MARK: - Lazy computation
func testLazyCombinationsOfLengthTwoWithReplacement() {
var combinations = [1, 2, 3].lazy.combinations(length: 2, repeatingElements: true)
let expectedValues = [
[1, 1], [1, 2], [1, 3],
[2, 2], [2, 3], [3, 3]
]
for index in expectedValues.indices {
XCTAssert(combinations.next()! == expectedValues[index])
}
XCTAssert(combinations.next() == nil)
}
func testLazyCombinationsOfEqualLengthWithReplacement() {
var combinations = [1, 2, 3].lazy.combinations(length: 3, repeatingElements: true)
let expectedValues = [
[1, 1, 1], [1, 1, 2], [1, 1, 3], [1, 2, 2], [1, 2, 3],
[1, 3, 3], [2, 2, 2], [2, 2, 3], [2, 3, 3], [3, 3, 3]
]
for index in expectedValues.indices {
XCTAssert(combinations.next()! == expectedValues[index])
}
XCTAssert(combinations.next() == nil)
}
func testLazyCombinationsOfLongerLengthWithReplacement() {
var combinations = [1, 2, 3].lazy.combinations(length: 4, repeatingElements: true)
let expectedValues = [
[1, 1, 1, 1], [1, 1, 1, 2], [1, 1, 1, 3], [1, 1, 2, 2], [1, 1, 2, 3],
[1, 1, 3, 3], [1, 2, 2, 2], [1, 2, 2, 3], [1, 2, 3, 3], [1, 3, 3, 3],
[2, 2, 2, 2], [2, 2, 2, 3], [2, 2, 3, 3], [2, 3, 3, 3], [3, 3, 3, 3]
]
for index in expectedValues.indices {
XCTAssert(combinations.next()! == expectedValues[index])
}
XCTAssert(combinations.next() == nil)
}
func testLazyCombinationsOfLengthOneWithReplacement() {
var combinations = [1, 2, 3].lazy.combinations(length: 1, repeatingElements: true)
let expectedValues = [[1], [2], [3]]
for index in expectedValues.indices {
XCTAssert(combinations.next()! == expectedValues[index])
}
XCTAssert(combinations.next() == nil)
}
func testLazyCombinationsOfLengthZeroWithReplacement() {
var combinations = [1, 2, 3].lazy.combinations(length: 0, repeatingElements: true)
XCTAssert(combinations.next() == nil)
}
func testLazyCombinationsWithRepetitionEmpty() {
var combinations = [].lazy.combinations(length: 1, repeatingElements: true)
XCTAssert(combinations.next() == nil)
}
}