ABTFakeFIRAConditionalUserPropertyController.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Copyright 2019 Google
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #import <Foundation/Foundation.h>
  15. #ifdef COCOAPODS
  16. #import <FirebaseAnalyticsInterop/FIRAnalyticsInterop.h>
  17. #else
  18. #import "third_party/firebase/ios/Releases/FirebaseInterop/Analytics/Public/FIRAnalyticsInterop.h"
  19. #endif
  20. @class FIRAConditionalUserProperty;
  21. @class FIRAEvent;
  22. /// Fake Firebase Analytics Conditional User Property Controller Class.
  23. /// This is a lightweight class to test experiments set and clean, events logging in unit tests.
  24. @interface ABTFakeFIRAConditionalUserPropertyController : NSObject
  25. /// Returns the FIRAConditionalUserPropertyController singleton.
  26. + (instancetype)sharedInstance;
  27. - (void)setConditionalUserProperty:(NSDictionary<NSString *, id> *)conditionalUserProperty;
  28. - (void)clearConditionalUserPropertyWithName:(NSString *)conditionalUserPropertyName;
  29. - (NSArray<FIRAConditionalUserProperty *> *)
  30. conditionalUserPropertiesWithNamePrefix:(NSString *)namePrefix
  31. filterByOrigin:(NSString *)origin;
  32. - (NSInteger)maxUserPropertiesForOrigin:(NSString *)origin;
  33. - (void)resetExperiments;
  34. @end
  35. @interface FakeAnalytics : NSObject <FIRAnalyticsInterop> {
  36. ABTFakeFIRAConditionalUserPropertyController *_fakeController;
  37. }
  38. - (instancetype)initWithFakeController:
  39. (ABTFakeFIRAConditionalUserPropertyController *)fakeController;
  40. @end