Skip to content

Commit 4a89dda

Browse files
niklasberglundbuggmagnet
authored andcommitted
Add time left properly displayed test
1 parent 51f272d commit 4a89dda

File tree

5 files changed

+43
-2
lines changed

5 files changed

+43
-2
lines changed

ios/MullvadVPN/Classes/AccessbilityIdentifier.swift

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public enum AccessibilityIdentifier: String {
5757
case quantumResistantTunnelCell
5858

5959
// Labels
60+
case accountPagePaidUntilLabel
6061
case headerDeviceNameLabel
6162
case connectionStatusConnectedLabel
6263
case connectionStatusNotConnectedLabel

ios/MullvadVPN/View controllers/Account/AccountExpiryRow.swift

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ class AccountExpiryRow: UIView {
6262
valueLabel.translatesAutoresizingMaskIntoConstraints = false
6363
valueLabel.font = UIFont.systemFont(ofSize: 17)
6464
valueLabel.textColor = .white
65+
valueLabel.accessibilityIdentifier = .accountPagePaidUntilLabel
6566
return valueLabel
6667
}()
6768

ios/MullvadVPNUITests/AccountTests.swift

+12
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,16 @@ class AccountTests: LoggedOutUITestCase {
8989
XCTAssertEqual(try MullvadAPIWrapper().getDevices(newAccountNumber).count, 0)
9090
try MullvadAPIWrapper().deleteAccount(newAccountNumber)
9191
}
92+
93+
func testTimeLeft() throws {
94+
login(accountNumber: hasTimeAccountNumber)
95+
96+
let accountExpiry = try MullvadAPIWrapper().getAccountExpiry(hasTimeAccountNumber)
97+
98+
HeaderBar(app)
99+
.tapAccountButton()
100+
101+
AccountPage(app)
102+
.verifyPaidUntil(accountExpiry)
103+
}
92104
}

ios/MullvadVPNUITests/Networking/MullvadAPIWrapper.swift

+4-2
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,11 @@ class MullvadAPIWrapper {
8888
}
8989
}
9090

91-
func getAccountExpiry(_ account: String) throws -> UInt64 {
91+
func getAccountExpiry(_ account: String) throws -> Date {
9292
do {
93-
return try mullvadAPI.getExpiry(forAccount: account)
93+
let accountExpiryTimestamp = Double(try mullvadAPI.getExpiry(forAccount: account))
94+
let accountExpiryDate = Date(timeIntervalSince1970: accountExpiryTimestamp)
95+
return accountExpiryDate
9496
} catch {
9597
throw MullvadAPIError.requestError
9698
}

ios/MullvadVPNUITests/Pages/AccountPage.swift

+25
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,29 @@ class AccountPage: Page {
4141
app.buttons[AccessibilityIdentifier.deleteButton.rawValue].tap()
4242
return self
4343
}
44+
45+
@discardableResult func verifyPaidUntil(_ date: Date) -> Self {
46+
// Strip seconds from date, since the app don't display seconds
47+
let calendar = Calendar.current
48+
var components = calendar.dateComponents([.year, .month, .day, .hour, .minute], from: date)
49+
components.second = 0
50+
guard let strippedDate = calendar.date(from: components) else {
51+
XCTFail("Failed to remove seconds from date")
52+
return self
53+
}
54+
55+
let paidUntilLabelText = app.staticTexts[AccessibilityIdentifier.accountPagePaidUntilLabel].label
56+
let dateFormatter = DateFormatter()
57+
dateFormatter.dateStyle = .medium
58+
dateFormatter.timeStyle = .short
59+
60+
guard let paidUntilLabelDate = dateFormatter.date(from: paidUntilLabelText) else {
61+
XCTFail("Failed to convert presented date to Date object")
62+
return self
63+
}
64+
65+
XCTAssertEqual(strippedDate, paidUntilLabelDate)
66+
67+
return self
68+
}
4469
}

0 commit comments

Comments
 (0)