forked from apple/swift-collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Combinatorics.swift
177 lines (170 loc) · 5.36 KB
/
Combinatorics.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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift Collections open source project
//
// Copyright (c) 2021 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
//
//===----------------------------------------------------------------------===//
/// Run the supplied closure with all values in `items` in a loop,
/// recording the current value in the current test trace stack.
public func withEvery<S: Sequence>(
_ label: String,
in items: S,
file: StaticString = #file,
line: UInt = #line,
run body: (S.Element) throws -> Void
) rethrows {
let context = TestContext.current
for item in items {
let entry = context.push("\(label): \(item)", file: file, line: line)
var done = false
defer {
context.pop(entry)
if !done {
print(context.currentTrace(title: "Throwing trace"))
}
}
try body(item)
done = true
}
}
public func withEveryRange<T: Strideable>(
_ label: String,
in bounds: Range<T>,
file: StaticString = #file,
line: UInt = #line,
run body: (Range<T>) throws -> Void
) rethrows where T.Stride == Int {
let context = TestContext.current
for lowerBound in bounds.lowerBound ... bounds.upperBound {
for upperBound in lowerBound ... bounds.upperBound {
let range = lowerBound ..< upperBound
let entry = context.push("\(label): \(range)", file: file, line: line)
var done = false
defer {
context.pop(entry)
if !done {
print(context.currentTrace(title: "Throwing trace"))
}
}
try body(range)
done = true
}
}
}
internal func _samples<C: Collection>(from items: C) -> [C.Element] {
let c = items.count
guard c > 7 else { return Array(items) }
let offsets = [0, 1, c / 2 - 1, c / 2, c / 2 + 1, c - 2, c - 1]
var offset = 0
var index = items.startIndex
var result: [C.Element] = []
result.reserveCapacity(7)
for o in offsets {
items.formIndex(&index, offsetBy: o - offset)
offset = o
result.append(items[index])
}
return result
}
/// Run the supplied closure with all values in `items` in a loop,
/// recording the current value in the current test trace stack.
public func withSome<C: Collection>(
_ label: String,
in items: C,
file: StaticString = #file,
line: UInt = #line,
run body: (C.Element) throws -> Void
) rethrows {
let context = TestContext.current
for item in _samples(from: items) {
let entry = context.push("\(label): \(item)", file: file, line: line)
var done = false
defer {
context.pop(entry)
if !done {
print(context.currentTrace(title: "Throwing trace"))
}
}
try body(item)
done = true
}
}
public func withSomeRanges<T: Strideable>(
_ label: String,
in bounds: Range<T>,
file: StaticString = #file,
line: UInt = #line,
run body: (Range<T>) throws -> Void
) rethrows where T.Stride == Int {
let context = TestContext.current
for lowerBound in _samples(from: bounds) {
for upperBound in _samples(from: lowerBound ... bounds.upperBound) {
let range = lowerBound ..< upperBound
let entry = context.push("\(label): \(range)", file: file, line: line)
var done = false
defer {
context.pop(entry)
if !done {
print(context.currentTrace(title: "Throwing trace"))
}
}
try body(range)
done = true
}
}
}
/// Utility function for testing mutations with value semantics.
///
/// Calls `body` with on given collection value, while optionally keeping
/// hidden a hidden copy of it around. Once `body` returns, checks that the copy
/// remain unchanged.
///
/// - Parameters:
/// - `enabled`: if `false`, then no copies are made -- the values are passed to `body` with no processing.
/// - `value`: The collection value that is being tested.
/// - `body`: A closure performing a mutation on `value`.
public func withHiddenCopies<S: Sequence, R>(
if enabled: Bool,
of value: inout S,
file: StaticString = #file, line: UInt = #line,
_ body: (inout S) throws -> R
) rethrows -> R where S.Element: Equatable {
guard enabled else { return try body(&value) }
let copy = value
let expected = Array(value)
let result = try body(&value)
expectEqualElements(copy, expected, file: file, line: line)
return result
}
/// Utility function for testing mutations with value semantics.
///
/// Calls `body` with on given collection value, while optionally keeping
/// hidden a hidden copy of it around. Once `body` returns, checks that the copy
/// remain unchanged.
///
/// - Parameters:
/// - `enabled`: if `false`, then no copies are made -- the values are passed to `body` with no processing.
/// - `value`: The collection value that is being tested.
/// - `body`: A closure performing a mutation on `value`.
public func withHiddenCopies<
S: Sequence,
Key: Equatable,
Value: Equatable,
R
>(
if enabled: Bool,
of value: inout S,
file: StaticString = #file, line: UInt = #line,
_ body: (inout S) throws -> R
) rethrows -> R where S.Element == (key: Key, value: Value) {
guard enabled else { return try body(&value) }
let copy = value
let expected = Array(value)
let result = try body(&value)
expectEqualElements(copy, expected, file: file, line: line)
return result
}