50 lines
2.6 KiB
Swift
50 lines
2.6 KiB
Swift
//
|
|
// Copyright 2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
import MatrixRustSDK
|
|
|
|
extension AuthenticationClientBuilderMock {
|
|
struct Configuration {
|
|
var homeserverClients = [
|
|
"matrix.org": ClientSDKMock(configuration: .init()),
|
|
"example.com": ClientSDKMock(configuration: .init(serverAddress: "example.com",
|
|
homeserverURL: "https://matrix.example.com",
|
|
slidingSyncVersion: .native,
|
|
oidcLoginURL: nil,
|
|
supportsOIDCCreatePrompt: false,
|
|
supportsPasswordLogin: true)),
|
|
"company.com": ClientSDKMock(configuration: .init(serverAddress: "company.com",
|
|
homeserverURL: "https://matrix.company.com",
|
|
slidingSyncVersion: .native,
|
|
oidcLoginURL: "https://auth.company.com/oidc",
|
|
supportsOIDCCreatePrompt: false,
|
|
supportsPasswordLogin: false)),
|
|
"server.net": ClientSDKMock(configuration: .init(serverAddress: "server.net",
|
|
homeserverURL: "https://matrix.example.com",
|
|
slidingSyncVersion: .native,
|
|
oidcLoginURL: nil,
|
|
supportsOIDCCreatePrompt: false,
|
|
supportsPasswordLogin: false))
|
|
]
|
|
var qrCodeClient = ClientSDKMock(configuration: .init())
|
|
}
|
|
|
|
convenience init(configuration: Configuration) {
|
|
self.init()
|
|
|
|
buildHomeserverAddressClosure = { address in
|
|
guard let client = configuration.homeserverClients[address] else {
|
|
throw ClientBuildError.ServerUnreachable(message: "Not a known homeserver.")
|
|
}
|
|
return client
|
|
}
|
|
|
|
buildWithQRCodeQrCodeDataOidcConfigurationProgressListenerReturnValue = configuration.qrCodeClient
|
|
}
|
|
}
|