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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 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 the list of Swift project authors
//
//===----------------------------------------------------------------------===//
@_spi(RawSyntax) import SwiftParser
@_spi(RawSyntax) import SwiftSyntax
import XCTest
final class AvailabilityTests: ParserTestCase {
func testAvailableMember() {
assertParse(
"""
@available(OSX 10.0, introduced: 10.12)
// expected-error@-1 {{'introduced' can't be combined with shorthand specification 'OSX 10.0'}}
// expected-error@-2 {{expected declaration}}
func shorthandFollowedByIntroduced() {}
"""
)
assertParse(
"""
@available(iOS 6.0, OSX 10.8, *)
func availableOnMultiplePlatforms() {}
"""
)
assertParse(
"""
class IncrementalParseTransition {
@available(*, deprecated, message: "Use the initializer taking 'ConcurrentEdits' instead")
public convenience init() {}
}
"""
)
assertParse(
"""
extension String {
@available(macOS 10.15.4, iOS 13.4, watchOS 6.2, tvOS 13.4, *)
public func fiddle() { }
@available(SwiftStdlib 5.2, *)
public func fiddle() { }
}
"""
)
assertParse(
"""
@available(
iOSApplicationExtension,
introduced: 10.0,
deprecated: 11.0,
message:
"Use something else because this is definitely deprecated.")
func f2() {}
"""
)
}
func testAvailabilityMacros() {
assertParse(
"""
@available(_iOS9, _macOS10_11, tvOS 11.0, *)
public func composed() {}
"""
)
assertParse(
"""
@_specialize(exported: true, availability: SwiftStdlib 5.1, *; where T == Int)
public func testSemanticsAvailability<T>(_ t: T) {}
"""
)
}
func testSPIAvailabilityAttribute() {
assertParse(
"""
@_spi_available(*, deprecated, renamed: "another")
public class SPIClass1 {}
@_spi_available(*, unavailable)
public class SPIClass2 {}
@_spi_available(AlienPlatform 5.2, *)
public class SPIClass3 {}
@_spi_available(macOS 10.4, *)
public class SPIClass4 {}
"""
)
}
func testVersionParsing() {
assertParse(
"""
@available(OSX 10)
func test() {}
""",
substructure: VersionTupleSyntax(
major: .integerLiteral("10"),
components: []
)
)
assertParse(
"""
@available(OSX 10.0)
func test() {}
""",
substructure: VersionTupleSyntax(
major: .integerLiteral("10"),
components: VersionComponentListSyntax([VersionComponentSyntax(number: .integerLiteral("0"))])
)
)
assertParse(
"""
@available(OSX 10.0.1)
func test() {}
""",
substructure: VersionTupleSyntax(
major: .integerLiteral("10"),
components: VersionComponentListSyntax([
VersionComponentSyntax(number: .integerLiteral("0")),
VersionComponentSyntax(number: .integerLiteral("1")),
])
)
)
assertParse(
"""
@available(OSX 10.0.1, *)
func test() {}
"""
)
assertParse(
"""
@available(OSX 1️⃣10e10)
func test() {}
""",
diagnostics: [
DiagnosticSpec(message: "cannot parse version component code '10e10'")
]
)
assertParse(
"""
@available(OSX 10.1️⃣0e10)
func test() {}
""",
diagnostics: [
DiagnosticSpec(message: "cannot parse version component code '0e10'")
]
)
assertParse(
"""
@available(OSX 1️⃣0xff)
func test() {}
""",
diagnostics: [
DiagnosticSpec(message: "cannot parse version component code '0xff'")
]
)
assertParse(
"""
@available(OSX 1.0.1️⃣0xff)
func test() {}
""",
diagnostics: [
DiagnosticSpec(message: "cannot parse version component code '0xff'")
]
)
assertParse(
"""
@available(OSX 1.0.1️⃣0xff, *)
func test() {}
""",
diagnostics: [
DiagnosticSpec(message: "cannot parse version component code '0xff'")
]
)
assertParse(
"""
@available(OSX 1.0.1️⃣asdf)
func test() {}
""",
diagnostics: [
DiagnosticSpec(message: "cannot parse version component code 'asdf'")
]
)
}
}
|