Skip to content

Commit 19fb1c6

Browse files
committed
Add swift-testing integration
1 parent 907674c commit 19fb1c6

File tree

3 files changed

+128
-8
lines changed

3 files changed

+128
-8
lines changed

[email protected]

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
// swift-tools-version:5.10
2+
/*
3+
This source file is part of the Swift.org open source project
4+
5+
Copyright (c) 2021-2024 Apple Inc. and the Swift project authors
6+
Licensed under Apache License v2.0 with Runtime Library Exception
7+
8+
See https://swift.org/LICENSE.txt for license information
9+
See https://swift.org/CONTRIBUTORS.txt for Swift project authors
10+
*/
11+
12+
import PackageDescription
13+
14+
func envEnable(_ key: String, default defaultValue: Bool = false) -> Bool {
15+
guard let value = Context.environment[key] else {
16+
return defaultValue
17+
}
18+
if value == "1" {
19+
return true
20+
} else if value == "0" {
21+
return false
22+
} else {
23+
return defaultValue
24+
}
25+
}
26+
27+
let isSwiftCI = Context.environment["SWIFTCI_USE_LOCAL_DEPS"] != nil
28+
29+
let cmarkPackageName = isSwiftCI ? "cmark" : "swift-cmark"
30+
31+
let markdownTarget = Target.target(
32+
name: "Markdown",
33+
dependencies: [
34+
"CAtomic",
35+
.product(name: "cmark-gfm", package: cmarkPackageName),
36+
.product(name: "cmark-gfm-extensions", package: cmarkPackageName),
37+
],
38+
exclude: [
39+
"CMakeLists.txt"
40+
]
41+
)
42+
let markdownTestTarget = Target.testTarget(
43+
name: "MarkdownTests",
44+
dependencies: ["Markdown"],
45+
resources: [.process("Visitors/Everything.md")]
46+
)
47+
48+
let package = Package(
49+
name: "swift-markdown",
50+
products: [
51+
.library(
52+
name: "Markdown",
53+
targets: ["Markdown"]),
54+
],
55+
targets: [
56+
.target(name: "CAtomic"),
57+
markdownTarget,
58+
markdownTestTarget,
59+
]
60+
)
61+
62+
// If the `SWIFTCI_USE_LOCAL_DEPS` environment variable is set,
63+
// we're building in the Swift.org CI system alongside other projects in the Swift toolchain and
64+
// we can depend on local versions of our dependencies instead of fetching them remotely.
65+
if !isSwiftCI {
66+
// Building standalone, so fetch all dependencies remotely.
67+
package.dependencies += [
68+
.package(url: "https://github.com/apple/swift-cmark.git", branch: "gfm"),
69+
]
70+
71+
// SwiftPM command plugins are only supported by Swift version 5.6 and later.
72+
#if swift(>=5.6)
73+
package.dependencies += [
74+
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.1.0"),
75+
]
76+
#endif
77+
} else {
78+
// Building in the Swift.org CI system, so rely on local versions of dependencies.
79+
package.dependencies += [
80+
.package(path: "../cmark"),
81+
]
82+
}
83+
84+
// Enable swift-testing by default on CI environment
85+
let enableSwiftTesting = envEnable("SWIFT_MARKDOWN_SWIFT_TESTING_INTEGRATION", default: true)
86+
87+
if enableSwiftTesting {
88+
package.dependencies += [
89+
.package(url: "https://github.com/apple/swift-testing.git", exact: "0.6.0"),
90+
]
91+
markdownTestTarget.dependencies.append(
92+
.product(name: "Testing", package: "swift-testing")
93+
)
94+
var swiftSettings = markdownTestTarget.swiftSettings ?? []
95+
swiftSettings.append(.define("SWIFT_MARKDOWN_SWIFT_TESTING_INTEGRATION"))
96+
markdownTestTarget.swiftSettings = swiftSettings
97+
}

Tests/MarkdownTests/Parsing/BlockDirectiveParserTests.swift

+11-8
Original file line numberDiff line numberDiff line change
@@ -1215,27 +1215,30 @@ class BlockDirectiveArgumentParserTests: XCTestCase {
12151215
"""
12161216
)
12171217
}
1218+
}
1219+
1220+
#if SWIFT_MARKDOWN_SWIFT_TESTING_INTEGRATION
1221+
import Testing
12181222

1219-
// FIXME: swift-testing macro for specifying the relationship between a bug and a test
1220-
// Uncomment the following code when we integrate swift-testing
1221-
// @Test("Directive MultiLine WithoutContent Parsing", .bug("#152", relationship: .verifiesFix))
1223+
struct _BlockDirectiveArgumentParserTests {
1224+
@Test("Directive MultiLine WithoutContent Parsing", .bug("#152", relationship: .verifiesFix))
12221225
func testDirectiveMultiLineWithoutContentParsing() throws {
1223-
let source = """
1226+
let source = #"""
12241227
@Image(
12251228
source: "example.png",
12261229
alt: "Example image"
12271230
)
1228-
"""
1229-
1231+
"""#
12301232
let document = Document(parsing: source, options: .parseBlockDirectives)
1231-
_ = try XCTUnwrap(document.child(at: 0) as? BlockDirective)
1233+
_ = try #require(document.child(at: 0) as? BlockDirective)
12321234
let expected = #"""
12331235
Document @1:1-4:2
12341236
└─ BlockDirective @1:1-4:2 name: "Image"
12351237
├─ Argument text segments:
12361238
| @2:1-2:25: " source: \"example.png\","
12371239
| @3:1-3:23: " alt: \"Example image\""
12381240
"""#
1239-
XCTAssertEqual(expected, document.debugDescription(options: .printSourceLocations))
1241+
#expect(document.debugDescription(options: .printSourceLocations) == expected)
12401242
}
12411243
}
1244+
#endif

Tests/MarkdownTests/Scaffolding.swift

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
This source file is part of the Swift.org open source project
3+
4+
Copyright (c) 2024 Apple Inc. and the Swift project authors
5+
Licensed under Apache License v2.0 with Runtime Library Exception
6+
7+
See https://swift.org/LICENSE.txt for license information
8+
See https://swift.org/CONTRIBUTORS.txt for Swift project authors
9+
*/
10+
11+
#if SWIFT_MARKDOWN_SWIFT_TESTING_INTEGRATION
12+
import Testing
13+
import XCTest
14+
15+
final class AllTests: XCTestCase {
16+
func testAll() async {
17+
await XCTestScaffold.runAllTests(hostedBy: self)
18+
}
19+
}
20+
#endif

0 commit comments

Comments
 (0)