-
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.
[auth-swift] Custom Auth Domains (#12010)
Co-authored-by: pragatimodi <[email protected]>
- Loading branch information
1 parent
24eb687
commit 2c6d223
Showing
7 changed files
with
144 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
// 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 Foundation | ||
import XCTest | ||
|
||
@testable import FirebaseAuth | ||
|
||
@available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *) | ||
class AuthWebUtilsTests: XCTestCase { | ||
/** @fn testExtractDomainWithHTTP | ||
@brief Test case for extracting the domain from a URL with "http://" scheme. | ||
*/ | ||
func testExtractDomainWithHTTP() { | ||
let urlString = "http://www.example.com/path/to/resource" | ||
let domain = AuthWebUtils.extractDomain(urlString: urlString) | ||
XCTAssertEqual(domain, "www.example.com") | ||
} | ||
|
||
/** @fn testExtractDomainWithHTTPS | ||
@brief Test case for extracting the domain from a URL with "https://" scheme. | ||
*/ | ||
func testExtractDomainWithHTTPS() { | ||
let urlString = "https://www.example.com/path/to/resource/" | ||
let domain = AuthWebUtils.extractDomain(urlString: urlString) | ||
XCTAssertEqual(domain, "www.example.com") | ||
} | ||
|
||
/** @fn testExtractDomainWithoutScheme | ||
@brief Test case for extracting the domain from a URL without a scheme (assumes HTTP by default). | ||
*/ | ||
func testExtractDomainWithoutScheme() { | ||
let urlString = "www.example.com/path/to/resource" | ||
let domain = AuthWebUtils.extractDomain(urlString: urlString) | ||
XCTAssertEqual(domain, "www.example.com") | ||
} | ||
|
||
/** @fn testExtractDomainWithTrailingSlashes | ||
@brief Test case for extracting the domain from a URL with trailing slashes. | ||
*/ | ||
func testExtractDomainWithTrailingSlashes() { | ||
let urlString = "http://www.example.com//////" | ||
let domain = AuthWebUtils.extractDomain(urlString: urlString) | ||
XCTAssertEqual(domain, "www.example.com") | ||
} | ||
|
||
/** @fn testExtractDomainWithStringDomain | ||
@brief Test case for extracting the domain from a string that represents just the domain itself. | ||
*/ | ||
func testExtractDomainWithStringDomain() { | ||
let urlString = "example.com" | ||
let domain = AuthWebUtils.extractDomain(urlString: urlString) | ||
XCTAssertEqual(domain, "example.com") | ||
} | ||
} |
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