Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
2.0.0
Switch branches/tags
Go to file
@mahmoud-adam85
Latest commit 7aea3c8 Aug 1, 2018 History
2 contributors

Users who have contributed to this file

@mahmoud-adam85 @naira-cliqz
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
@testable import Account
import Foundation
import Shared
import XCTest
class LivePushClientTests: XCTestCase {
var endpointURL: NSURL {
return FennecPushConfiguration().endpointURL
}
func generateDeviceID() -> String {
let num = arc4random_uniform(1 << 31)
return "test-id-deadbeef-\(num)"
}
func testClientRegistration() {
let deviceID = generateDeviceID()
let client = PushClient(endpointURL: endpointURL)
let registrationExpectation = XCTestExpectation()
let unregistrationExpectation = XCTestExpectation()
client.register(deviceID) >>== { registration in
registrationExpectation.fulfill()
client.unregister(registration) >>== { res in
unregistrationExpectation.fulfill()
}
}
wait(for: [registrationExpectation, unregistrationExpectation], timeout: 2 * 60)
}
func testClientUpdate() {
let client = PushClient(endpointURL: endpointURL)
let registrationExpectation = XCTestExpectation()
let updateExpectation = XCTestExpectation()
let unregistrationExpectation = XCTestExpectation()
client.register(generateDeviceID()) >>== { ogRegistration in
registrationExpectation.fulfill()
client.updateUAID(self.generateDeviceID(), withRegistration: ogRegistration) >>== { registration in
updateExpectation.fulfill()
XCTAssertEqual(ogRegistration, registration)
client.unregister(registration) >>== { res in
unregistrationExpectation.fulfill()
}
}
}
wait(for: [registrationExpectation, updateExpectation, unregistrationExpectation], timeout: 2 * 60)
}
}