File: InheritIntroducedAvailabilityTests.swift

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (173 lines) | stat: -rw-r--r-- 6,791 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
/*
 This source file is part of the Swift.org 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
 See https://swift.org/CONTRIBUTORS.txt for Swift project authors
*/

import XCTest
@testable import SwiftDocC
import SymbolKit

private extension SymbolGraph.Symbol {
    var availability: SymbolGraph.Symbol.Availability? {
        return self[mixin: SymbolGraph.Symbol.Availability.self]
    }
}

/// Tests inheritability of `introduced` availability versions
/// when symbols don't have that annotation from source.
///
/// This information should come from a documentation bundle's
/// Info.plist `CDAppleDefaultAvailability` dictionary: the
/// platform version is assumed to a be a symbols `introduced`
/// availability version for that platform.
///
/// This test makes use of the `FillIntroduced.symbols.json`
/// symbol graph file in `TestBundle.docc`, along with its `Info.plist`
/// with the aforementioned `CDAppleDefaultAvailability` dictionary
/// added for macOS, iOS, tvOS, and watchOS.
class InheritIntroducedAvailabilityTests: XCTestCase {
    typealias Domain = SymbolGraph.Symbol.Availability.Domain
    typealias Version = SymbolGraph.SemanticVersion
    
    var testBundle: DocumentationBundle!
    var context: DocumentationContext!
    
    override func setUpWithError() throws {
        try super.setUpWithError()
        (testBundle, context) = try testBundleAndContext(named: "TestBundle")
    }
    
    override func tearDown() {
        testBundle = nil
        context = nil
        super.tearDown()
    }

    /// Tests that the `introduced` availability version comes from
    /// the macOS version in the Info.plist
    func testMacOSOnlyDeprecated() {
        let macOSOnlyDeprecated =
            context.documentationCache["s:14FillIntroduced19macOSOnlyDeprecatedyyF"]!
                .symbol!.availability!.availability.first {
            $0.domain?.rawValue == PlatformName.macOS.rawValue
        }!

        // From Info.plist, filled
        XCTAssertEqual(Version(major: 10, minor: 9, patch: 0), macOSOnlyDeprecated.introducedVersion)

        // From symbol graph, untouched
        XCTAssertEqual(Version(major: 10, minor: 10, patch: 0), macOSOnlyDeprecated.deprecatedVersion)
    }

    /// Tests that existing `introduced` availability isn't overwritten for
    /// macOS.
    func testMacOSOnlyIntroduced() {
        // Don't overwrite existing `macOS, introduced: 10.15`
        let macOSOnlyIntroduced =
            context.documentationCache["s:14FillIntroduced09macOSOnlyB0yyF"]!
                .symbol!.availability!.availability.first {
            $0.domain?.rawValue == PlatformName.macOS.rawValue
        }!

        // From symbol graph, don't overwrite
        XCTAssertEqual(Version(major: 10, minor: 10, patch: 0), macOSOnlyIntroduced.introducedVersion)
    }

    /// Tests that the `introduced` availability version comes from
    /// the iOS version in the Info.plist
    func testiOSOnlyDeprecated() {
        let iOSOnlyDeprecated =
            context.documentationCache["s:14FillIntroduced17iOSOnlyDeprecatedyyF"]!
                .symbol!.availability!.availability.first {
            $0.domain?.rawValue == PlatformName.iOS.rawValue
        }!

        // From Info.plist, filled
        XCTAssertEqual(Version(major: 11, minor: 1, patch: 0), iOSOnlyDeprecated.introducedVersion)

        // From symbol graph, untouched
        XCTAssertEqual(Version(major: 13, minor: 0, patch: 0), iOSOnlyDeprecated.deprecatedVersion)
    }

    /// Tests that existing `introduced` availability isn't overwritten for
    /// iOS.
    func testiOSOnlyIntroduced() {
        // Don't overwrite existing `macOS, introduced: 10.15`
        let iOSOnlyIntroduced =
            context.documentationCache["s:14FillIntroduced07iOSOnlyB0yyF"]!
                .symbol!.availability!.availability.first {
            $0.domain?.rawValue == PlatformName.iOS.rawValue
        }!

        // From symbol graph, don't overwrite
        XCTAssertEqual(Version(major: 13, minor: 0, patch: 0), iOSOnlyIntroduced.introducedVersion)
    }

    /// Tests that the `introduced` availability version comes from
    /// the iOS version in the Info.plist via a fallback mechanism.
    func testCatalystOnlyDeprecated() {
        let catalystOnlyDeprecated =
            context.documentationCache["s:14FillIntroduced25macCatalystOnlyDeprecatedyyF"]!
                .symbol!.availability!.availability.first {
            $0.domain?.rawValue == PlatformName.catalyst.rawValue
        }!

        // From Info.plist, filled from iOS
        XCTAssertEqual(Version(major: 11, minor: 1, patch: 0), catalystOnlyDeprecated.introducedVersion)

        // From symbol graph, untouched
        XCTAssertEqual(Version(major: 13, minor: 0, patch: 0), catalystOnlyDeprecated.deprecatedVersion)
    }

    /// Tests that existing `introduced` availability isn't overwritten for
    /// macCatalyst.
    func testCatalystOnlyIntroduced() {
        // Don't overwrite existing `macOS, introduced: 10.15`
        let catalystOnlyIntroduced =
            context.documentationCache["s:14FillIntroduced015macCatalystOnlyB0yyF"]!
                .symbol!.availability!.availability.first {
            $0.domain?.rawValue == PlatformName.catalyst.rawValue
        }!

        // From symbol graph, don't overwrite
        XCTAssertEqual(Version(major: 13, minor: 0, patch: 0), catalystOnlyIntroduced.introducedVersion)
    }

    /// Tests that a default `introduced` availability isn't added for platforms
    /// that were marked as "unconditionally available".
    ///
    /// Example
    /// ```swift
    /// // Don't add `introduced` to this.
    /// @available(watchOS, unavailable)
    /// ```
    func testIntroducedNotAddedToUnavailable() {
        /// A symbol that is only available for macOS and iOS, explicitly
        /// unavailable for tvOS and watchOS.
        ///
        /// ```swift
        /// @available(iOS 14.0, *)
        /// @available(macOS 10.16, *)
        /// @available(tvOS, unavailable)
        /// @available(watchOS, unavailable)
        /// ```
        let iOSMacOSOnly = context.documentationCache["s:14FillIntroduced12iOSMacOSOnlyyyF"]!

        /// These domains should not have had an `introduced` version added.
        let domainsThatShouldntHaveIntroduced = Set([
            Domain.tvOS,
            Domain.watchOS,
        ])

        for item in iOSMacOSOnly.symbol!.availability!.availability {
            if domainsThatShouldntHaveIntroduced.contains(item.domain!.rawValue) {
                XCTAssertNil(item.introducedVersion)
            }
        }
    }
}