-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathAccessMethodsTests.swift
59 lines (46 loc) · 1.43 KB
/
AccessMethodsTests.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
//
// AccessMethodsTests.swift
// MullvadVPN
//
// Created by Jon Petersson on 2024-09-30.
// Copyright © 2024 Mullvad VPN AB. All rights reserved.
//
import XCTest
class AccessMethodsTests: LoggedOutUITestCase {
func testDirect() throws {
HeaderBar(app)
.tapSettingsButton()
SettingsPage(app)
.tapAPIAccessCell()
APIAccessPage(app)
.getAccessMethodCell(accessibilityId: AccessibilityIdentifier.accessMethodDirectCell)
.tap()
EditAccessMethodPage(app)
.tapTestMethodButton()
.verifyTestStatus(.reachable)
}
func testBridges() throws {
HeaderBar(app)
.tapSettingsButton()
SettingsPage(app)
.tapAPIAccessCell()
APIAccessPage(app)
.getAccessMethodCell(accessibilityId: AccessibilityIdentifier.accessMethodBridgesCell)
.tap()
EditAccessMethodPage(app)
.tapTestMethodButton()
.verifyTestStatus(.reachable)
}
func testEncryptedDNS() throws {
HeaderBar(app)
.tapSettingsButton()
SettingsPage(app)
.tapAPIAccessCell()
APIAccessPage(app)
.getAccessMethodCell(accessibilityId: AccessibilityIdentifier.accessMethodEncryptedDNSCell)
.tap()
EditAccessMethodPage(app)
.tapTestMethodButton()
.verifyTestStatus(.reachable)
}
}