63 lines
1.4 KiB
Swift
63 lines
1.4 KiB
Swift
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
@testable import FBSDKGamingServicesKit
|
|
|
|
import FBSDKCoreKit
|
|
import UIKit
|
|
|
|
final class TestSwitchContextDialog: SwitchContextDialogProtocol {
|
|
|
|
// MARK: Test Evidence
|
|
|
|
var wasDidCompleteWithResultsCalled = false
|
|
var wasDidFailWithErrorCalled = false
|
|
var wasDidCancelCalled = false
|
|
var wasShowCalled = false
|
|
var wasValidateCalled = false
|
|
var wasCreateWebDialogCalled = false
|
|
|
|
// MARK: Protocol Conformance
|
|
|
|
var delegate: ContextDialogDelegate?
|
|
var dialogContent: ValidatableProtocol?
|
|
var currentWebDialog: _WebDialog?
|
|
|
|
func createWebDialogFrame(
|
|
withWidth: CGFloat,
|
|
height: CGFloat,
|
|
windowFinder: _WindowFinding
|
|
) -> CGRect {
|
|
wasCreateWebDialogCalled = true
|
|
|
|
return .zero
|
|
}
|
|
|
|
func webDialogDidCancel(_ webDialog: _WebDialog) {
|
|
wasDidCancelCalled = true
|
|
}
|
|
|
|
func webDialog(_ webDialog: _WebDialog, didFailWithError error: Error) {
|
|
wasDidFailWithErrorCalled = true
|
|
}
|
|
|
|
func webDialog(_ webDialog: _WebDialog, didCompleteWithResults results: [String: Any]) {
|
|
wasDidCompleteWithResultsCalled = true
|
|
}
|
|
|
|
func show() -> Bool {
|
|
wasShowCalled = true
|
|
|
|
return false
|
|
}
|
|
|
|
func validate() throws {
|
|
wasValidateCalled = true
|
|
}
|
|
}
|