amplify-swift/AmplifyTests/CategoryTests/Logging/LoggingPluginSelectorFactor...

116 lines
3.8 KiB
Swift

//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
import XCTest
@testable import Amplify
@testable import AmplifyTestCommon
class LoggingPluginSelectorFactoryTests: XCTestCase {
//
// override func setUp() {
// await Amplify.reset()
// }
//
// func testAddingSelectorFactoryBeforeFirstPluginWorks() throws {
// let factory = MockLoggingPluginSelectorFactory()
//
// let addShouldBeInvokedOnFactory = expectation(description: "`add` should be invoked on factory")
// factory.listeners.append { message in
// if message == "add(plugin:)" {
// addShouldBeInvokedOnFactory.fulfill()
// }
// }
//
// try Amplify.Logging.set(pluginSelectorFactory: factory)
//
// let plugin1 = MockLoggingCategoryPlugin()
// try Amplify.add(plugin: plugin1)
//
// waitForExpectations(timeout: 1.0)
// }
//
// func testNewlyAddedSelectorFactoryIsNotifiedOfAlreadyAddedPlugins() throws {
// let plugin1 = MockLoggingCategoryPlugin()
// try Amplify.add(plugin: plugin1)
//
// let factory = MockLoggingPluginSelectorFactory()
//
// let addShouldBeInvokedOnFactory = expectation(description: "`add` should be invoked on factory")
// factory.listeners.append { message in
// if message == "add(plugin:)" {
// addShouldBeInvokedOnFactory.fulfill()
// }
// }
//
// try Amplify.Logging.set(pluginSelectorFactory: factory)
// waitForExpectations(timeout: 1.0)
// }
//
// func testAddingPluginNotifiesPreviouslyAddedSelectorFactory() throws {
// let plugin1 = MockLoggingCategoryPlugin()
// try Amplify.add(plugin: plugin1)
//
// let factory = MockLoggingPluginSelectorFactory()
//
// let addShouldBeInvokedOnFactory = expectation(description: "`add` should be invoked on factory")
// addShouldBeInvokedOnFactory.expectedFulfillmentCount = 2
// factory.listeners.append { message in
// if message == "add(plugin:)" {
// addShouldBeInvokedOnFactory.fulfill()
// }
// }
//
// try Amplify.Logging.set(pluginSelectorFactory: factory)
//
// let plugin2 = MockSecondLoggingCategoryPlugin()
// try Amplify.add(plugin: plugin2)
//
// waitForExpectations(timeout: 1.0)
// }
//
// func testRemovingExistingPluginNotifiesFactory() throws {
// let plugin1 = MockLoggingCategoryPlugin()
// try Amplify.add(plugin: plugin1)
//
// let factory = MockLoggingPluginSelectorFactory()
//
// let removeShouldBeInvokedOnFactory = expectation(description: "`remove` should be invoked on factory")
// factory.listeners.append { message in
// if message == "removePlugin(for:)" {
// removeShouldBeInvokedOnFactory.fulfill()
// }
// }
//
// try Amplify.Logging.set(pluginSelectorFactory: factory)
//
// Amplify.Logging.removePlugin(for: plugin1.key)
//
// waitForExpectations(timeout: 1.0)
// }
//
// func testRemovingNonexistantPluginNotifiesFactory() throws {
// let plugin1 = MockLoggingCategoryPlugin()
// try Amplify.add(plugin: plugin1)
//
// let factory = MockLoggingPluginSelectorFactory()
//
// let removeShouldBeInvokedOnFactory = expectation(description: "`remove` should be invoked on factory")
// factory.listeners.append { message in
// if message == "removePlugin(for:)" {
// removeShouldBeInvokedOnFactory.fulfill()
// }
// }
//
// try Amplify.Logging.set(pluginSelectorFactory: factory)
//
// Amplify.Logging.removePlugin(for: "ZZZ_NON_EXISTENT_KEY")
//
// waitForExpectations(timeout: 1.0)
// }
}