Skip to content

Commit 0335208

Browse files
committed
Do not use Bundle main in tests
1 parent ee68bf9 commit 0335208

File tree

4 files changed

+19
-14
lines changed

4 files changed

+19
-14
lines changed

ios/MullvadVPN/GeneralAPIs/OutgoingConnectionProxy.swift

+7-5
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,17 @@ final class OutgoingConnectionProxy: OutgoingConnectionHandling {
2020
enum ExitIPVersion: String {
2121
case v4 = "ipv4", v6 = "ipv6"
2222

23-
var host: String {
24-
"\(rawValue).am.i.\(ApplicationConfiguration.hostName)"
23+
func host(hostname: String) -> String {
24+
"\(rawValue).am.i.\(hostname)"
2525
}
2626
}
2727

2828
let urlSession: URLSessionProtocol
29+
let hostname: String
2930

30-
init(urlSession: URLSessionProtocol) {
31+
init(urlSession: URLSessionProtocol, hostname: String) {
3132
self.urlSession = urlSession
33+
self.hostname = hostname
3234
}
3335

3436
func getIPV6(retryStrategy: REST.RetryStrategy) async throws -> IPV6ConnectionData {
@@ -43,7 +45,7 @@ final class OutgoingConnectionProxy: OutgoingConnectionHandling {
4345
let delayIterator = retryStrategy.makeDelayIterator()
4446
for _ in 0 ..< retryStrategy.maxRetryCount {
4547
do {
46-
return try await perform(host: version.host)
48+
return try await perform(host: version.host(hostname: hostname))
4749
} catch {
4850
// ignore if request is cancelled
4951
if case URLError.cancelled = error {
@@ -57,7 +59,7 @@ final class OutgoingConnectionProxy: OutgoingConnectionHandling {
5759
}
5860
}
5961
}
60-
return try await perform(host: version.host)
62+
return try await perform(host: version.host(hostname: hostname))
6163
}
6264

6365
private func perform<T: Decodable>(host: String) async throws -> T {

ios/MullvadVPN/SceneDelegate.swift

+4-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate, SettingsMigrationUIHand
7373
devicesProxy: appDelegate.devicesProxy,
7474
accountsProxy: appDelegate.accountsProxy,
7575
outgoingConnectionService: OutgoingConnectionService(
76-
outgoingConnectionProxy: OutgoingConnectionProxy(urlSession: URLSession(configuration: .ephemeral))
76+
outgoingConnectionProxy: OutgoingConnectionProxy(
77+
urlSession: URLSession(configuration: .ephemeral),
78+
hostname: ApplicationConfiguration.hostName
79+
)
7780
),
7881
appPreferences: AppPreferences(),
7982
accessMethodRepository: accessMethodRepository,

ios/MullvadVPNTests/MullvadVPN/GeneralAPIs/OutgoingConnectionProxyTests.swift

+6-5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import XCTest
1111
final class OutgoingConnectionProxyTests: XCTestCase {
1212
private var mockIPV6ConnectionData: Data!
1313
private var mockIPV4ConnectionData: Data!
14+
private let hostname = "mullvad.net"
1415

1516
private let encoder = JSONEncoder()
1617

@@ -29,7 +30,7 @@ final class OutgoingConnectionProxyTests: XCTestCase {
2930

3031
let outgoingConnectionProxy = OutgoingConnectionProxy(urlSession: URLSessionStub(
3132
response: (mockIPV4ConnectionData, createHTTPURLResponse(ip: .v4, statusCode: 200))
32-
))
33+
), hostname: hostname)
3334

3435
let result = try await outgoingConnectionProxy.getIPV4(retryStrategy: .noRetry)
3536

@@ -44,7 +45,7 @@ final class OutgoingConnectionProxyTests: XCTestCase {
4445

4546
let outgoingConnectionProxy = OutgoingConnectionProxy(urlSession: URLSessionStub(
4647
response: (Data(), createHTTPURLResponse(ip: .v4, statusCode: 503))
47-
))
48+
), hostname: hostname)
4849

4950
await XCTAssertThrowsErrorAsync(try await outgoingConnectionProxy.getIPV4(retryStrategy: .noRetry)) { _ in
5051
noIPv4Expectation.fulfill()
@@ -57,7 +58,7 @@ final class OutgoingConnectionProxyTests: XCTestCase {
5758

5859
let outgoingConnectionProxy = OutgoingConnectionProxy(urlSession: URLSessionStub(
5960
response: (mockIPV6ConnectionData, createHTTPURLResponse(ip: .v6, statusCode: 200))
60-
))
61+
), hostname: hostname)
6162

6263
let result = try await outgoingConnectionProxy.getIPV6(retryStrategy: .noRetry)
6364

@@ -72,7 +73,7 @@ final class OutgoingConnectionProxyTests: XCTestCase {
7273

7374
let outgoingConnectionProxy = OutgoingConnectionProxy(urlSession: URLSessionStub(
7475
response: (mockIPV6ConnectionData, createHTTPURLResponse(ip: .v6, statusCode: 404))
75-
))
76+
), hostname: hostname)
7677

7778
await XCTAssertThrowsErrorAsync(try await outgoingConnectionProxy.getIPV6(retryStrategy: .noRetry)) { _ in
7879
noIPv6Expectation.fulfill()
@@ -84,7 +85,7 @@ final class OutgoingConnectionProxyTests: XCTestCase {
8485
extension OutgoingConnectionProxyTests {
8586
private func createHTTPURLResponse(ip: OutgoingConnectionProxy.ExitIPVersion, statusCode: Int) -> HTTPURLResponse {
8687
return HTTPURLResponse(
87-
url: URL(string: "https://\(ip.host)/json")!,
88+
url: URL(string: "https://\(ip.host(hostname: hostname))/json")!,
8889
statusCode: statusCode,
8990
httpVersion: nil,
9091
headerFields: ["Content-Type": "application/json"]

ios/Shared/ApplicationConfiguration.swift

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
import Foundation
1010
import Network
1111

12-
// swiftlint:disable force_cast
1312
enum ApplicationConfiguration {
1413
static var hostName: String {
14+
// swiftlint:disable:next force_cast
1515
Bundle.main.object(forInfoDictionaryKey: "HostName") as! String
1616
}
1717

1818
/// Shared container security group identifier.
1919
static var securityGroupIdentifier: String {
20+
// swiftlint:disable:next force_cast
2021
Bundle.main.object(forInfoDictionaryKey: "ApplicationSecurityGroupIdentifier") as! String
2122
}
2223

@@ -74,5 +75,3 @@ enum ApplicationConfiguration {
7475
/// Maximum number of devices per account.
7576
static let maxAllowedDevices = 5
7677
}
77-
78-
// swiftlint:enable force_cast

0 commit comments

Comments
 (0)