-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathBuildServiceTests.swift
65 lines (57 loc) · 3.17 KB
/
BuildServiceTests.swift
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2025 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import Testing
import SWBUtil
import SwiftBuild
import SWBBuildService
import SWBTestSupport
@Suite fileprivate struct BuildServiceTests: CoreBasedTests {
@Test func createXCFramework() async throws {
do {
let (result, message) = try await withBuildService { await $0.createXCFramework([], currentWorkingDirectory: Path.root.str, developerPath: nil) }
#expect(!result)
#expect(message == "error: at least one framework or library must be specified.\n")
}
do {
let (result, message) = try await withBuildService { await $0.createXCFramework(["createXCFramework"], currentWorkingDirectory: Path.root.str, developerPath: nil) }
#expect(!result)
#expect(message == "error: at least one framework or library must be specified.\n")
}
do {
let (result, message) = try await withBuildService { await $0.createXCFramework(["createXCFramework", "-help"], currentWorkingDirectory: Path.root.str, developerPath: nil) }
#expect(result)
#expect(message.starts(with: "OVERVIEW: Utility for packaging multiple build configurations of a given library or framework into a single xcframework."))
}
}
@Test func macCatalystSupportsProductTypes() async throws {
#expect(try await withBuildService { try await $0.productTypeSupportsMacCatalyst(developerPath: nil, productTypeIdentifier: "com.apple.product-type.application") })
#expect(try await withBuildService { try await $0.productTypeSupportsMacCatalyst(developerPath: nil, productTypeIdentifier: "com.apple.product-type.framework") })
#expect(try await !withBuildService { try await $0.productTypeSupportsMacCatalyst(developerPath: nil, productTypeIdentifier: "com.apple.product-type.application.on-demand-install-capable") })
// False on non-existent product types
#expect(try await !withBuildService { try await $0.productTypeSupportsMacCatalyst(developerPath: nil, productTypeIdentifier: "doesnotexist") })
// Error on spec identifiers which aren't product types
await #expect(throws: (any Error).self) {
try await withBuildService { try await $0.productTypeSupportsMacCatalyst(developerPath: nil, productTypeIdentifier: "com.apple.package-type.wrapper") }
}
}
}
extension CoreBasedTests {
func withBuildService<T>(_ block: (SWBBuildService) async throws -> T) async throws -> T {
try await withAsyncDeferrable { deferrable in
let service = try await SWBBuildService()
await deferrable.addBlock {
await service.close()
}
return try await block(service)
}
}
}