2020-07-30 01:50:30 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import XCTest
|
|
|
|
import Combine
|
|
|
|
import CombineExpectations
|
|
|
|
@testable import Metatext
|
|
|
|
|
|
|
|
class AddIdentityViewModelTests: XCTestCase {
|
|
|
|
var networkClient: MastodonClient!
|
|
|
|
var identityDatabase: IdentityDatabase!
|
|
|
|
var secrets: Secrets!
|
|
|
|
var cancellables = Set<AnyCancellable>()
|
|
|
|
|
|
|
|
override func setUpWithError() throws {
|
|
|
|
networkClient = MastodonClient(configuration: .stubbing)
|
|
|
|
identityDatabase = try IdentityDatabase(inMemory: true)
|
|
|
|
secrets = Secrets(keychain: FakeKeychain())
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAddIdentity() throws {
|
|
|
|
let sut = AddIdentityViewModel(
|
|
|
|
networkClient: networkClient,
|
|
|
|
identityDatabase: identityDatabase,
|
|
|
|
secrets: secrets,
|
|
|
|
webAuthenticationSessionType: SuccessfulStubbingWebAuthenticationSession.self)
|
2020-08-02 09:02:03 +02:00
|
|
|
let addedIDRecorder = sut.$addedIdentityID.record()
|
|
|
|
_ = try wait(for: addedIDRecorder.next(), timeout: 1)
|
2020-07-30 01:50:30 +02:00
|
|
|
|
|
|
|
sut.urlFieldText = "https://mastodon.social"
|
|
|
|
sut.goTapped()
|
|
|
|
|
2020-08-02 09:02:03 +02:00
|
|
|
let addedIdentityID = try wait(for: addedIDRecorder.next(), timeout: 1)!
|
|
|
|
let identityRecorder = identityDatabase.identityObservation(id: addedIdentityID).record()
|
|
|
|
let addedIdentity = try wait(for: identityRecorder.next(), timeout: 1)!
|
2020-07-30 01:50:30 +02:00
|
|
|
|
2020-08-02 09:02:03 +02:00
|
|
|
XCTAssertEqual(addedIdentity.id, addedIdentityID)
|
2020-07-30 01:50:30 +02:00
|
|
|
XCTAssertEqual(addedIdentity.url, URL(string: "https://mastodon.social")!)
|
|
|
|
XCTAssertEqual(
|
2020-08-02 09:02:03 +02:00
|
|
|
try secrets.item(.clientID, forIdentityID: addedIdentityID) as String?,
|
2020-07-30 01:50:30 +02:00
|
|
|
"AUTHORIZATION_CLIENT_ID_STUB_VALUE")
|
|
|
|
XCTAssertEqual(
|
2020-08-02 09:02:03 +02:00
|
|
|
try secrets.item(.clientSecret, forIdentityID: addedIdentityID) as String?,
|
2020-07-30 01:50:30 +02:00
|
|
|
"AUTHORIZATION_CLIENT_SECRET_STUB_VALUE")
|
|
|
|
XCTAssertEqual(
|
2020-08-02 09:02:03 +02:00
|
|
|
try secrets.item(.accessToken, forIdentityID: addedIdentityID) as String?,
|
2020-07-30 01:50:30 +02:00
|
|
|
"ACCESS_TOKEN_STUB_VALUE")
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAddIdentityWithoutScheme() throws {
|
|
|
|
let sut = AddIdentityViewModel(
|
|
|
|
networkClient: networkClient,
|
|
|
|
identityDatabase: identityDatabase,
|
|
|
|
secrets: secrets,
|
|
|
|
webAuthenticationSessionType: SuccessfulStubbingWebAuthenticationSession.self)
|
2020-08-02 09:02:03 +02:00
|
|
|
let addedIDRecorder = sut.$addedIdentityID.record()
|
|
|
|
_ = try wait(for: addedIDRecorder.next(), timeout: 1)
|
2020-07-30 01:50:30 +02:00
|
|
|
|
|
|
|
sut.urlFieldText = "mastodon.social"
|
|
|
|
sut.goTapped()
|
|
|
|
|
2020-08-02 09:02:03 +02:00
|
|
|
let addedIdentityID = try wait(for: addedIDRecorder.next(), timeout: 1)!
|
|
|
|
let identityRecorder = identityDatabase.identityObservation(id: addedIdentityID).record()
|
|
|
|
let addedIdentity = try wait(for: identityRecorder.next(), timeout: 1)!
|
2020-07-30 01:50:30 +02:00
|
|
|
|
|
|
|
XCTAssertEqual(addedIdentity.url, URL(string: "https://mastodon.social")!)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testInvalidURL() throws {
|
|
|
|
let sut = AddIdentityViewModel(
|
|
|
|
networkClient: networkClient,
|
|
|
|
identityDatabase: identityDatabase,
|
|
|
|
secrets: secrets,
|
|
|
|
webAuthenticationSessionType: SuccessfulStubbingWebAuthenticationSession.self)
|
|
|
|
let recorder = sut.$alertItem.dropFirst().record()
|
|
|
|
|
|
|
|
sut.urlFieldText = "🐘.social"
|
|
|
|
sut.goTapped()
|
|
|
|
|
|
|
|
let alertItem = try wait(for: recorder.next(), timeout: 1)
|
|
|
|
|
|
|
|
XCTAssertEqual((alertItem?.error as? URLError)?.code, URLError.badURL)
|
|
|
|
}
|
|
|
|
}
|