Skip to content

Commit 3a4acfb

Browse files
Add iOS app connection test
1 parent 7cfc902 commit 3a4acfb

File tree

3 files changed

+90
-12
lines changed

3 files changed

+90
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"pins" : [
3+
{
4+
"identity" : "swift-log",
5+
"kind" : "remoteSourceControl",
6+
"location" : "https://github.com/apple/swift-log.git",
7+
"state" : {
8+
"revision" : "173f567a2dfec11d74588eea82cecea555bdc0bc",
9+
"version" : "1.4.0"
10+
}
11+
},
12+
{
13+
"identity" : "wireguard-apple",
14+
"kind" : "remoteSourceControl",
15+
"location" : "https://github.com/mullvad/wireguard-apple.git",
16+
"state" : {
17+
"revision" : "11a00c20dc03f2751db47e94f585c0778c7bde82"
18+
}
19+
}
20+
],
21+
"version" : 2
22+
}

ios/MullvadVPNUITests/Networking/Networking.swift

+55-12
Original file line numberDiff line numberDiff line change
@@ -68,18 +68,6 @@ class Networking {
6868
throw NetworkingError.internalError(reason: "Failed to determine device's IP address")
6969
}
7070

71-
/// Get configured ad serving domain as URL object
72-
private static func getAdServingDomainURL() -> URL? {
73-
guard let adServingDomain = Bundle(for: BaseUITestCase.self)
74-
.infoDictionary?["AdServingDomain"] as? String,
75-
let adServingDomainURL = URL(string: adServingDomain) else {
76-
XCTFail("Ad serving domain not configured")
77-
return nil
78-
}
79-
80-
return adServingDomainURL
81-
}
82-
8371
/// Get configured ad serving domain
8472
private static func getAdServingDomain() throws -> String {
8573
guard let adServingDomain = Bundle(for: Networking.self)
@@ -226,4 +214,59 @@ class Networking {
226214
XCTFail("Failed to verify DNS server provider - couldn't serialize JSON")
227215
}
228216
}
217+
218+
public static func verifyConnectedThroughMullvad() {
219+
let mullvadConnectionJsonEndpoint = "https://am.i.mullvad.net/json"
220+
guard let url = URL(string: mullvadConnectionJsonEndpoint) else {
221+
XCTFail("Failed to unwrap URL")
222+
return
223+
}
224+
225+
let request = URLRequest(url: url)
226+
let completionHandlerInvokedExpectation = XCTestExpectation(
227+
description: "Completion handler for the request is invoked"
228+
)
229+
230+
let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
231+
if let response = response as? HTTPURLResponse {
232+
if response.statusCode != 200 {
233+
XCTFail("Request to connection check API failed - unexpected server response")
234+
}
235+
}
236+
237+
if let error = error {
238+
XCTFail("Request to connection check API failed - encountered error \(error.localizedDescription)")
239+
}
240+
241+
guard let data = data else {
242+
XCTFail("Didn't receive any data")
243+
return
244+
}
245+
246+
do {
247+
let jsonObject = try JSONSerialization.jsonObject(with: data)
248+
249+
if let dictionary = jsonObject as? [String: Any] {
250+
guard let isConnectedThroughMullvad = dictionary["mullvad_exit_ip"] as? Bool else {
251+
XCTFail("Unexpected JSON format")
252+
return
253+
}
254+
255+
XCTAssertTrue(isConnectedThroughMullvad)
256+
}
257+
} catch {
258+
XCTFail("Failed to verify whether connected through Mullvad or not")
259+
}
260+
261+
completionHandlerInvokedExpectation.fulfill()
262+
}
263+
264+
dataTask.resume()
265+
266+
let waitResult = XCTWaiter.wait(for: [completionHandlerInvokedExpectation], timeout: 30)
267+
268+
if waitResult != .completed {
269+
XCTFail("Request to connection check API failed - timeout")
270+
}
271+
}
229272
}

ios/MullvadVPNUITests/RelayTests.swift

+13
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,19 @@ class RelayTests: LoggedInWithTimeUITestCase {
2626
}
2727
}
2828

29+
func testAppConnection() throws {
30+
TunnelControlPage(app)
31+
.tapSecureConnectionButton()
32+
33+
allowAddVPNConfigurationsIfAsked()
34+
35+
TunnelControlPage(app)
36+
.waitForSecureConnectionLabel()
37+
38+
try Networking.verifyCanAccessInternet()
39+
Networking.verifyConnectedThroughMullvad()
40+
}
41+
2942
func testAdBlockingViaDNS() throws {
3043
HeaderBar(app)
3144
.tapSettingsButton()

0 commit comments

Comments
 (0)