-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: SonarCloud is expected to FAIL. - DO NOT MERGE -
- Loading branch information
1 parent
8dc9e67
commit 42456f7
Showing
1 changed file
with
322 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,322 @@ | ||
// 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. | ||
|
||
@testable import InfomaniakDI | ||
import XCTest | ||
|
||
/// Integration Tests of @InjectService | ||
final class UTToDelete: XCTestCase { | ||
override func setUp() { | ||
SimpleResolver.sharedResolver.removeAll() | ||
} | ||
|
||
override func tearDown() { | ||
SimpleResolver.sharedResolver.removeAll() | ||
} | ||
|
||
// MARK: - @InjectService | ||
|
||
func testResolveSampleType_propertyWrapper() { | ||
// GIVEN | ||
let resolver = SimpleResolver.sharedResolver | ||
let expectedObject = SomeClass() | ||
var factoryClosureCallCount = 0 | ||
let factory = Factory(type: SomeClass.self) { _, _ in | ||
factoryClosureCallCount += 1 | ||
return expectedObject | ||
} | ||
|
||
resolver.store(factory: factory) | ||
|
||
// WHEN | ||
let classWithDIProperty = ClassThatUsesDI() | ||
XCTAssertNotNil(classWithDIProperty.$injected.service, "the service is expected to be resolved") | ||
|
||
// THEN | ||
XCTAssertTrue(expectedObject === classWithDIProperty.injected, "identity of resolved object should match") | ||
XCTAssertEqual(factoryClosureCallCount, 1, "the factory closure should be called once exactly") | ||
|
||
XCTAssertEqual(resolver.factories.count, resolver.store.count) | ||
XCTAssertEqual(resolver.factories.count, 1) | ||
XCTAssertEqual(resolver.store.count, 1) | ||
} | ||
|
||
func testResolveSampleType_propertyWrapper2() { | ||
// GIVEN | ||
let resolver = SimpleResolver.sharedResolver | ||
let expectedObject = SomeClass() | ||
var factoryClosureCallCount = 0 | ||
let factory = Factory(type: SomeClass.self) { _, _ in | ||
factoryClosureCallCount += 1 | ||
return expectedObject | ||
} | ||
|
||
resolver.store(factory: factory) | ||
|
||
// WHEN | ||
let classWithDIProperty = ClassThatUsesDI() | ||
XCTAssertNotNil(classWithDIProperty.$injected.service, "the service is expected to be resolved") | ||
|
||
// THEN | ||
XCTAssertTrue(expectedObject === classWithDIProperty.injected, "identity of resolved object should match") | ||
XCTAssertEqual(factoryClosureCallCount, 1, "the factory closure should be called once exactly") | ||
|
||
XCTAssertEqual(resolver.factories.count, resolver.store.count) | ||
XCTAssertEqual(resolver.factories.count, 1) | ||
XCTAssertEqual(resolver.store.count, 1) | ||
} | ||
|
||
func testResolveSampleType_propertyWrapper3() { | ||
// GIVEN | ||
let resolver = SimpleResolver.sharedResolver | ||
let expectedObject = SomeClass() | ||
var factoryClosureCallCount = 0 | ||
let factory = Factory(type: SomeClass.self) { _, _ in | ||
factoryClosureCallCount += 1 | ||
return expectedObject | ||
} | ||
|
||
resolver.store(factory: factory) | ||
|
||
// WHEN | ||
let classWithDIProperty = ClassThatUsesDI() | ||
XCTAssertNotNil(classWithDIProperty.$injected.service, "the service is expected to be resolved") | ||
|
||
// THEN | ||
XCTAssertTrue(expectedObject === classWithDIProperty.injected, "identity of resolved object should match") | ||
XCTAssertEqual(factoryClosureCallCount, 1, "the factory closure should be called once exactly") | ||
|
||
XCTAssertEqual(resolver.factories.count, resolver.store.count) | ||
XCTAssertEqual(resolver.factories.count, 1) | ||
XCTAssertEqual(resolver.store.count, 1) | ||
} | ||
|
||
func testResolveSampleType_propertyWrapper4() { | ||
// GIVEN | ||
let resolver = SimpleResolver.sharedResolver | ||
let expectedObject = SomeClass() | ||
var factoryClosureCallCount = 0 | ||
let factory = Factory(type: SomeClass.self) { _, _ in | ||
factoryClosureCallCount += 1 | ||
return expectedObject | ||
} | ||
|
||
resolver.store(factory: factory) | ||
|
||
// WHEN | ||
let classWithDIProperty = ClassThatUsesDI() | ||
XCTAssertNotNil(classWithDIProperty.$injected.service, "the service is expected to be resolved") | ||
|
||
// THEN | ||
XCTAssertTrue(expectedObject === classWithDIProperty.injected, "identity of resolved object should match") | ||
XCTAssertEqual(factoryClosureCallCount, 1, "the factory closure should be called once exactly") | ||
|
||
XCTAssertEqual(resolver.factories.count, resolver.store.count) | ||
XCTAssertEqual(resolver.factories.count, 1) | ||
XCTAssertEqual(resolver.store.count, 1) | ||
} | ||
|
||
func testResolveSampleType_propertyWrapper_protocol() { | ||
// GIVEN | ||
let resolver = SimpleResolver.sharedResolver | ||
let expectedObject = SomeClassConforming() | ||
var factoryClosureCallCount = 0 | ||
let factory = Factory(type: SomeClassable.self) { _, _ in | ||
factoryClosureCallCount += 1 | ||
return expectedObject | ||
} | ||
|
||
resolver.store(factory: factory) | ||
|
||
// WHEN | ||
let classWithDIProperty = ClassThatUsesConformingDI() | ||
XCTAssertNotNil(classWithDIProperty.$injected.service, "the service is expected to be resolved") | ||
|
||
// THEN | ||
XCTAssertTrue(expectedObject === classWithDIProperty.injected, "identity of resolved object should match") | ||
XCTAssertEqual(factoryClosureCallCount, 1, "the factory closure should be called once exactly") | ||
|
||
XCTAssertEqual(resolver.factories.count, resolver.store.count) | ||
XCTAssertEqual(resolver.factories.count, 1) | ||
XCTAssertEqual(resolver.store.count, 1) | ||
} | ||
|
||
func testResolveSampleType_propertyWrapper_withCustomIdentifiers() { | ||
// GIVEN | ||
let resolver = SimpleResolver.sharedResolver | ||
var factoryClosureCallCount = 0 | ||
let factory = Factory(type: SomeClass.self) { _, _ in | ||
factoryClosureCallCount += 1 | ||
return SomeClass() | ||
} | ||
|
||
// We store a factory for a specific specialized type using an identifier | ||
let specialIdentifier = "specialIdentifier" | ||
let customIdentifier = "customIdentifier" | ||
|
||
resolver.store(factory: factory, forCustomTypeIdentifier: specialIdentifier) | ||
resolver.store(factory: factory, forCustomTypeIdentifier: customIdentifier) | ||
|
||
// WHEN | ||
let classWithServicies = ClassThatUsesCustomIdentifiersDI() | ||
XCTAssertNotNil(classWithServicies.$special.service, "the service is expected to be resolved") | ||
XCTAssertNotNil(classWithServicies.$custom.service, "the service is expected to be resolved") | ||
|
||
// THEN | ||
XCTAssertFalse(classWithServicies.custom === classWithServicies.special, | ||
"`custom` and `special` should be resolved to two distinct objects") | ||
XCTAssertEqual(factoryClosureCallCount, 2, "the factory closure should be called twice exactly") | ||
|
||
XCTAssertEqual(resolver.factories.count, resolver.store.count) | ||
XCTAssertEqual(resolver.factories.count, 2) | ||
XCTAssertEqual(resolver.store.count, 2) | ||
} | ||
|
||
func testResolveSampleType_propertyWrapper_withCustomParameters() { | ||
// GIVEN | ||
let resolver = SimpleResolver.sharedResolver | ||
let expectedObject = SomeClass() | ||
let expectedFactoryParameters = ["someKey": "someValue"] | ||
var factoryClosureCallCount = 0 | ||
let factory = Factory(type: SomeClass.self) { parameters, _ in | ||
guard let parameters else { | ||
XCTFail("unexpected") | ||
return | ||
} | ||
XCTAssertEqual(parameters as NSDictionary, expectedFactoryParameters as NSDictionary) | ||
factoryClosureCallCount += 1 | ||
return expectedObject | ||
} | ||
|
||
resolver.store(factory: factory) | ||
|
||
// WHEN | ||
let classWithService = ClassThatUsesFactoryParametersDI() | ||
XCTAssertNotNil(classWithService.$injected.service, "the service is expected to be resolved") | ||
|
||
// THEN | ||
XCTAssertTrue(classWithService.injected === expectedObject, "the identity is expected to match") | ||
XCTAssertEqual(factoryClosureCallCount, 1, "the factory closure should be called twice exactly") | ||
|
||
XCTAssertEqual(resolver.factories.count, resolver.store.count) | ||
XCTAssertEqual(resolver.factories.count, 1) | ||
XCTAssertEqual(resolver.store.count, 1) | ||
} | ||
|
||
func testResolveSampleType_propertyWrapper_identifierAndParameters() { | ||
// GIVEN | ||
let resolver = SimpleResolver.sharedResolver | ||
let expectedFactoryParameters = ["someKey": "someValue"] | ||
var factoryClosureCallCount = 0 | ||
let factory = Factory(type: SomeClass.self) { parameters, _ in | ||
guard let parameters else { | ||
XCTFail("unexpected") | ||
return | ||
} | ||
XCTAssertEqual(parameters as NSDictionary, expectedFactoryParameters as NSDictionary) | ||
factoryClosureCallCount += 1 | ||
return SomeClass() | ||
} | ||
|
||
// We store a factory for a specific specialized type using an identifier | ||
let specialIdentifier = "special" | ||
let customIdentifier = "custom" | ||
|
||
resolver.store(factory: factory, forCustomTypeIdentifier: specialIdentifier) | ||
resolver.store(factory: factory, forCustomTypeIdentifier: customIdentifier) | ||
|
||
// WHEN | ||
let classWithServicies = ClassThatUsesComplexDI() | ||
XCTAssertNotNil(classWithServicies.$special.service, "the service is expected to be resolved") | ||
XCTAssertNotNil(classWithServicies.$custom.service, "the service is expected to be resolved") | ||
|
||
// THEN | ||
XCTAssertFalse(classWithServicies.custom === classWithServicies.special, | ||
"`custom` and `special` should resolve two distinct objects") | ||
XCTAssertEqual(factoryClosureCallCount, 2, "the factory closure should be called twice exactly") | ||
|
||
XCTAssertEqual(resolver.factories.count, resolver.store.count) | ||
XCTAssertEqual(resolver.factories.count, 2) | ||
XCTAssertEqual(resolver.store.count, 2) | ||
} | ||
|
||
func testResolveSampleType_inlineResolution() { | ||
// GIVEN | ||
let resolver = SimpleResolver.sharedResolver | ||
let expectedObject = SomeClass() | ||
var factoryClosureCallCount = 0 | ||
let factory = Factory(type: SomeClass.self) { _, _ in | ||
factoryClosureCallCount += 1 | ||
return expectedObject | ||
} | ||
|
||
resolver.store(factory: factory) | ||
|
||
let classThatDoesInlineDI = ClassThatDoesInlineDI() | ||
|
||
// WHEN | ||
let resolved = classThatDoesInlineDI.inlineDI() | ||
|
||
// THEN | ||
XCTAssertTrue(expectedObject === resolved, "identity of resolved object should match") | ||
XCTAssertEqual(factoryClosureCallCount, 1, "the factory closure should be called once exactly") | ||
|
||
XCTAssertEqual(resolver.factories.count, resolver.store.count) | ||
XCTAssertEqual(resolver.factories.count, 1) | ||
XCTAssertEqual(resolver.store.count, 1) | ||
} | ||
} | ||
|
||
// MARK: - Performance | ||
|
||
final class ITInjectService_Performance: XCTestCase { | ||
override func setUp() { | ||
SimpleResolver.sharedResolver.removeAll() | ||
|
||
// Make sure something is registered before doing a test. | ||
registerAllHelperTypes() | ||
} | ||
|
||
override func tearDown() { | ||
SimpleResolver.sharedResolver.removeAll() | ||
} | ||
|
||
/// Testing the cost of doing a massive amount of creation of a InjectService with a resolution of the wrapped type. | ||
func testCreationAndResolutionCost() { | ||
// WHEN | ||
measure { | ||
for _ in 0 ... 1_000_000 { | ||
let _ = InjectService<SomeClass>().wrappedValue | ||
} | ||
} | ||
} | ||
|
||
/// Testing the cost of doing a massive amount of creation of InjectService, with comparison to mimic SwiftUI behaviour. | ||
func testCreationAndComparisonCost() { | ||
// GIVEN | ||
@InjectService var baseProperty: SomeClass | ||
let _ = $baseProperty.wrappedValue // force a resolution | ||
|
||
// WHEN | ||
measure { | ||
for _ in 0 ... 1_000_000 { | ||
@InjectService var newProperty: SomeClass | ||
guard $baseProperty != $newProperty else { | ||
return | ||
} | ||
|
||
XCTFail("Unexpected") | ||
} | ||
} | ||
} | ||
} |