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
|
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2023 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
// See https://swift.org/CONTRIBUTORS.txt for Swift project authors
//
@testable @_spi(Experimental) @_spi(ForToolsIntegrationOnly) import Testing
@Suite("Test.Case Selection Tests")
struct TestCaseSelectionTests {
@Test("Multiple arguments passed to one parameter, selecting one case")
func oneParameterSelectingOneCase() async throws {
let fixtureTest = Test(arguments: ["a", "b"], parameters: [Test.Parameter(index: 0, firstName: "value", type: String.self)]) { value in
#expect(value == "a")
}
let firstTestCase = try #require(fixtureTest.testCases?.first { _ in true })
var configuration = Configuration()
configuration.testCaseFilter = { testCase, _ in
testCase.id == firstTestCase.id
}
await confirmation { testStarted in
configuration.eventHandler = { event, context in
if case .testCaseStarted = event.kind {
testStarted()
}
if case let .issueRecorded(issue) = event.kind {
Issue.record("Unexpected issue: \(issue)")
}
}
await fixtureTest.run(configuration: configuration)
}
}
@Test("Multiple arguments passed to one parameter, selecting a subset of cases")
func oneParameterSelectingMultipleCases() async throws {
let fixtureTest = Test(arguments: ["a", "b", "c"], parameters: [Test.Parameter(index: 0, firstName: "value", type: String.self)]) { value in
#expect(value != "b")
}
let testCases = Array(try #require(fixtureTest.testCases))
let firstTestCaseID = try #require(testCases.first?.id)
let lastTestCaseID = try #require(testCases.last?.id)
var configuration = Configuration()
configuration.testCaseFilter = { testCase, _ in
Set<Test.Case.ID>([
firstTestCaseID,
lastTestCaseID
]).contains(testCase.id)
}
await confirmation(expectedCount: 2) { testStarted in
configuration.eventHandler = { event, context in
if case .testCaseStarted = event.kind {
testStarted()
}
if case let .issueRecorded(issue) = event.kind {
Issue.record("Unexpected issue: \(issue)")
}
}
let runner = await Runner(testing: [fixtureTest], configuration: configuration)
await runner.run()
}
}
@Test("Two collections, each with multiple arguments, passed to two parameters, selecting one case")
func twoParametersSelectingOneCase() async throws {
let fixtureTest = Test(
arguments: ["a", "b"], [1, 2],
parameters: [
Test.Parameter(index: 0, firstName: "stringValue", type: String.self),
Test.Parameter(index: 1, firstName: "intValue", type: Int.self),
]
) { stringValue, intValue in
#expect(stringValue == "b" && intValue == 2)
}
let selectedTestCase = try #require(fixtureTest.testCases?.first { testCase in
guard let firstArg = testCase.arguments.first?.value as? String,
let secondArg = testCase.arguments.last?.value as? Int
else {
return false
}
return firstArg == "b" && secondArg == 2
})
var configuration = Configuration()
configuration.testCaseFilter = { testCase, _ in
testCase.id == selectedTestCase.id
}
await confirmation { testStarted in
configuration.eventHandler = { event, context in
if case .testCaseStarted = event.kind {
testStarted()
}
if case let .issueRecorded(issue) = event.kind {
Issue.record("Unexpected issue: \(issue)")
}
}
await fixtureTest.run(configuration: configuration)
}
}
@Test("Multiple arguments conforming to CustomTestArgumentEncodable, passed to one parameter, selecting one case")
func oneParameterAcceptingCustomTestArgumentSelectingOneCase() async throws {
let fixtureTest = Test(arguments: [
MyCustomTestArgument(x: 1, y: "a"),
MyCustomTestArgument(x: 2, y: "b"),
], parameters: [Test.Parameter(index: 0, firstName: "value", type: MyCustomTestArgument.self)]) { arg in
#expect(arg.x == 1 && arg.y == "a")
}
let firstTestCase = try #require(fixtureTest.testCases?.first { _ in true })
var configuration = Configuration()
configuration.testCaseFilter = { testCase, _ in
testCase.id == firstTestCase.id
}
await confirmation { testStarted in
configuration.eventHandler = { event, context in
if case .testCaseStarted = event.kind {
testStarted()
}
if case let .issueRecorded(issue) = event.kind {
Issue.record("Unexpected issue: \(issue)")
}
}
await fixtureTest.run(configuration: configuration)
}
}
@Test("Multiple arguments conforming to Identifiable, passed to one parameter, selecting one case")
func oneParameterAcceptingIdentifiableArgumentSelectingOneCase() async throws {
let fixtureTest = Test(arguments: [
MyCustomIdentifiableArgument(id: "a"),
MyCustomIdentifiableArgument(id: "b"),
], parameters: [Test.Parameter(index: 0, firstName: "value", type: MyCustomIdentifiableArgument.self)]) { arg in
#expect(arg.id == "a")
}
let selectedTestCase = try #require(fixtureTest.testCases?.first { _ in true })
var configuration = Configuration()
configuration.testCaseFilter = { testCase, _ in
testCase.id == selectedTestCase.id
}
await confirmation { testStarted in
configuration.eventHandler = { event, context in
if case .testCaseStarted = event.kind {
testStarted()
}
if case let .issueRecorded(issue) = event.kind {
Issue.record("Unexpected issue: \(issue)")
}
}
await fixtureTest.run(configuration: configuration)
}
}
@Test("Multiple arguments conforming to RawRepresentable, passed to one parameter, selecting one case")
func oneParameterAcceptingRawRepresentableArgumentSelectingOneCase() async throws {
let fixtureTest = Test(arguments: [
MyCustomRawRepresentableArgument(rawValue: "a"),
MyCustomRawRepresentableArgument(rawValue: "b"),
], parameters: [Test.Parameter(index: 0, firstName: "value", type: MyCustomRawRepresentableArgument.self)]) { arg in
#expect(arg.rawValue == "a")
}
let selectedTestCase = try #require(fixtureTest.testCases?.first { _ in true })
var configuration = Configuration()
configuration.testCaseFilter = { testCase, _ in
testCase.id == selectedTestCase.id
}
await confirmation { testStarted in
configuration.eventHandler = { event, context in
if case .testCaseStarted = event.kind {
testStarted()
}
if case let .issueRecorded(issue) = event.kind {
Issue.record("Unexpected issue: \(issue)")
}
}
await fixtureTest.run(configuration: configuration)
}
}
}
// MARK: - Fixture parameter types
private struct MyCustomTestArgument: CustomTestArgumentEncodable, Equatable {
var x: Int
var y: String
private enum CodingKeys: CodingKey {
case x, y
}
func encodeTestArgument(to encoder: some Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(x, forKey: .x)
try container.encode(y, forKey: .y)
}
}
private struct MyCustomIdentifiableArgument: Identifiable, CustomStringConvertible {
var id: String
var description: String {
fatalError("Should not be called")
}
}
private struct MyCustomRawRepresentableArgument: RawRepresentable {
var rawValue: String
}
|