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
|
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
import MacroExamplesImplementation
import SwiftSyntaxMacros
import SwiftSyntaxMacrosTestSupport
import XCTest
final class OptionSetMacroTests: XCTestCase {
private let macros = ["MyOptionSet": OptionSetMacro.self]
func testExpansionOnStructWithNestedEnumAndStatics() {
assertMacroExpansion(
"""
@MyOptionSet<UInt8>
struct ShippingOptions {
private enum Options: Int {
case nextDay
case secondDay
case priority
case standard
}
static let express: ShippingOptions = [.nextDay, .secondDay]
static let all: ShippingOptions = [.express, .priority, .standard]
}
""",
expandedSource: """
struct ShippingOptions {
private enum Options: Int {
case nextDay
case secondDay
case priority
case standard
}
static let express: ShippingOptions = [.nextDay, .secondDay]
static let all: ShippingOptions = [.express, .priority, .standard]
typealias RawValue = UInt8
var rawValue: RawValue
init() {
self.rawValue = 0
}
init(rawValue: RawValue) {
self.rawValue = rawValue
}
static let nextDay: Self =
Self(rawValue: 1 << Options.nextDay.rawValue)
static let secondDay: Self =
Self(rawValue: 1 << Options.secondDay.rawValue)
static let priority: Self =
Self(rawValue: 1 << Options.priority.rawValue)
static let standard: Self =
Self(rawValue: 1 << Options.standard.rawValue)
}
extension ShippingOptions: OptionSet {
}
""",
macros: macros,
indentationWidth: .spaces(2)
)
}
func testExpansionOnPublicStructWithExplicitOptionSetConformance() {
assertMacroExpansion(
"""
@MyOptionSet<UInt8>
public struct ShippingOptions: OptionSet {
private enum Options: Int {
case nextDay
case standard
}
}
""",
expandedSource: """
public struct ShippingOptions: OptionSet {
private enum Options: Int {
case nextDay
case standard
}
public typealias RawValue = UInt8
public var rawValue: RawValue
public init() {
self.rawValue = 0
}
public init(rawValue: RawValue) {
self.rawValue = rawValue
}
public static let nextDay: Self =
Self(rawValue: 1 << Options.nextDay.rawValue)
public static let standard: Self =
Self(rawValue: 1 << Options.standard.rawValue)
}
""",
macros: macros,
indentationWidth: .spaces(2)
)
}
func testExpansionFailsOnEnumType() {
assertMacroExpansion(
"""
@MyOptionSet<UInt8>
enum Animal {
case dog
}
""",
expandedSource: """
enum Animal {
case dog
}
""",
diagnostics: [
DiagnosticSpec(
message: "'OptionSet' macro can only be applied to a struct",
line: 1,
column: 1
)
],
macros: macros,
indentationWidth: .spaces(2)
)
}
func testExpansionFailsWithoutNestedOptionsEnum() {
assertMacroExpansion(
"""
@MyOptionSet<UInt8>
struct ShippingOptions {
static let express: ShippingOptions = [.nextDay, .secondDay]
static let all: ShippingOptions = [.express, .priority, .standard]
}
""",
expandedSource: """
struct ShippingOptions {
static let express: ShippingOptions = [.nextDay, .secondDay]
static let all: ShippingOptions = [.express, .priority, .standard]
}
""",
diagnostics: [
DiagnosticSpec(
message: "'OptionSet' macro requires nested options enum 'Options'",
line: 1,
column: 1
)
],
macros: macros,
indentationWidth: .spaces(2)
)
}
func testExpansionFailsWithoutSpecifiedRawType() {
assertMacroExpansion(
"""
@MyOptionSet
struct ShippingOptions {
private enum Options: Int {
case nextDay
}
}
""",
expandedSource: """
struct ShippingOptions {
private enum Options: Int {
case nextDay
}
}
""",
diagnostics: [
DiagnosticSpec(
message: "'OptionSet' macro requires a raw type",
line: 1,
column: 1
)
],
macros: macros,
indentationWidth: .spaces(2)
)
}
}
|