| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- // 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 <Foundation/Foundation.h>
- #import <XCTest/XCTest.h>
- #import "OCMock.h"
- #import "GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h"
- @interface GULAppEnvironmentUtilTest : XCTestCase
- @property(nonatomic) id processInfoMock;
- @end
- @implementation GULAppEnvironmentUtilTest
- - (void)setUp {
- [super setUp];
- _processInfoMock = OCMPartialMock([NSProcessInfo processInfo]);
- }
- - (void)tearDown {
- [super tearDown];
- [_processInfoMock stopMocking];
- }
- // Remove the #if when iOS can remove iOS 7 support and also use processInfo instead of UIKit.
- #if TARGET_OS_OSX || TARGET_OS_TV
- - (void)testSystemVersionInfoMajorOnly {
- NSOperatingSystemVersion osTen = {.majorVersion = 10, .minorVersion = 0, .patchVersion = 0};
- OCMStub([self.processInfoMock operatingSystemVersion]).andReturn(osTen);
- XCTAssertTrue([[GULAppEnvironmentUtil systemVersion] isEqualToString:@"10.0"]);
- }
- - (void)testSystemVersionInfoMajorMinor {
- NSOperatingSystemVersion osTenTwo = {.majorVersion = 10, .minorVersion = 2, .patchVersion = 0};
- OCMStub([self.processInfoMock operatingSystemVersion]).andReturn(osTenTwo);
- XCTAssertTrue([[GULAppEnvironmentUtil systemVersion] isEqualToString:@"10.2"]);
- }
- - (void)testSystemVersionInfoMajorMinorPatch {
- NSOperatingSystemVersion osTenTwoOne = {.majorVersion = 10, .minorVersion = 2, .patchVersion = 1};
- OCMStub([self.processInfoMock operatingSystemVersion]).andReturn(osTenTwoOne);
- XCTAssertTrue([[GULAppEnvironmentUtil systemVersion] isEqualToString:@"10.2.1"]);
- }
- #endif
- - (void)testDeploymentType {
- #if SWIFT_PACKAGE
- NSString *deploymentType = @"swiftpm";
- #elif FIREBASE_BUILD_CARTHAGE
- NSString *deploymentType = @"carthage";
- #elif FIREBASE_BUILD_ZIP_FILE
- NSString *deploymentType = @"zip";
- #else
- NSString *deploymentType = @"cocoapods";
- #endif
- XCTAssertEqualObjects([GULAppEnvironmentUtil deploymentType], deploymentType);
- }
- - (void)testApplePlatform {
- // When a Catalyst app is run on macOS then both `TARGET_OS_MACCATALYST` and `TARGET_OS_IOS` are
- // `true`.
- #if TARGET_OS_MACCATALYST
- NSString *expectedPlatform = @"maccatalyst";
- #elif TARGET_OS_IOS
- NSString *expectedPlatform = @"ios";
- #endif // TARGET_OS_MACCATALYST
- #if TARGET_OS_TV
- NSString *expectedPlatform = @"tvos";
- #endif // TARGET_OS_TV
- #if TARGET_OS_OSX
- NSString *expectedPlatform = @"macos";
- #endif // TARGET_OS_OSX
- #if TARGET_OS_WATCH
- NSString *expectedPlatform = @"watchos";
- #endif // TARGET_OS_WATCH
- XCTAssertEqualObjects([GULAppEnvironmentUtil applePlatform], expectedPlatform);
- }
- - (void)testHasSwiftRuntime {
- XCTAssertFalse([GULAppEnvironmentUtil hasSwiftRuntime]);
- }
- @end
|