Build Information
Failed to build TestUtils, reference 1.0.2 (a20d4c), with Swift 6.1 for Wasm on 27 May 2025 19:32:17 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/1904labs/ios-test-utils.git
Reference: 1.0.2
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/1904labs/ios-test-utils
* tag 1.0.2 -> FETCH_HEAD
HEAD is now at a20d4cd Added example URLSession mock
Cloned https://github.com/1904labs/ios-test-utils.git
Revision (git rev-parse @):
a20d4cdea48e8ba8641941f5eb2ec983c4f0faed
SUCCESS checkout https://github.com/1904labs/ios-test-utils.git at 1.0.2
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/1904labs/ios-test-utils.git
https://github.com/1904labs/ios-test-utils.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "TestUtils",
"name" : "TestUtils",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "TestUtils",
"targets" : [
"TestUtils"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "TestUtilsTests",
"module_type" : "SwiftTarget",
"name" : "TestUtilsTests",
"path" : "Tests/TestUtilsTests",
"sources" : [
"TestUtilsTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"TestUtils"
],
"type" : "test"
},
{
"c99name" : "TestUtils",
"module_type" : "SwiftTarget",
"name" : "TestUtils",
"path" : "Sources/TestUtils",
"product_memberships" : [
"TestUtils"
],
"sources" : [
"URLProtocolMock.swift",
"URLSessionMock.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/5] Emitting module TestUtils
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:13:59: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 |
12 | // this dictionary maps URLs to test data
13 | static var testURLs = [URL?: [(data: Data?, response: URLResponse?, error: Error?)]]()
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 | // say we want to handle all types of request
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:13:16: warning: static property 'testURLs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | // this dictionary maps URLs to test data
13 | static var testURLs = [URL?: [(data: Data?, response: URLResponse?, error: Error?)]]()
| |- warning: static property 'testURLs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testURLs' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testURLs' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | // say we want to handle all types of request
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:16:47: error: cannot find type 'URLRequest' in scope
14 |
15 | // say we want to handle all types of request
16 | override class func canInit(with request: URLRequest) -> Bool {
| `- error: cannot find type 'URLRequest' in scope
17 | return true
18 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:21:70: error: cannot find type 'URLRequest' in scope
19 |
20 | // ignore this method; just send back what we were given
21 | override class func canonicalRequest(for request: URLRequest) -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
22 | return request
23 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:21:55: error: cannot find type 'URLRequest' in scope
19 |
20 | // ignore this method; just send back what we were given
21 | override class func canonicalRequest(for request: URLRequest) -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
22 | return request
23 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:25:19: error: method does not override any method from its superclass
23 | }
24 |
25 | override func startLoading() {
| `- error: method does not override any method from its superclass
26 | defer {
27 | self.client?.urlProtocolDidFinishLoading(self)
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:46:19: error: method does not override any method from its superclass
44 |
45 | // this method is required but doesn't need to do anything
46 | override func stopLoading() { }
| `- error: method does not override any method from its superclass
47 | }
48 |
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:10:24: error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
8 | import Foundation
9 |
10 | class URLProtocolMock: URLProtocol {
| `- error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 |
12 | // this dictionary maps URLs to test data
Foundation.URLProtocol:2:18: note: 'URLProtocol' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLProtocol = AnyObject
| `- note: 'URLProtocol' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/TestUtils/URLSessionMock.swift:13:28: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 | An example of how to create a mock url session using URLProtocolMock
12 | */
13 | public var urlSessionMock: URLSession {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 | let configuration = URLSessionConfiguration.ephemeral
15 | configuration.protocolClasses = [URLProtocolMock.self]
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
[4/5] Compiling TestUtils URLProtocolMock.swift
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:13:59: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 |
12 | // this dictionary maps URLs to test data
13 | static var testURLs = [URL?: [(data: Data?, response: URLResponse?, error: Error?)]]()
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 | // say we want to handle all types of request
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:13:16: warning: static property 'testURLs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |
12 | // this dictionary maps URLs to test data
13 | static var testURLs = [URL?: [(data: Data?, response: URLResponse?, error: Error?)]]()
| |- warning: static property 'testURLs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testURLs' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testURLs' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |
15 | // say we want to handle all types of request
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:16:47: error: cannot find type 'URLRequest' in scope
14 |
15 | // say we want to handle all types of request
16 | override class func canInit(with request: URLRequest) -> Bool {
| `- error: cannot find type 'URLRequest' in scope
17 | return true
18 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:21:70: error: cannot find type 'URLRequest' in scope
19 |
20 | // ignore this method; just send back what we were given
21 | override class func canonicalRequest(for request: URLRequest) -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
22 | return request
23 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:21:55: error: cannot find type 'URLRequest' in scope
19 |
20 | // ignore this method; just send back what we were given
21 | override class func canonicalRequest(for request: URLRequest) -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
22 | return request
23 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:25:19: error: method does not override any method from its superclass
23 | }
24 |
25 | override func startLoading() {
| `- error: method does not override any method from its superclass
26 | defer {
27 | self.client?.urlProtocolDidFinishLoading(self)
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:46:19: error: method does not override any method from its superclass
44 |
45 | // this method is required but doesn't need to do anything
46 | override func stopLoading() { }
| `- error: method does not override any method from its superclass
47 | }
48 |
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:10:24: error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
8 | import Foundation
9 |
10 | class URLProtocolMock: URLProtocol {
| `- error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 |
12 | // this dictionary maps URLs to test data
Foundation.URLProtocol:2:18: note: 'URLProtocol' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLProtocol = AnyObject
| `- note: 'URLProtocol' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:27:18: error: value of type 'URLProtocolMock' has no member 'client'
25 | override func startLoading() {
26 | defer {
27 | self.client?.urlProtocolDidFinishLoading(self)
| `- error: value of type 'URLProtocolMock' has no member 'client'
28 | }
29 | // if we have a valid URL…
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:30:25: error: cannot find 'request' in scope
28 | }
29 | // if we have a valid URL…
30 | guard let url = request.url,
| `- error: cannot find 'request' in scope
31 | let nextResponse = URLProtocolMock.testURLs[url]?.removeFirst(),
32 | let urlResponse = nextResponse.response else {
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:37:18: error: value of type 'URLProtocolMock' has no member 'client'
35 |
36 | if let error = nextResponse.error {
37 | self.client?.urlProtocol(self, didFailWithError: error)
| `- error: value of type 'URLProtocolMock' has no member 'client'
38 | } else if let data = nextResponse.data {
39 | self.client?.urlProtocol(self, didLoad: data)
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:39:18: error: value of type 'URLProtocolMock' has no member 'client'
37 | self.client?.urlProtocol(self, didFailWithError: error)
38 | } else if let data = nextResponse.data {
39 | self.client?.urlProtocol(self, didLoad: data)
| `- error: value of type 'URLProtocolMock' has no member 'client'
40 | }
41 |
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:42:14: error: value of type 'URLProtocolMock' has no member 'client'
40 | }
41 |
42 | self.client?.urlProtocol(self, didReceive: urlResponse, cacheStoragePolicy: .allowed)
| `- error: value of type 'URLProtocolMock' has no member 'client'
43 | }
44 |
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:42:86: error: cannot infer contextual base in reference to member 'allowed'
40 | }
41 |
42 | self.client?.urlProtocol(self, didReceive: urlResponse, cacheStoragePolicy: .allowed)
| `- error: cannot infer contextual base in reference to member 'allowed'
43 | }
44 |
[5/5] Compiling TestUtils URLSessionMock.swift
/host/spi-builder-workspace/Sources/TestUtils/URLSessionMock.swift:13:28: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 | An example of how to create a mock url session using URLProtocolMock
12 | */
13 | public var urlSessionMock: URLSession {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 | let configuration = URLSessionConfiguration.ephemeral
15 | configuration.protocolClasses = [URLProtocolMock.self]
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/TestUtils/URLSessionMock.swift:14:49: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'ephemeral'
12 | */
13 | public var urlSessionMock: URLSession {
14 | let configuration = URLSessionConfiguration.ephemeral
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'ephemeral'
15 | configuration.protocolClasses = [URLProtocolMock.self]
16 | let session = URLSession(configuration: configuration)
/host/spi-builder-workspace/Sources/TestUtils/URLSessionMock.swift:16:19: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
14 | let configuration = URLSessionConfiguration.ephemeral
15 | configuration.protocolClasses = [URLProtocolMock.self]
16 | let session = URLSession(configuration: configuration)
| `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
17 | return session
18 | }
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/4] Emitting module TestUtils
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:13:59: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 |
12 | // this dictionary maps URLs to test data
13 | static var testURLs = [URL?: [(data: Data?, response: URLResponse?, error: Error?)]]()
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 | // say we want to handle all types of request
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:16:47: error: cannot find type 'URLRequest' in scope
14 |
15 | // say we want to handle all types of request
16 | override class func canInit(with request: URLRequest) -> Bool {
| `- error: cannot find type 'URLRequest' in scope
17 | return true
18 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:21:70: error: cannot find type 'URLRequest' in scope
19 |
20 | // ignore this method; just send back what we were given
21 | override class func canonicalRequest(for request: URLRequest) -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
22 | return request
23 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:21:55: error: cannot find type 'URLRequest' in scope
19 |
20 | // ignore this method; just send back what we were given
21 | override class func canonicalRequest(for request: URLRequest) -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
22 | return request
23 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:25:19: error: method does not override any method from its superclass
23 | }
24 |
25 | override func startLoading() {
| `- error: method does not override any method from its superclass
26 | defer {
27 | self.client?.urlProtocolDidFinishLoading(self)
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:46:19: error: method does not override any method from its superclass
44 |
45 | // this method is required but doesn't need to do anything
46 | override func stopLoading() { }
| `- error: method does not override any method from its superclass
47 | }
48 |
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:10:24: error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
8 | import Foundation
9 |
10 | class URLProtocolMock: URLProtocol {
| `- error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 |
12 | // this dictionary maps URLs to test data
Foundation.URLProtocol:2:18: note: 'URLProtocol' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLProtocol = AnyObject
| `- note: 'URLProtocol' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/TestUtils/URLSessionMock.swift:13:28: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 | An example of how to create a mock url session using URLProtocolMock
12 | */
13 | public var urlSessionMock: URLSession {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 | let configuration = URLSessionConfiguration.ephemeral
15 | configuration.protocolClasses = [URLProtocolMock.self]
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
[3/4] Compiling TestUtils URLProtocolMock.swift
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:13:59: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 |
12 | // this dictionary maps URLs to test data
13 | static var testURLs = [URL?: [(data: Data?, response: URLResponse?, error: Error?)]]()
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 | // say we want to handle all types of request
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:16:47: error: cannot find type 'URLRequest' in scope
14 |
15 | // say we want to handle all types of request
16 | override class func canInit(with request: URLRequest) -> Bool {
| `- error: cannot find type 'URLRequest' in scope
17 | return true
18 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:21:70: error: cannot find type 'URLRequest' in scope
19 |
20 | // ignore this method; just send back what we were given
21 | override class func canonicalRequest(for request: URLRequest) -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
22 | return request
23 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:21:55: error: cannot find type 'URLRequest' in scope
19 |
20 | // ignore this method; just send back what we were given
21 | override class func canonicalRequest(for request: URLRequest) -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
22 | return request
23 | }
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:25:19: error: method does not override any method from its superclass
23 | }
24 |
25 | override func startLoading() {
| `- error: method does not override any method from its superclass
26 | defer {
27 | self.client?.urlProtocolDidFinishLoading(self)
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:46:19: error: method does not override any method from its superclass
44 |
45 | // this method is required but doesn't need to do anything
46 | override func stopLoading() { }
| `- error: method does not override any method from its superclass
47 | }
48 |
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:10:24: error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
8 | import Foundation
9 |
10 | class URLProtocolMock: URLProtocol {
| `- error: 'URLProtocol' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 |
12 | // this dictionary maps URLs to test data
Foundation.URLProtocol:2:18: note: 'URLProtocol' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLProtocol = AnyObject
| `- note: 'URLProtocol' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:27:18: error: value of type 'URLProtocolMock' has no member 'client'
25 | override func startLoading() {
26 | defer {
27 | self.client?.urlProtocolDidFinishLoading(self)
| `- error: value of type 'URLProtocolMock' has no member 'client'
28 | }
29 | // if we have a valid URL…
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:30:25: error: cannot find 'request' in scope
28 | }
29 | // if we have a valid URL…
30 | guard let url = request.url,
| `- error: cannot find 'request' in scope
31 | let nextResponse = URLProtocolMock.testURLs[url]?.removeFirst(),
32 | let urlResponse = nextResponse.response else {
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:37:18: error: value of type 'URLProtocolMock' has no member 'client'
35 |
36 | if let error = nextResponse.error {
37 | self.client?.urlProtocol(self, didFailWithError: error)
| `- error: value of type 'URLProtocolMock' has no member 'client'
38 | } else if let data = nextResponse.data {
39 | self.client?.urlProtocol(self, didLoad: data)
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:39:18: error: value of type 'URLProtocolMock' has no member 'client'
37 | self.client?.urlProtocol(self, didFailWithError: error)
38 | } else if let data = nextResponse.data {
39 | self.client?.urlProtocol(self, didLoad: data)
| `- error: value of type 'URLProtocolMock' has no member 'client'
40 | }
41 |
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:42:14: error: value of type 'URLProtocolMock' has no member 'client'
40 | }
41 |
42 | self.client?.urlProtocol(self, didReceive: urlResponse, cacheStoragePolicy: .allowed)
| `- error: value of type 'URLProtocolMock' has no member 'client'
43 | }
44 |
/host/spi-builder-workspace/Sources/TestUtils/URLProtocolMock.swift:42:86: error: cannot infer contextual base in reference to member 'allowed'
40 | }
41 |
42 | self.client?.urlProtocol(self, didReceive: urlResponse, cacheStoragePolicy: .allowed)
| `- error: cannot infer contextual base in reference to member 'allowed'
43 | }
44 |
[4/4] Compiling TestUtils URLSessionMock.swift
/host/spi-builder-workspace/Sources/TestUtils/URLSessionMock.swift:13:28: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 | An example of how to create a mock url session using URLProtocolMock
12 | */
13 | public var urlSessionMock: URLSession {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 | let configuration = URLSessionConfiguration.ephemeral
15 | configuration.protocolClasses = [URLProtocolMock.self]
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/TestUtils/URLSessionMock.swift:14:49: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'ephemeral'
12 | */
13 | public var urlSessionMock: URLSession {
14 | let configuration = URLSessionConfiguration.ephemeral
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'ephemeral'
15 | configuration.protocolClasses = [URLProtocolMock.self]
16 | let session = URLSession(configuration: configuration)
/host/spi-builder-workspace/Sources/TestUtils/URLSessionMock.swift:16:19: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
14 | let configuration = URLSessionConfiguration.ephemeral
15 | configuration.protocolClasses = [URLProtocolMock.self]
16 | let session = URLSession(configuration: configuration)
| `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
17 | return session
18 | }
BUILD FAILURE 6.1 wasm