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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
//
// MultihopDecisionFlowTests.swift
// MullvadVPNTests
//
// Created by Jon Petersson on 2024-06-14.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import MullvadMockData
import XCTest
@testable import MullvadREST
@testable import MullvadSettings
@testable import MullvadTypes
class MultihopDecisionFlowTests: XCTestCase {
let sampleRelays = ServerRelaysResponseStubs.sampleRelays
func testOneToOneCanHandle() throws {
let oneToOne = OneToOne(next: nil, relayPicker: picker)
XCTAssertTrue(
oneToOne.canHandle(
entryCandidates: [seSto6],
exitCandidates: [seSto2]
))
XCTAssertFalse(
oneToOne.canHandle(
entryCandidates: [seSto2, seSto6],
exitCandidates: [seSto2]
))
XCTAssertFalse(
oneToOne.canHandle(
entryCandidates: [seSto2, seSto6],
exitCandidates: [seSto2, seSto6]
))
}
func testOneToManyCanHandle() throws {
let oneToMany = OneToMany(next: nil, relayPicker: picker)
XCTAssertTrue(
oneToMany.canHandle(
entryCandidates: [seSto2],
exitCandidates: [seSto2, seSto6]
))
XCTAssertFalse(
oneToMany.canHandle(
entryCandidates: [seSto6],
exitCandidates: [seSto2]
))
XCTAssertFalse(
oneToMany.canHandle(
entryCandidates: [seSto2, seSto6],
exitCandidates: [seSto2, seSto6]
))
}
func testManyToOneCanHandle() throws {
let manyToOne = ManyToOne(next: nil, relayPicker: picker)
XCTAssertTrue(
manyToOne.canHandle(
entryCandidates: [seSto2, seSto6],
exitCandidates: [seSto2]
))
XCTAssertFalse(
manyToOne.canHandle(
entryCandidates: [seSto6],
exitCandidates: [seSto2]
))
XCTAssertFalse(
manyToOne.canHandle(
entryCandidates: [seSto2, seSto6],
exitCandidates: [seSto2, seSto6]
))
}
func testManyToManyCanHandle() throws {
let manyToMany = ManyToMany(next: nil, relayPicker: picker)
XCTAssertTrue(
manyToMany.canHandle(
entryCandidates: [seSto2, seSto6],
exitCandidates: [seSto2, seSto6]
))
XCTAssertFalse(
manyToMany.canHandle(
entryCandidates: [seSto6],
exitCandidates: [seSto2]
))
XCTAssertFalse(
manyToMany.canHandle(
entryCandidates: [seSto2, seSto6],
exitCandidates: [seSto2]
))
}
func testOneToOnePick() throws {
let oneToOne = OneToOne(next: nil, relayPicker: picker)
let entryCandidates = [seSto2]
let exitCandidates = [seSto6]
let selectedRelays = try oneToOne.pick(
entryCandidates: entryCandidates,
exitCandidates: exitCandidates,
daitaAutomaticRouting: false
)
XCTAssertEqual(selectedRelays.entry?.hostname, "se2-wireguard")
XCTAssertEqual(selectedRelays.exit.hostname, "se6-wireguard")
}
func testOneToManyPick() throws {
let oneToMany = OneToMany(next: nil, relayPicker: picker)
let entryCandidates = [seSto2]
let exitCandidates = [seSto2, seSto6]
let selectedRelaysWithoutSmartRouting = try oneToMany.pick(
entryCandidates: entryCandidates,
exitCandidates: exitCandidates,
daitaAutomaticRouting: false
)
XCTAssertEqual(selectedRelaysWithoutSmartRouting.entry?.hostname, "se2-wireguard")
XCTAssertEqual(selectedRelaysWithoutSmartRouting.exit.hostname, "se6-wireguard")
let selectedRelaysWithSmartRouting = try XCTUnwrap(
oneToMany.pick(
entryCandidates: [seSto2],
exitCandidates: [seSto2, seSto6],
daitaAutomaticRouting: true
))
XCTAssertEqual(selectedRelaysWithSmartRouting.entry?.hostname, "se2-wireguard")
XCTAssertEqual(selectedRelaysWithSmartRouting.exit.hostname, "se6-wireguard")
}
func testManyToOnePick() throws {
let manyToOne = ManyToOne(next: nil, relayPicker: picker)
let entryCandidates = [seSto2, seSto6]
let exitCandidates = [seSto2]
let selectedRelays = try manyToOne.pick(
entryCandidates: entryCandidates,
exitCandidates: exitCandidates,
daitaAutomaticRouting: false
)
XCTAssertEqual(selectedRelays.entry?.hostname, "se6-wireguard")
XCTAssertEqual(selectedRelays.exit.hostname, "se2-wireguard")
}
func testManyToManyPick() throws {
let manyToMany = ManyToMany(next: nil, relayPicker: picker)
let entryCandidates = [seSto2, seSto6]
let exitCandidates = [seSto2, seSto6]
let selectedRelays = try manyToMany.pick(
entryCandidates: entryCandidates,
exitCandidates: exitCandidates,
daitaAutomaticRouting: false
)
if selectedRelays.exit.hostname == "se2-wireguard" {
XCTAssertEqual(selectedRelays.entry?.hostname, "se6-wireguard")
} else {
XCTAssertEqual(selectedRelays.entry?.hostname, "se2-wireguard")
}
}
}
extension MultihopDecisionFlowTests {
var picker: MultihopPicker {
let obfuscation = RelayObfuscator(
relays: sampleRelays,
tunnelSettings: LatestTunnelSettings(),
connectionAttemptCount: 0, obfuscationBypass: IdentityObfuscationProvider()
).obfuscate()
var tunnelSettings = LatestTunnelSettings()
tunnelSettings.relayConstraints = RelayConstraints(
entryLocations: .only(UserSelectedRelays(locations: [.city("se", "sto")])),
exitLocations: .only(UserSelectedRelays(locations: [.city("se", "sto")]))
)
return MultihopPicker(
obfuscation: obfuscation,
tunnelSettings: tunnelSettings,
connectionAttemptCount: 0
)
}
var seSto2: RelayWithLocation<REST.ServerRelay> {
let relay = sampleRelays.wireguard.relays.first { $0.hostname == "se2-wireguard" }!
let serverLocation = sampleRelays.locations["se-sto"]!
let location = Location(
country: serverLocation.country,
countryCode: serverLocation.country,
city: serverLocation.city,
cityCode: "se-sto",
latitude: serverLocation.latitude,
longitude: serverLocation.longitude
)
return RelayWithLocation(relay: relay, serverLocation: location)
}
var seSto6: RelayWithLocation<REST.ServerRelay> {
let relay = sampleRelays.wireguard.relays.first { $0.hostname == "se6-wireguard" }!
let serverLocation = sampleRelays.locations["se-sto"]!
let location = Location(
country: serverLocation.country,
countryCode: serverLocation.country,
city: serverLocation.city,
cityCode: "se-sto",
latitude: serverLocation.latitude,
longitude: serverLocation.longitude
)
return RelayWithLocation(relay: relay, serverLocation: location)
}
}
|