| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- // Copyright 2020 Google LLC
- //
- // 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 <XCTest/XCTest.h>
- #import "FirebasePerformance/Sources/AppActivity/FPRAppActivityTracker.h"
- #import "FirebasePerformance/Sources/Public/FirebasePerformance/FIRPerformance.h"
- #import "FirebasePerformance/Tests/Unit/FPRTestCase.h"
- #import "FirebaseCore/Sources/Private/FIRAppInternal.h"
- #import <OCMock/OCMock.h>
- @interface FPRAppActivityTrackerTest : FPRTestCase
- @end
- @implementation FPRAppActivityTrackerTest
- - (void)setUp {
- [super setUp];
- FIRPerformance *performance = [FIRPerformance sharedInstance];
- [performance setDataCollectionEnabled:YES];
- }
- - (void)tearDown {
- [super tearDown];
- FIRPerformance *performance = [FIRPerformance sharedInstance];
- [performance setDataCollectionEnabled:NO];
- }
- /** Validates if the instance was successfully created. */
- - (void)testInstanceCreation {
- XCTAssertNotNil([FPRAppActivityTracker sharedInstance]);
- XCTAssertEqualObjects([FPRAppActivityTracker sharedInstance],
- [FPRAppActivityTracker sharedInstance]);
- }
- /** Validates if an active trace is available when the app is active. */
- - (void)testActiveTrace {
- NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];
- [defaultCenter postNotificationName:UIWindowDidBecomeVisibleNotification
- object:[UIApplication sharedApplication]];
- [defaultCenter postNotificationName:UIApplicationWillResignActiveNotification
- object:[UIApplication sharedApplication]];
- XCTAssertNotNil([FPRAppActivityTracker sharedInstance].activeTrace);
- }
- /** Validates no active trace is available when data collection is disabled. */
- - (void)testActiveTraceWhenDataCollectionDisabled {
- BOOL dataCollectionEnabled = [FIRPerformance sharedInstance].dataCollectionEnabled;
- [[FIRPerformance sharedInstance] setDataCollectionEnabled:NO];
- NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];
- [defaultCenter postNotificationName:UIWindowDidBecomeVisibleNotification
- object:[UIApplication sharedApplication]];
- [defaultCenter postNotificationName:UIApplicationWillResignActiveNotification
- object:[UIApplication sharedApplication]];
- XCTAssertNil([FPRAppActivityTracker sharedInstance].activeTrace);
- [[FIRPerformance sharedInstance] setDataCollectionEnabled:dataCollectionEnabled];
- }
- /** Validates if the active trace changes across launch of application from foreground to background
- * and then background to foreground.
- */
- - (void)testActiveTraceChanging {
- FIRTrace *activeTrace = [FPRAppActivityTracker sharedInstance].activeTrace;
- NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];
- [defaultCenter postNotificationName:UIWindowDidBecomeVisibleNotification
- object:[UIApplication sharedApplication]];
- [defaultCenter postNotificationName:UIApplicationWillResignActiveNotification
- object:[UIApplication sharedApplication]];
- [defaultCenter postNotificationName:UIApplicationDidBecomeActiveNotification
- object:[UIApplication sharedApplication]];
- FIRTrace *newActiveTrace = [FPRAppActivityTracker sharedInstance].activeTrace;
- XCTAssertNotEqual(activeTrace, newActiveTrace);
- }
- /** Validates if the active trace changes across launch of application from foreground to
- * background.
- */
- - (void)testActiveTraceWhenAppChangesStates {
- NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];
- FIRTrace *activeTrace = nil;
- [defaultCenter postNotificationName:UIWindowDidBecomeVisibleNotification
- object:[UIApplication sharedApplication]];
- [defaultCenter postNotificationName:UIApplicationWillResignActiveNotification
- object:[UIApplication sharedApplication]];
- activeTrace = [FPRAppActivityTracker sharedInstance].activeTrace;
- XCTAssertEqual(activeTrace.name, kFPRAppTraceNameBackgroundSession);
- [defaultCenter postNotificationName:UIApplicationDidBecomeActiveNotification
- object:[UIApplication sharedApplication]];
- activeTrace = [FPRAppActivityTracker sharedInstance].activeTrace;
- XCTAssertEqual(activeTrace.name, kFPRAppTraceNameForegroundSession);
- }
- /** Validates if the active trace is nil when data collection is toggled.
- */
- - (void)testActiveTraceIsNilWhenAppChangesStatesAndDataCollectionToggledFromEnabled {
- BOOL dataCollectionEnabled = [FIRPerformance sharedInstance].dataCollectionEnabled;
- NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];
- FIRTrace *activeTrace = nil;
- [defaultCenter postNotificationName:UIWindowDidBecomeVisibleNotification
- object:[UIApplication sharedApplication]];
- [defaultCenter postNotificationName:UIApplicationWillResignActiveNotification
- object:[UIApplication sharedApplication]];
- activeTrace = [FPRAppActivityTracker sharedInstance].activeTrace;
- XCTAssertEqual(activeTrace.name, kFPRAppTraceNameBackgroundSession);
- [[FIRPerformance sharedInstance] setDataCollectionEnabled:NO];
- [defaultCenter postNotificationName:UIApplicationDidBecomeActiveNotification
- object:[UIApplication sharedApplication]];
- activeTrace = [FPRAppActivityTracker sharedInstance].activeTrace;
- XCTAssertNil(activeTrace);
- [[FIRPerformance sharedInstance] setDataCollectionEnabled:YES];
- [defaultCenter postNotificationName:UIApplicationWillResignActiveNotification
- object:[UIApplication sharedApplication]];
- activeTrace = [FPRAppActivityTracker sharedInstance].activeTrace;
- XCTAssertEqual(activeTrace.name, kFPRAppTraceNameBackgroundSession);
- [FIRPerformance sharedInstance].dataCollectionEnabled = dataCollectionEnabled;
- }
- /** Validates if the active trace is nil when data collection is toggled.
- */
- - (void)testActiveTraceIsNilWhenAppChangesStatesAndDataCollectionToggledFromDisabled {
- BOOL dataCollectionEnabled = [FIRPerformance sharedInstance].dataCollectionEnabled;
- [[FIRPerformance sharedInstance] setDataCollectionEnabled:NO];
- NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];
- FIRTrace *activeTrace = nil;
- [defaultCenter postNotificationName:UIWindowDidBecomeVisibleNotification
- object:[UIApplication sharedApplication]];
- [defaultCenter postNotificationName:UIApplicationWillResignActiveNotification
- object:[UIApplication sharedApplication]];
- activeTrace = [FPRAppActivityTracker sharedInstance].activeTrace;
- XCTAssertNil(activeTrace);
- [[FIRPerformance sharedInstance] setDataCollectionEnabled:YES];
- [defaultCenter postNotificationName:UIApplicationDidBecomeActiveNotification
- object:[UIApplication sharedApplication]];
- activeTrace = [FPRAppActivityTracker sharedInstance].activeTrace;
- XCTAssertNotNil(activeTrace);
- [[FIRPerformance sharedInstance] setDataCollectionEnabled:NO];
- [defaultCenter postNotificationName:UIApplicationWillResignActiveNotification
- object:[UIApplication sharedApplication]];
- activeTrace = [FPRAppActivityTracker sharedInstance].activeTrace;
- XCTAssertNil(activeTrace);
- [FIRPerformance sharedInstance].dataCollectionEnabled = dataCollectionEnabled;
- }
- /** Validates if the application state is managed correctly. */
- - (void)testApplicationStateManagement {
- FPRAppActivityTracker *appTracker = [FPRAppActivityTracker sharedInstance];
- NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];
- [defaultCenter postNotificationName:UIWindowDidBecomeVisibleNotification
- object:[UIApplication sharedApplication]];
- [defaultCenter postNotificationName:UIApplicationWillResignActiveNotification
- object:[UIApplication sharedApplication]];
- XCTAssertEqual(appTracker.applicationState, FPRApplicationStateBackground);
- [defaultCenter postNotificationName:UIApplicationDidBecomeActiveNotification
- object:[UIApplication sharedApplication]];
- XCTAssertEqual(appTracker.applicationState, FPRApplicationStateForeground);
- [defaultCenter postNotificationName:UIApplicationWillResignActiveNotification
- object:[UIApplication sharedApplication]];
- XCTAssertEqual(appTracker.applicationState, FPRApplicationStateBackground);
- }
- @end
|