| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- // Copyright 2018 Google
- //
- // 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 "FirebaseCore/Tests/Unit/FIRTestComponents.h"
- #import <FirebaseCore/FIRAppInternal.h>
- #import <FirebaseCore/FIRComponent.h>
- #import <FirebaseCore/FIRDependency.h>
- #pragma mark - Standard Component
- @implementation FIRTestClass
- /// FIRTestProtocol conformance.
- - (void)doSomething {
- }
- /// FIRComponentRegistrant conformance.
- + (nonnull NSArray<FIRComponent *> *)componentsToRegister {
- FIRComponent *testComponent =
- [FIRComponent componentWithProtocol:@protocol(FIRTestProtocol)
- creationBlock:^id _Nullable(FIRComponentContainer *_Nonnull container,
- BOOL *_Nonnull isCacheable) {
- return [[FIRTestClass alloc] init];
- }];
- return @[ testComponent ];
- }
- /// FIRComponentLifecycleMaintainer conformance.
- - (void)appWillBeDeleted:(FIRApp *)app {
- }
- @end
- /// A test class that is a component registrant, a duplicate of FIRTestClass.
- @implementation FIRTestClassDuplicate
- - (void)doSomething {
- }
- /// FIRLibrary conformance.
- + (nonnull NSArray<FIRComponent *> *)componentsToRegister {
- FIRComponent *testComponent =
- [FIRComponent componentWithProtocol:@protocol(FIRTestProtocol)
- creationBlock:^id _Nullable(FIRComponentContainer *_Nonnull container,
- BOOL *_Nonnull isCacheable) {
- return [[FIRTestClassDuplicate alloc] init];
- }];
- return @[ testComponent ];
- }
- /// FIRComponentLifecycleMaintainer conformance.
- - (void)appWillBeDeleted:(FIRApp *)app {
- }
- @end
- #pragma mark - Eager Component
- @implementation FIRTestClassEagerCached
- /// FIRTestProtocolEager conformance.
- - (void)doSomethingFaster {
- }
- /// FIRLibrary conformance.
- + (nonnull NSArray<FIRComponent *> *)componentsToRegister {
- FIRComponent *testComponent = [FIRComponent
- componentWithProtocol:@protocol(FIRTestProtocolEagerCached)
- instantiationTiming:FIRInstantiationTimingAlwaysEager
- dependencies:@[]
- creationBlock:^id _Nullable(FIRComponentContainer *_Nonnull container,
- BOOL *_Nonnull isCacheable) {
- FIRTestClassEagerCached *instance = [[FIRTestClassEagerCached alloc] init];
- *isCacheable = YES;
- [instance doSomethingFaster];
- return instance;
- }];
- return @[ testComponent ];
- }
- /// FIRComponentLifecycleMaintainer conformance.
- - (void)appWillBeDeleted:(FIRApp *)app {
- }
- @end
- #pragma mark - Cached Component
- @implementation FIRTestClassCached
- /// FIRLibrary conformance.
- + (nonnull NSArray<FIRComponent *> *)componentsToRegister {
- FIRComponent *testComponent = [FIRComponent
- componentWithProtocol:@protocol(FIRTestProtocolCached)
- creationBlock:^id _Nullable(FIRComponentContainer *_Nonnull container,
- BOOL *_Nonnull isCacheable) {
- FIRTestClassCached *instanceToCache = [[FIRTestClassCached alloc] init];
- *isCacheable = YES;
- return instanceToCache;
- }];
- return @[ testComponent ];
- }
- /// FIRComponentLifecycleMaintainer conformance.
- - (void)appWillBeDeleted:(FIRApp *)app {
- }
- /// FIRTestProtocolCached conformance.
- - (void)cacheCow {
- }
- @end
- #pragma mark - Test Component with Dependency
- @implementation FIRTestClassCachedWithDep
- - (instancetype)initWithTest:(id<FIRTestProtocolCached>)testInstance {
- self = [super init];
- if (self != nil) {
- self.testProperty = testInstance;
- }
- return self;
- }
- - (void)appWillBeDeleted:(nonnull FIRApp *)app {
- // Do something that depends on the instance from our dependency.
- [self.testProperty cacheCow];
- // Fetch from the container in the deletion function.
- id<FIRTestProtocolCached> anotherInstance = FIR_COMPONENT(FIRTestProtocolCached, app.container);
- [anotherInstance cacheCow];
- }
- + (nonnull NSArray<FIRComponent *> *)componentsToRegister {
- FIRDependency *dep = [FIRDependency dependencyWithProtocol:@protocol(FIRTestProtocolCached)];
- FIRComponent *testComponent = [FIRComponent
- componentWithProtocol:@protocol(FIRTestProtocolCachedWithDep)
- instantiationTiming:FIRInstantiationTimingLazy
- dependencies:@[ dep ]
- creationBlock:^id _Nullable(FIRComponentContainer *_Nonnull container,
- BOOL *_Nonnull isCacheable) {
- // Fetch from the container in the instantiation block.
- *isCacheable = YES;
- id<FIRTestProtocolCached> test = FIR_COMPONENT(FIRTestProtocolCached, container);
- FIRTestClassCachedWithDep *instance =
- [[FIRTestClassCachedWithDep alloc] initWithTest:test];
- return instance;
- }];
- return @[ testComponent ];
- }
- @end
|