mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-17 23:18:27 +02:00
Rename the bundle name to Element for the SSO alert. * Fix unit tests after bundle name change. * Update slather for bundle name change.
73 lines
2.6 KiB
Swift
73 lines
2.6 KiB
Swift
//
|
|
// Copyright 2022 New Vector Ltd
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
@testable import Element
|
|
|
|
class LoginTests: XCTestCase {
|
|
func testUserParameterIdentifier() {
|
|
// Given a user identifier.
|
|
let id = LoginPasswordParameters.Identifier.user("test")
|
|
|
|
// When converting it to a dictionary.
|
|
let dictionary = id.dictionary
|
|
|
|
// Then the dictionary should have the expected format.
|
|
XCTAssertEqual(dictionary["type"], "m.id.user")
|
|
XCTAssertEqual(dictionary["user"], "test")
|
|
}
|
|
|
|
func testPhoneParameterIdentifier() {
|
|
// Given a phone number identifier.
|
|
let id = LoginPasswordParameters.Identifier.phone(country: "44", phone: "7777")
|
|
|
|
// When converting it to a dictionary.
|
|
let dictionary = id.dictionary
|
|
|
|
// Then the dictionary should have the expected format.
|
|
XCTAssertEqual(dictionary["type"], "m.id.phone")
|
|
XCTAssertEqual(dictionary["country"], "44")
|
|
XCTAssertEqual(dictionary["phone"], "7777")
|
|
}
|
|
|
|
func testEmailParameterIdentifier() {
|
|
// Given an email identifier.
|
|
let id = LoginPasswordParameters.Identifier.thirdParty(medium: .email, address: "test@example.com")
|
|
|
|
// When converting it to a dictionary.
|
|
let dictionary = id.dictionary
|
|
|
|
// Then the dictionary should have the expected format.
|
|
XCTAssertEqual(dictionary["type"], "m.id.thirdparty")
|
|
XCTAssertEqual(dictionary["medium"], "email")
|
|
XCTAssertEqual(dictionary["address"], "test@example.com")
|
|
}
|
|
|
|
func testMSISDNParameterIdentifier() {
|
|
// Given an msisdn phone number identifier.
|
|
let id = LoginPasswordParameters.Identifier.thirdParty(medium: .msisdn, address: "123456789")
|
|
|
|
// When converting it to a dictionary.
|
|
let dictionary = id.dictionary
|
|
|
|
// Then the dictionary should have the expected format.
|
|
XCTAssertEqual(dictionary["type"], "m.id.thirdparty")
|
|
XCTAssertEqual(dictionary["medium"], "msisdn")
|
|
XCTAssertEqual(dictionary["address"], "123456789")
|
|
}
|
|
}
|