mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
205 lines
5.6 KiB
Swift
205 lines
5.6 KiB
Swift
//===--- ExistentialCollection.swift --------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// RUN: %target-run-simple-swift
|
|
|
|
import StdlibUnittest
|
|
|
|
var tests = TestSuite("ExistentialCollection")
|
|
|
|
tests.test("AnyGenerator") {
|
|
func countStrings() -> AnyGenerator<String> {
|
|
let lazyStrings = lazy(0..<5).map { String($0) }
|
|
|
|
// This is a really complicated type of no interest to our
|
|
// clients.
|
|
let g: MapSequenceGenerator<RangeGenerator<Int>, String>
|
|
= lazyStrings.generate()
|
|
return anyGenerator(g)
|
|
}
|
|
expectEqual(["0", "1", "2", "3", "4"], Array(countStrings()))
|
|
|
|
var x = 7
|
|
let g = anyGenerator { x < 15 ? x++ : nil }
|
|
expectEqual([ 7, 8, 9, 10, 11, 12, 13, 14 ], Array(g))
|
|
}
|
|
|
|
let initialCallCounts = [
|
|
"successor": 0, "predecessor": 0,
|
|
"_successorInPlace": 0, "_predecessorInPlace": 0,
|
|
"advancedBy": 0, "distanceTo": 0
|
|
]
|
|
|
|
var callCounts = initialCallCounts
|
|
|
|
struct InstrumentedIndex<I : RandomAccessIndexType> : RandomAccessIndexType {
|
|
typealias Distance = I.Distance
|
|
|
|
var base: I
|
|
|
|
init(_ base: I) {
|
|
self.base = base
|
|
}
|
|
|
|
static func resetCounts() {
|
|
callCounts = initialCallCounts
|
|
}
|
|
|
|
func successor() -> InstrumentedIndex {
|
|
++callCounts["successor"]!
|
|
return InstrumentedIndex(base.successor())
|
|
}
|
|
|
|
mutating func _successorInPlace() {
|
|
++callCounts["_successorInPlace"]!
|
|
base._successorInPlace()
|
|
}
|
|
|
|
func predecessor() -> InstrumentedIndex {
|
|
++callCounts["predecessor"]!
|
|
return InstrumentedIndex(base.predecessor())
|
|
}
|
|
|
|
mutating func _predecessorInPlace() {
|
|
++callCounts["_predecessorInPlace"]!
|
|
base._predecessorInPlace()
|
|
}
|
|
|
|
func advancedBy(distance: Distance) -> InstrumentedIndex {
|
|
++callCounts["advancedBy"]!
|
|
return InstrumentedIndex(base.advancedBy(distance))
|
|
}
|
|
|
|
func distanceTo(other: InstrumentedIndex) -> Distance {
|
|
++callCounts["distanceTo"]!
|
|
return base.distanceTo(other.base)
|
|
}
|
|
}
|
|
|
|
tests.test("Sequence") {
|
|
let fib = [1, 2, 3, 5, 8, 13, 21]
|
|
expectEqual(fib, Array(AnySequence(fib)))
|
|
// AnyGenerator is a Sequence
|
|
expectEqual(fib, Array(AnySequence(fib).generate()))
|
|
expectCrashLater()
|
|
let x = AnyGenerator<Int>()
|
|
}
|
|
|
|
tests.test("ForwardIndex") {
|
|
var i = AnyForwardIndex(InstrumentedIndex(0))
|
|
i = i.successor()
|
|
expectEqual(1, callCounts["successor"])
|
|
expectEqual(0, callCounts["_successorInPlace"])
|
|
++i
|
|
expectEqual(1, callCounts["successor"])
|
|
expectEqual(1, callCounts["_successorInPlace"])
|
|
i++
|
|
expectEqual(2, callCounts["successor"])
|
|
expectEqual(1, callCounts["_successorInPlace"])
|
|
}
|
|
|
|
tests.test("BidirectionalIndex") {
|
|
var i = AnyBidirectionalIndex(InstrumentedIndex(0))
|
|
expectEqual(0, callCounts["predecessor"])
|
|
expectEqual(0, callCounts["_predecessorInPlace"])
|
|
|
|
i = i.predecessor()
|
|
expectEqual(1, callCounts["predecessor"])
|
|
expectEqual(0, callCounts["_predecessorInPlace"])
|
|
--i
|
|
expectEqual(1, callCounts["predecessor"])
|
|
expectEqual(1, callCounts["_predecessorInPlace"])
|
|
i--
|
|
expectEqual(2, callCounts["predecessor"])
|
|
expectEqual(1, callCounts["_predecessorInPlace"])
|
|
}
|
|
|
|
tests.test("ForwardCollection") {
|
|
let a0: ContiguousArray = [1, 2, 3, 5, 8, 13, 21]
|
|
let fc0 = AnyForwardCollection(a0)
|
|
let a1 = ContiguousArray(fc0)
|
|
expectEqual(a0, a1)
|
|
for e in a0 {
|
|
let i = fc0.indexOf(e)
|
|
expectNotEmpty(i)
|
|
expectEqual(e, fc0[i!])
|
|
}
|
|
for i in fc0.indices {
|
|
expectNotEqual(fc0.endIndex, i)
|
|
expectEqual(1, filter(fc0.indices) {$0 == i}.count())
|
|
}
|
|
}
|
|
|
|
tests.test("BidirectionalCollection") {
|
|
let a0: ContiguousArray = [1, 2, 3, 5, 8, 13, 21]
|
|
let fc0 = AnyForwardCollection(lazy(a0).reverse())
|
|
|
|
let bc0_ = AnyBidirectionalCollection(fc0) // upgrade!
|
|
expectNotEmpty(bc0_)
|
|
let bc0 = bc0_!
|
|
expectTrue(fc0 === bc0)
|
|
|
|
let fc1 = AnyForwardCollection(lazy(a0).reverse()) // new collection
|
|
expectFalse(fc1 === fc0)
|
|
|
|
let fc2 = AnyForwardCollection(bc0) // downgrade
|
|
expectTrue(fc2 === bc0)
|
|
|
|
let a1 = ContiguousArray(lazy(bc0).reverse())
|
|
expectEqual(a0, a1)
|
|
for e in a0 {
|
|
let i = bc0.indexOf(e)
|
|
expectNotEmpty(i)
|
|
expectEqual(e, bc0[i!])
|
|
}
|
|
for i in bc0.indices {
|
|
expectNotEqual(bc0.endIndex, i)
|
|
expectEqual(1, filter(bc0.indices) {$0 == i}.count())
|
|
}
|
|
|
|
// Can't upgrade a non-random-access collection to random access
|
|
let s0 = "Hello, Woyld"
|
|
let bc1 = AnyBidirectionalCollection(s0)
|
|
let fc3 = AnyForwardCollection(bc1)
|
|
expectTrue(fc3 === bc1)
|
|
expectEmpty(AnyRandomAccessCollection(bc1))
|
|
expectEmpty(AnyRandomAccessCollection(fc3))
|
|
}
|
|
|
|
tests.test("RandomAccessCollection") {
|
|
let a0: ContiguousArray = [1, 2, 3, 5, 8, 13, 21]
|
|
let fc0 = AnyForwardCollection(lazy(a0).reverse())
|
|
let rc0_ = AnyRandomAccessCollection(fc0) // upgrade!
|
|
expectNotEmpty(rc0_)
|
|
let rc0 = rc0_!
|
|
expectTrue(rc0 === fc0)
|
|
|
|
let bc1 = AnyBidirectionalCollection(rc0) // downgrade
|
|
expectTrue(bc1 === rc0)
|
|
|
|
let fc1 = AnyBidirectionalCollection(rc0) // downgrade
|
|
expectTrue(fc1 === rc0)
|
|
|
|
let a1 = ContiguousArray(lazy(rc0).reverse())
|
|
expectEqual(a0, a1)
|
|
for e in a0 {
|
|
let i = rc0.indexOf(e)
|
|
expectNotEmpty(i)
|
|
expectEqual(e, rc0[i!])
|
|
}
|
|
for i in rc0.indices {
|
|
expectNotEqual(rc0.endIndex, i)
|
|
expectEqual(1, filter(rc0.indices) {$0 == i}.count())
|
|
}
|
|
}
|
|
|
|
runAllTests()
|