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
|
// RUN: %target-run-simple-swift
//
// RUN: %target-build-swift -swift-version 5 -O %s -o %t/a.swift5.O.out
// RUN: %target-codesign %t/a.swift5.O.out
// RUN: %target-run %t/a.swift5.O.out
//
// RUN: %target-build-swift -swift-version 5 -Onone %s -o %t/a.swift5.Onone.out
// RUN: %target-codesign %t/a.swift5.Onone.out
// RUN: %target-run %t/a.swift5.Onone.out
//
// REQUIRES: executable_test
import StdlibUnittest
let tupleCastTests = TestSuite("Tuple casting")
func anyToIntPoint(_ x: Any) -> (x: Int, y: Int) {
return x as! (x: Int, y: Int)
}
func anyToIntPointOpt(_ x: Any) -> (x: Int, y: Int)? {
return x as? (x: Int, y: Int)
}
func anyToInt2(_ x: Any) -> (Int, Int) {
return x as! (Int, Int)
}
func anyToPartlyLabeled(_ x: Any) -> (first: Int, Int, third: Int) {
return x as! (first: Int, Int, third: Int)
}
tupleCastTests.test("Adding/removing labels") {
expectEqual("(x: 1, y: 2)",
String(describing: anyToIntPoint((x: 1, y: 2))))
expectEqual("(x: 3, y: 4)",
String(describing: anyToIntPoint((3, 4))))
expectEqual("(x: 5, y: 6)",
String(describing: anyToIntPoint((x: 5, 6))))
expectEqual("(x: 5, y: 6)",
String(describing: anyToIntPoint((5, y: 6))))
expectEqual("(1, 2)", String(describing: anyToInt2((1, 2))))
expectEqual("(3, 4)", String(describing: anyToInt2((x: 3, y: 4))))
expectEqual("(5, 6)", String(describing: anyToInt2((x: 5, 6))))
expectEqual("(7, 8)", String(describing: anyToInt2((7, y: 8))))
expectEqual("(first: 1, 2, third: 3)",
String(describing: anyToPartlyLabeled((1, 2, 3))))
}
tupleCastTests.test("Label checks on casting") {
expectTrue((x: 1, y: 2) is (Int, Int))
expectTrue((x: 1, y: 2) is (x: Int, Int))
expectTrue((x: 1, y: 2) is (Int, y: Int))
expectTrue((x: 1, y: 2) is (x: Int, y: Int))
expectFalse((x: 1, y: 2) is (x: Int, z: Int))
expectFalse((x: 1, y: 2) is (a: Int, y: Int))
expectFalse((x: 1, y: 2) is (a: Int, z: Int))
expectFalse((x: 1, y: 2) is (Int, z: Int))
expectFalse((x: 1, y: 2) is (a: Int, Int))
}
tupleCastTests.test("Incorrect labels conditional cast") {
expectNil(anyToIntPointOpt((x: 1, z: 2)))
expectEqual("Optional((x: 1, y: 2))",
String(describing: anyToIntPointOpt((x: 1, y: 2))))
}
tupleCastTests
.test("Incorrect labels forced cast")
.crashOutputMatches("Could not cast value of type '(x: Swift.Int, z: Swift.Int)'")
.code {
expectCrashLater()
_ = anyToIntPoint((x: 1, z: 2))
}
func castToThree<T, U, V>(_ x: Any, _: T.Type, _: U.Type, _: V.Type)
-> (t: T, u: U, v: V) {
return x as! (t: T, u: U, v: V)
}
func castToThreeOpt<T, U, V>(_ x: Any, _: T.Type, _: U.Type, _: V.Type)
-> (t: T, u: U, v: V)? {
return x as? (t: T, u: U, v: V)
}
class LifetimeA {
var tracked: LifetimeTracked
init(value: Int) {
tracked = LifetimeTracked(value)
}
}
class LifetimeB : LifetimeA {
}
class LifetimeC : LifetimeA {
}
protocol P { }
extension LifetimeA : P { }
tupleCastTests.test("Elementwise tuple casts that succeed") {
let abc: (P, Any, P) = (LifetimeA(value: 1),
LifetimeB(value: 2),
LifetimeC(value: 3))
expectEqual(
"(t: main.LifetimeA, u: main.LifetimeB, v: main.LifetimeC)",
String(describing: castToThree(abc, LifetimeA.self, LifetimeA.self,
LifetimeA.self)))
expectEqual(
"(t: main.LifetimeA, u: main.LifetimeB, v: main.LifetimeC)",
String(describing: castToThree((LifetimeA(value: 1),
LifetimeB(value: 2),
LifetimeC(value: 3)) as (P, Any, P),
LifetimeA.self, LifetimeA.self,
LifetimeA.self)))
}
tupleCastTests.test("Elementwise tuple casts that conditionally fail") {
let abc: (P, Any, P) = (LifetimeA(value: 1),
LifetimeB(value: 2),
LifetimeC(value: 3))
expectNil(castToThreeOpt(abc, LifetimeA.self, LifetimeB.self, LifetimeB.self))
expectNil(castToThreeOpt(abc, LifetimeA.self, LifetimeC.self, LifetimeC.self))
expectNil(castToThreeOpt(abc, LifetimeC.self, LifetimeB.self, LifetimeC.self))
}
tupleCastTests
.test("Elementwise tuple casts that crash (1/3)")
.crashOutputMatches("Could not cast value of type 'main.LifetimeA'")
.code {
let abc: (P, Any, P) = (LifetimeA(value: 1),
LifetimeB(value: 2),
LifetimeC(value: 3))
expectCrashLater()
_ = castToThree(abc, LifetimeC.self, LifetimeB.self, LifetimeC.self)
}
tupleCastTests
.test("Elementwise tuple casts that crash (2/3)")
.crashOutputMatches("Could not cast value of type 'main.LifetimeB")
.code {
let abc: (P, Any, P) = (LifetimeA(value: 1),
LifetimeB(value: 2),
LifetimeC(value: 3))
expectCrashLater()
_ = castToThree(abc, LifetimeA.self, LifetimeC.self, LifetimeC.self)
}
tupleCastTests
.test("Elementwise tuple casts that crash (3/3)")
.crashOutputMatches("Could not cast value of type 'main.LifetimeC")
.code {
let abc: (P, Any, P) = (LifetimeA(value: 1),
LifetimeB(value: 2),
LifetimeC(value: 3))
expectCrashLater()
_ = castToThree(abc, LifetimeA.self, LifetimeB.self, LifetimeB.self)
}
runAllTests()
|