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 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift Collections open source project
//
// Copyright (c) 2021 - 2024 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
//
//===----------------------------------------------------------------------===//
import XCTest
#if COLLECTIONS_SINGLE_MODULE
@_spi(Testing) import Collections
#else
import _CollectionsTestSupport
@_spi(Testing) import DequeModule
#endif
/// Exhaustive tests for `Deque`'s implementations for `RangeReplaceableCollection`
/// requirements.
final class RangeReplaceableCollectionTests: CollectionTestCase {
// Note: Most of the test below are exhaustively testing the behavior
// of a particular mutation or query on every possible deque layout
// of a small set of capacities. This helps catching issues that may only
// occur within rare constellations of deque state -- such as when the range
// of occupied slots is wrapped at a particular point.
func test_emptyInitializer() {
let deque = Deque<Int>()
expectTrue(deque.isEmpty)
expectEqual(deque.count, 0)
expectEqual(deque.startIndex, deque.endIndex)
expectEqual(deque.distance(from: deque.startIndex, to: deque.endIndex), 0)
expectEqual(Array(deque), [])
}
func test_singleElement() {
let deque = Deque([42])
expectFalse(deque.isEmpty)
expectEqual(deque.count, 1)
expectLessThan(deque.startIndex, deque.endIndex)
expectEqual(deque.index(after: deque.startIndex), deque.endIndex)
expectEqual(deque.distance(from: deque.startIndex, to: deque.endIndex), 1)
expectEqual(deque[0], 42)
expectEqual(Array(deque), [42])
}
func test_sequenceInitializer() {
withEvery("count", in: [0, 1, 2, 10, 100]) { count in
let ucVariants: [UnderestimatedCountBehavior] = [.precise, .half, .value(min(1, count))]
withEvery("underestimatedCount", in: ucVariants) { underestimatedCount in
withLifetimeTracking { tracker in
let contents = tracker.instances(for: 0 ..< count)
let d1 = Deque(MinimalSequence(elements: contents, underestimatedCount: underestimatedCount))
expectEqualElements(d1, contents)
}
}
}
}
func test_sequenceInitializer_ContiguousArray() {
withEvery("count", in: [0, 1, 2, 10, 100]) { count in
withLifetimeTracking { tracker in
let contents = ContiguousArray(tracker.instances(for: 0 ..< count))
let d1 = Deque(contents)
expectEqualElements(d1, contents)
}
}
}
func test_sequenceInitializer_bridgedArray() {
// https://github.com/apple/swift-collections/issues/27
withEvery("count", in: [0, 1, 2, 10, 100]) { count in
let contents: [AnyObject] = (0 ..< count).map { _ in NSObject() }
let array: [AnyObject] = contents.withUnsafeBufferPointer { buffer in
NSArray(objects: buffer.baseAddress, count: buffer.count) as [AnyObject]
}
let deque = Deque(array)
expectEquivalentElements(deque, contents, by: ===)
}
}
func test_replaceSubrange_withMinimalCollection() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEveryRange("range", in: 0 ..< layout.count) { range in
withEvery("replacementCount", in: [0, 1, 2, 3, 5, 10]) { replacementCount in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
let extras = tracker.instances(for: layout.count ..< layout.count + replacementCount)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.replaceSubrange(range, with: extras)
let minimal = MinimalCollection(extras)
deque.replaceSubrange(range, with: minimal)
expectEqualElements(deque, contents)
}
}
}
}
}
}
}
func test_replaceSubrange_withArray() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEveryRange("range", in: 0 ..< layout.count) { range in
withEvery("replacementCount", in: [0, 1, 2, 3, 5, 10]) { replacementCount in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
let extras = tracker.instances(for: layout.count ..< layout.count + replacementCount)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.replaceSubrange(range, with: extras)
deque.replaceSubrange(range, with: extras)
expectEqualElements(deque, contents)
}
}
}
}
}
}
}
func test_reserveCapacity() {
// FIXME: Implement
}
func test_repeatingInitializer() {
withEvery("count", in: 0 ..< 10) { count in
withLifetimeTracking { tracker in
let item = tracker.instance(for: 0)
let deque = Deque(repeating: item, count: count)
expectEqual(Array(deque), Array(repeating: item, count: count))
}
}
}
func test_appendOne() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
let extra = tracker.instance(for: layout.count)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.append(extra)
deque.append(extra)
expectEqualElements(deque, contents)
}
}
}
}
}
func test_appendManyFromMinimalSequence() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("appendCount", in: 0 ..< 10) { appendCount in
withEvery("underestimatedCount", in: [UnderestimatedCountBehavior.precise, .half, .value(min(1, appendCount))]) { underestimatedCount in
withEvery("isContiguous", in: [false, true]) { isContiguous in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
let extras = tracker.instances(for: layout.count ..< layout.count + appendCount)
let sequence = MinimalSequence(
elements: extras,
underestimatedCount: underestimatedCount,
isContiguous: isContiguous)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.append(contentsOf: extras)
deque.append(contentsOf: sequence)
expectEqualElements(deque, contents)
}
}
}
}
}
}
}
}
func test_appendManyFromMinimalCollection() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("appendCount", in: 0 ..< 10) { appendCount in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
let extra = tracker.instances(for: layout.count ..< layout.count + appendCount)
let minimal = MinimalCollection(extra)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.append(contentsOf: extra)
deque.append(contentsOf: minimal)
expectEqualElements(deque, contents)
}
}
}
}
}
}
func test_appendManyFromContiguousArray() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("appendCount", in: 0 ..< 10) { appendCount in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
let extraRange = layout.count ..< layout.count + appendCount
let extra = ContiguousArray(tracker.instances(for: extraRange))
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.append(contentsOf: extra)
deque.append(contentsOf: extra)
expectEqualElements(deque, contents)
}
}
}
}
}
}
func test_appendManyFromBridgedArray() {
// https://github.com/apple/swift-collections/issues/27
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("appendCount", in: 0 ..< 10) { appendCount in
withEvery("isShared", in: [false, true]) { isShared in
var contents: [NSObject] = (0 ..< layout.count).map { _ in NSObject() }
var deque = Deque(layout: layout, contents: contents)
let extra: [NSObject] = (0 ..< appendCount)
.map { _ in NSObject() }
.withUnsafeBufferPointer { buffer in
NSArray(objects: buffer.baseAddress, count: buffer.count) as! [NSObject]
}
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.append(contentsOf: extra)
deque.append(contentsOf: extra)
expectEquivalentElements(deque, contents, by: ===)
}
}
}
}
}
func test_insertOneElement() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("offset", in: 0 ... layout.count) { offset in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
let extra = tracker.instance(for: layout.count)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.insert(extra, at: offset)
deque.insert(extra, at: offset)
expectEqualElements(deque, contents)
}
}
}
}
}
}
func test_insertFromMinimalCollection() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("offset", in: 0 ... layout.count) { offset in
withEvery("insertCount", in: 0 ..< 10) { insertCount in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
let extras = tracker.instances(for: layout.count ..< layout.count + insertCount)
let minimal = MinimalCollection(extras)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.insert(contentsOf: extras, at: offset)
deque.insert(contentsOf: minimal, at: offset)
expectEqualElements(deque, contents)
}
}
}
}
}
}
}
func test_insertFromArray() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("offset", in: 0 ... layout.count) { offset in
withEvery("insertCount", in: 0 ..< 10) { insertCount in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
let extras = tracker.instances(for: layout.count ..< layout.count + insertCount)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.insert(contentsOf: extras, at: offset)
deque.insert(contentsOf: extras, at: offset)
expectEqualElements(deque, contents)
}
}
}
}
}
}
}
func test_removeOne() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("offset", in: 0 ..< layout.count) { offset in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
let expected = contents.remove(at: offset)
let actual = deque.remove(at: offset)
expectEqual(actual, expected)
expectEqualElements(deque, contents)
}
}
}
}
}
}
func test_removeSubrange() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEveryRange("range", in: 0 ..< layout.count) { range in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.removeSubrange(range)
deque.removeSubrange(range)
expectEqualElements(deque, contents)
}
}
}
}
}
}
func test_customRemoveLast_one() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
guard layout.count > 0 else { return }
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
let expected = contents._customRemoveLast()
let actual = deque._customRemoveLast()
expectEqual(actual, expected)
expectEqualElements(deque, contents)
}
}
}
}
}
func test_removeLast() {
// `removeLast`'s implementation in the stdlib is derived from `_customRemoveLast`.
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
guard layout.count > 0 else { return }
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
let expected = contents.removeLast()
let actual = deque.removeLast()
expectEqual(actual, expected)
expectEqualElements(deque, contents)
}
}
}
}
}
func test_popLast() {
// `popLast`'s implementation in the stdlib is derived from `_customRemoveLast`.
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
let expected = contents.popLast()
let actual = deque.popLast()
expectEqual(actual, expected)
expectEqualElements(deque, contents)
}
}
}
}
}
func test_customRemoveLast_many() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
guard layout.count > 0 else { return }
withEvery("n", in: 0 ... layout.count) { n in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.removeLast(n)
expectTrue(deque._customRemoveLast(n))
expectEqualElements(deque, contents)
}
}
}
}
}
}
func test_removeLast_many() {
// `removeLast`'s implementation in the stdlib is derived from `_customRemoveLast`.
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
guard layout.count > 0 else { return }
withEvery("n", in: 0 ... layout.count) { n in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.removeLast(n)
deque.removeLast(n)
expectEqualElements(deque, contents)
}
}
}
}
}
}
func test_removeFirst_one() {
// `removeLast`'s implementation in the stdlib is derived from `_customRemoveLast`.
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
guard layout.count > 0 else { return }
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
let expected = contents.removeFirst()
let actual = deque.removeFirst()
expectEqual(actual, expected)
expectEqualElements(deque, contents)
}
}
}
}
}
func test_removeFirst_many() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
guard layout.count > 0 else { return }
withEvery("n", in: 0 ... layout.count) { n in
withEvery("isShared", in: [false, true]) { isShared in
withLifetimeTracking { tracker in
var (deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.removeFirst(n)
deque.removeFirst(n)
expectEqualElements(deque, contents)
}
}
}
}
}
}
func test_removeAll_discardingCapacity() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("isShared", in: [false, true]) { isShared in
guard layout.count > 0 else { return }
var deque: Deque<LifetimeTracked<Int>> = []
withLifetimeTracking { tracker in
var contents: [LifetimeTracked<Int>] = []
(deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.removeAll()
deque.removeAll()
expectEqual(deque.count, 0)
expectEqual(deque._capacity, 0) // This assumes the empty singleton has zero capacity.
}
} // All elements must be deinitialized at this point.
withExtendedLifetime(deque) {}
}
}
}
func test_removeAll_keepingCapacity() {
withEveryDeque("deque", ofCapacities: [0, 1, 2, 3, 5, 10]) { layout in
withEvery("isShared", in: [false, true]) { isShared in
guard layout.count > 0 else { return }
var deque: Deque<LifetimeTracked<Int>> = []
withLifetimeTracking { tracker in
var contents: [LifetimeTracked<Int>] = []
(deque, contents) = tracker.deque(with: layout)
withHiddenCopies(if: isShared, of: &deque) { deque in
contents.removeAll(keepingCapacity: true)
deque.removeAll(keepingCapacity: true)
expectEqual(deque.count, 0)
expectEqual(deque._capacity, layout.capacity)
}
} // All elements must be deinitialized at this point.
withExtendedLifetime(deque) {}
}
}
}
}
|