-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
79 additions
and
1 deletion.
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
Empty file.
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,28 @@ | ||
import XCTest | ||
@testable import MockGen | ||
|
||
final class MockGenTests: XCTestCase { | ||
// tests for edge cases like zero length passwords. | ||
func testGeneratePasswordWithZeroLength() { | ||
let password = CodeGen.generatePassword(length: 0) | ||
XCTAssertTrue(password.isEmpty, "Password should be empty when length is zero.") | ||
} | ||
/** | ||
* Tests the `randomAddress` property of `MockGen` | ||
* - Description: Verifies that the `randomAddress` returns a non-empty string. Optionally, you can check if it matches a specific address format using a regular expression. | ||
*/ | ||
func testRandomAddress() { | ||
// Act | ||
let address = MockGen.randomAddress | ||
|
||
// Assert | ||
XCTAssertFalse(address.isEmpty, "The randomAddress should not be empty") | ||
|
||
// Optionally, verify the address format using a regular expression | ||
let addressPattern = "^[0-9]+\\s+[A-Za-z]+\\s+[A-Za-z]+,\\s+[A-Za-z\\s]+,\\s+[A-Za-z]{2}\\s+[0-9]{5}$" | ||
let regex = try! NSRegularExpression(pattern: addressPattern) | ||
let range = NSRange(location: 0, length: address.utf16.count) | ||
let match = regex.firstMatch(in: address, options: [], range: range) | ||
XCTAssertNotNil(match, "The randomAddress does not match the expected format") | ||
} | ||
} |
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