-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: renkelvin <[email protected]>
- Loading branch information
1 parent
681e740
commit 91a6974
Showing
7 changed files
with
170 additions
and
15 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
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
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
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
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
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
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,73 @@ | ||
/* | ||
* Copyright 2023 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 "FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h" | ||
|
||
/** @class FIRAuthWebUtilsTests | ||
@brief Tests for the FIRAuthWebUtils class. | ||
*/ | ||
@interface FIRAuthWebUtilsTests : XCTestCase | ||
@end | ||
|
||
@implementation FIRAuthWebUtilsTests | ||
|
||
/** @fn testExtractDomainWithHTTP | ||
@brief Test case for extracting the domain from a URL with "http://" scheme. | ||
*/ | ||
- (void)testExtractDomainWithHTTP { | ||
NSString *urlString = @"http://www.example.com/path/to/resource"; | ||
NSString *domain = [FIRAuthWebUtils extractDomain:urlString]; | ||
XCTAssertEqualObjects(domain, @"www.example.com"); | ||
} | ||
|
||
/** @fn testExtractDomainWithHTTPS | ||
@brief Test case for extracting the domain from a URL with "https://" scheme. | ||
*/ | ||
- (void)testExtractDomainWithHTTPS { | ||
NSString *urlString = @"https://www.example.com/path/to/resource"; | ||
NSString *domain = [FIRAuthWebUtils extractDomain:urlString]; | ||
XCTAssertEqualObjects(domain, @"www.example.com"); | ||
} | ||
|
||
/** @fn testExtractDomainWithoutScheme | ||
@brief Test case for extracting the domain from a URL without a scheme (assumes HTTP by default). | ||
*/ | ||
- (void)testExtractDomainWithoutScheme { | ||
NSString *urlString = @"www.example.com/path/to/resource"; | ||
NSString *domain = [FIRAuthWebUtils extractDomain:urlString]; | ||
XCTAssertEqualObjects(domain, @"www.example.com"); | ||
} | ||
|
||
/** @fn testExtractDomainWithTrailingSlashes | ||
@brief Test case for extracting the domain from a URL with trailing slashes. | ||
*/ | ||
- (void)testExtractDomainWithTrailingSlashes { | ||
NSString *urlString = @"http://www.example.com/////"; | ||
NSString *domain = [FIRAuthWebUtils extractDomain:urlString]; | ||
XCTAssertEqualObjects(domain, @"www.example.com"); | ||
} | ||
|
||
/** @fn testExtractDomainWithStringDomain | ||
@brief Test case for extracting the domain from a string that represents just the domain itself. | ||
*/ | ||
- (void)testExtractDomainWithStringDomain { | ||
NSString *urlString = @"example.com"; | ||
NSString *domain = [FIRAuthWebUtils extractDomain:urlString]; | ||
XCTAssertEqualObjects(domain, @"example.com"); | ||
} | ||
|
||
@end |