@@ -11,6 +11,7 @@ import XCTest
11
11
final class OutgoingConnectionProxyTests : XCTestCase {
12
12
private var mockIPV6ConnectionData : Data !
13
13
private var mockIPV4ConnectionData : Data !
14
+ private let hostname = " mullvad.net "
14
15
15
16
private let encoder = JSONEncoder ( )
16
17
@@ -29,7 +30,7 @@ final class OutgoingConnectionProxyTests: XCTestCase {
29
30
30
31
let outgoingConnectionProxy = OutgoingConnectionProxy ( urlSession: URLSessionStub (
31
32
response: ( mockIPV4ConnectionData, createHTTPURLResponse ( ip: . v4, statusCode: 200 ) )
32
- ) )
33
+ ) , hostname : hostname )
33
34
34
35
let result = try await outgoingConnectionProxy. getIPV4 ( retryStrategy: . noRetry)
35
36
@@ -44,7 +45,7 @@ final class OutgoingConnectionProxyTests: XCTestCase {
44
45
45
46
let outgoingConnectionProxy = OutgoingConnectionProxy ( urlSession: URLSessionStub (
46
47
response: ( Data ( ) , createHTTPURLResponse ( ip: . v4, statusCode: 503 ) )
47
- ) )
48
+ ) , hostname : hostname )
48
49
49
50
await XCTAssertThrowsErrorAsync ( try await outgoingConnectionProxy. getIPV4 ( retryStrategy: . noRetry) ) { _ in
50
51
noIPv4Expectation. fulfill ( )
@@ -57,7 +58,7 @@ final class OutgoingConnectionProxyTests: XCTestCase {
57
58
58
59
let outgoingConnectionProxy = OutgoingConnectionProxy ( urlSession: URLSessionStub (
59
60
response: ( mockIPV6ConnectionData, createHTTPURLResponse ( ip: . v6, statusCode: 200 ) )
60
- ) )
61
+ ) , hostname : hostname )
61
62
62
63
let result = try await outgoingConnectionProxy. getIPV6 ( retryStrategy: . noRetry)
63
64
@@ -72,7 +73,7 @@ final class OutgoingConnectionProxyTests: XCTestCase {
72
73
73
74
let outgoingConnectionProxy = OutgoingConnectionProxy ( urlSession: URLSessionStub (
74
75
response: ( mockIPV6ConnectionData, createHTTPURLResponse ( ip: . v6, statusCode: 404 ) )
75
- ) )
76
+ ) , hostname : hostname )
76
77
77
78
await XCTAssertThrowsErrorAsync ( try await outgoingConnectionProxy. getIPV6 ( retryStrategy: . noRetry) ) { _ in
78
79
noIPv6Expectation. fulfill ( )
@@ -84,7 +85,7 @@ final class OutgoingConnectionProxyTests: XCTestCase {
84
85
extension OutgoingConnectionProxyTests {
85
86
private func createHTTPURLResponse( ip: OutgoingConnectionProxy . ExitIPVersion , statusCode: Int ) -> HTTPURLResponse {
86
87
return HTTPURLResponse (
87
- url: URL ( string: " https:// \( ip. host) /json " ) !,
88
+ url: URL ( string: " https:// \( ip. host ( hostname : hostname ) ) /json " ) !,
88
89
statusCode: statusCode,
89
90
httpVersion: nil ,
90
91
headerFields: [ " Content-Type " : " application/json " ]
0 commit comments