File: Test.CaseTests.swift

package info (click to toggle)
swiftlang 6.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,856,264 kB
  • sloc: cpp: 9,995,718; ansic: 2,234,019; asm: 1,092,167; python: 313,940; objc: 82,726; f90: 80,126; lisp: 38,373; pascal: 25,580; sh: 20,378; ml: 5,058; perl: 4,751; makefile: 4,725; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (177 lines) | stat: -rw-r--r-- 5,712 bytes parent folder | download
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.org open source project
//
// Copyright (c) 2025 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

#if canImport(Foundation)
private import Foundation
#endif

@Suite("Test.Case Tests")
struct Test_CaseTests {
  @Test func nonParameterized() throws {
    let testCase = Test.Case(body: {})
    #expect(testCase.id.argumentIDs == nil)
    #expect(testCase.id.discriminator == nil)
  }

  @Test func singleStableArgument() throws {
    let testCase = Test.Case(
      values: [1],
      parameters: [Test.Parameter(index: 0, firstName: "x", type: Int.self)],
      body: {}
    )
    #expect(testCase.id.isStable)
  }

  @Test func twoStableArguments() throws {
    let testCase = Test.Case(
      values: [1, "a"],
      parameters: [
        Test.Parameter(index: 0, firstName: "x", type: Int.self),
        Test.Parameter(index: 1, firstName: "y", type: String.self),
      ],
      body: {}
    )
    #expect(testCase.id.isStable)
  }

  @Test("Two arguments: one non-stable, followed by one stable")
  func nonStableAndStableArgument() throws {
    let testCase = Test.Case(
      values: [NonCodable(), IssueRecordingEncodable()],
      parameters: [
        Test.Parameter(index: 0, firstName: "x", type: NonCodable.self),
        Test.Parameter(index: 1, firstName: "y", type: IssueRecordingEncodable.self),
      ],
      body: {}
    )
    #expect(!testCase.id.isStable)
  }

  @Suite("Test.Case.ID Tests")
  struct IDTests {
#if canImport(Foundation)
    @Test(arguments: [
      Test.Case.ID(argumentIDs: nil, discriminator: nil, isStable: true),
      Test.Case.ID(argumentIDs: [.init(bytes: "x".utf8)], discriminator: 0, isStable: false),
      Test.Case.ID(argumentIDs: [.init(bytes: #""abc""#.utf8)], discriminator: 0, isStable: true),
    ])
    func roundTripping(id: Test.Case.ID) throws {
      #expect(try JSON.encodeAndDecode(id) == id)
    }

    @Test func legacyDecoding_stable() throws {
      let encodedData = Data("""
        {"argumentIDs": [
          {"bytes": [1]}
        ]}
        """.utf8)
      let testCaseID = try JSON.decode(Test.Case.ID.self, from: encodedData)
      #expect(testCaseID.isStable)

      let argumentIDs = try #require(testCaseID.argumentIDs)
      #expect(argumentIDs.count == 1)
    }

    @Test func legacyDecoding_nonStable() throws {
      let encodedData = Data("{}".utf8)
      let testCaseID = try JSON.decode(Test.Case.ID.self, from: encodedData)
      #expect(!testCaseID.isStable)

      let argumentIDs = try #require(testCaseID.argumentIDs)
      #expect(argumentIDs.count == 1)
    }

    @Test func legacyDecoding_nonParameterized() throws {
      let encodedData = Data(#"{"argumentIDs": []}"#.utf8)
      let testCaseID = try JSON.decode(Test.Case.ID.self, from: encodedData)
      #expect(testCaseID.isStable)
      #expect(testCaseID.argumentIDs == nil)
      #expect(testCaseID.discriminator == nil)
    }

    @Test func newDecoding_nonParameterized() throws {
      let encodedData = Data(#"{"isStable": true}"#.utf8)
      let testCaseID = try JSON.decode(Test.Case.ID.self, from: encodedData)
      #expect(testCaseID.isStable)
      #expect(testCaseID.argumentIDs == nil)
      #expect(testCaseID.discriminator == nil)
    }

    @Test func newDecoding_parameterizedStable() throws {
      let encodedData = Data("""
        {
          "isStable": true,
          "argIDs": [
            {"bytes": [1]}
          ],
          "discriminator": 0
        }
        """.utf8)
      let testCaseID = try JSON.decode(Test.Case.ID.self, from: encodedData)
      #expect(testCaseID.isStable)
      #expect(testCaseID.argumentIDs?.count == 1)
      #expect(testCaseID.discriminator == 0)
    }

    @Test func newEncoding_nonParameterized() throws {
      let id = Test.Case.ID(argumentIDs: nil, discriminator: nil, isStable: true)
      let legacyID = try JSON.withEncoding(of: id) { data in
        try JSON.decode(_LegacyTestCaseID.self, from: data)
      }
      let argumentIDs = try #require(legacyID.argumentIDs)
      #expect(argumentIDs.isEmpty)
    }

    @Test func newEncoding_parameterizedNonStable() throws {
      let id = Test.Case.ID(
        argumentIDs: [.init(bytes: "x".utf8)],
        discriminator: 0,
        isStable: false
      )
      let legacyID = try JSON.withEncoding(of: id) { data in
        try JSON.decode(_LegacyTestCaseID.self, from: data)
      }
      #expect(legacyID.argumentIDs == nil)
    }

    @Test func newEncoding_parameterizedStable() throws {
      let id = Test.Case.ID(
        argumentIDs: [.init(bytes: #""abc""#.utf8)],
        discriminator: 0,
        isStable: true
      )
      let legacyID = try JSON.withEncoding(of: id) { data in
        try JSON.decode(_LegacyTestCaseID.self, from: data)
      }
      let argumentIDs = try #require(legacyID.argumentIDs)
      #expect(argumentIDs.count == 1)
      let argumentID = try #require(argumentIDs.first)
      #expect(String(decoding: argumentID.bytes, as: UTF8.self) == #""abc""#)
    }
#endif
  }
}

// MARK: - Fixtures, helpers

private struct NonCodable {}

private struct IssueRecordingEncodable: Encodable {
  func encode(to encoder: any Encoder) throws {
    Issue.record("Unexpected attempt to encode an instance of \(Self.self)")
  }
}

/// A fixture type which implements legacy decoding for ``Test/Case/ID``.
private struct _LegacyTestCaseID: Decodable {
  var argumentIDs: [Test.Case.Argument.ID]?
}