-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathMullvadAPIWrapper.swift
106 lines (87 loc) · 2.92 KB
/
MullvadAPIWrapper.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
//
// MullvadAPIWrapper.swift
// MullvadVPNUITests
//
// Created by Niklas Berglund on 2024-01-18.
// Copyright © 2024 Mullvad VPN AB. All rights reserved.
//
import Foundation
import XCTest
enum MullvadAPIError: Error {
case invalidEndpointFormatError
case requestError
}
class MullvadAPIWrapper {
// swiftlint:disable force_cast
static let hostName = Bundle(for: MullvadAPIWrapper.self)
.infoDictionary?["ApiHostName"] as! String
private var mullvadAPI: MullvadApi
/// API endpoint configuration value in the format <IP-address>:<port>
static let endpoint = Bundle(for: MullvadAPIWrapper.self)
.infoDictionary?["ApiEndpoint"] as! String
// swiftlint:enable force_cast
init() throws {
let apiAddress = try Self.getAPIIPAddress() + ":" + Self.getAPIPort()
let hostname = Self.hostName
mullvadAPI = try MullvadApi(apiAddress: apiAddress, hostname: hostname)
}
public static func getAPIIPAddress() throws -> String {
guard let ipAddress = endpoint.components(separatedBy: ":").first else {
throw MullvadAPIError.invalidEndpointFormatError
}
return ipAddress
}
public static func getAPIPort() throws -> String {
guard let port = endpoint.components(separatedBy: ":").last else {
throw MullvadAPIError.invalidEndpointFormatError
}
return port
}
/// Generate a mock WireGuard key
private func generateMockWireGuardKey() -> Data {
var bytes = [UInt8]()
for _ in 0 ..< 44 {
bytes.append(UInt8.random(in: 0 ..< 255))
}
return Data(bytes)
}
func createAccount() -> String {
do {
let accountNumber = try mullvadAPI.createAccount()
return accountNumber
} catch {
XCTFail("Failed to create account using app API")
return String()
}
}
func deleteAccount(_ accountNumber: String) {
do {
try mullvadAPI.delete(account: accountNumber)
} catch {
XCTFail("Failed to delete account using app API")
}
}
/// Add another device to specified account. A dummy WireGuard key will be generated.
func addDevice(_ account: String) throws {
let devicePublicKey = generateMockWireGuardKey()
do {
try mullvadAPI.addDevice(forAccount: account, publicKey: devicePublicKey)
} catch {
throw MullvadAPIError.requestError
}
}
func getAccountExpiry(_ account: String) throws -> UInt64 {
do {
return try mullvadAPI.getExpiry(forAccount: account)
} catch {
throw MullvadAPIError.requestError
}
}
func getDevices(_ account: String) throws -> [Device] {
do {
return try mullvadAPI.listDevices(forAccount: account)
} catch {
throw MullvadAPIError.requestError
}
}
}