1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2022 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
//
//===----------------------------------------------------------------------===//
//
// Tests for the code samples in the Regex documentation.
//
//===----------------------------------------------------------------------===//
import XCTest
import _StringProcessing
class RegexTests: XCTestCase {}
@available(SwiftStdlib 5.7, *)
extension RegexTests {
func testRegex() throws {
// 'keyAndValue' is created using a regex literal
let keyAndValue = /(.+?): (.+)/
// 'simpleDigits' is created from a pattern in a string
let simpleDigits = try Regex("[0-9]+")
let setting = "color: 161 103 230"
if setting.contains(simpleDigits) {
print("'\(setting)' contains some digits.")
}
// Prints "'color: 161 103 230' contains some digits."
if let match = setting.firstMatch(of: keyAndValue) {
print("Key: \(match.1)")
print("Value: \(match.2)")
}
// Key: color
// Value: 161 103 230
XCTAssertTrue(setting.contains(simpleDigits))
let match = try XCTUnwrap(setting.firstMatch(of: keyAndValue))
XCTAssertEqual(match.1, "color")
XCTAssertEqual(match.2, "161 103 230")
}
func testRegex_init() throws {
let simpleDigits = try Regex("[0-9]+")
// shouldn't throw
}
func testRegex_initStringAs() throws {
let keyAndValue = try Regex("(.+): (.+)", as: (Substring, Substring, Substring).self)
// shouldn't throw
}
func testRegex_initRegexAs() throws {
let dynamicRegex = try Regex("(.+?): (.+)")
if let stronglyTypedRegex = Regex(dynamicRegex, as: (Substring, Substring, Substring).self) {
print("Converted properly")
}
// Prints "Converted properly"
XCTAssertNotNil(Regex(dynamicRegex, as: (Substring, Substring, Substring).self))
}
func testRegex_initVerbatim() throws {
let adjectiveDesignator = Regex<Substring>(verbatim: "(adj.)")
print("awesome (adj.)".contains(adjectiveDesignator))
// Prints "true"
print("apple (n.)".contains(adjectiveDesignator))
// Prints "false"
XCTAssertTrue("awesome (adj.)".contains(adjectiveDesignator))
XCTAssertFalse("apple (n.)".contains(adjectiveDesignator))
}
func testRegex_containsCapture() throws {
let regex = try Regex("(?'key'.+?): (?'value'.+)")
regex.contains(captureNamed: "key") // true
regex.contains(captureNamed: "VALUE") // false
regex.contains(captureNamed: "1") // false
XCTAssertTrue(regex.contains(captureNamed: "key"))
XCTAssertFalse(regex.contains(captureNamed: "VALUE"))
XCTAssertFalse(regex.contains(captureNamed: "1"))
}
}
@available(SwiftStdlib 5.7, *)
extension RegexTests {
func testRegex_wholeMatchIn() throws {
let digits = /[0-9]+/
if let digitsMatch = try digits.wholeMatch(in: "2022") {
print(digitsMatch.0)
} else {
print("No match.")
}
// Prints "2022"
if let digitsMatch = try digits.wholeMatch(in: "The year is 2022.") {
print(digitsMatch.0)
} else {
print("No match.")
}
// Prints "No match."
XCTAssertEqual(try digits.wholeMatch(in: "2022")?.0, "2022")
XCTAssertNil(try digits.wholeMatch(in: "The year is 2022."))
}
func testRegex_prefixMatchIn() throws {
let titleCaseWord = /[A-Z][A-Za-z]+/
if let wordMatch = try titleCaseWord.prefixMatch(in: "Searching in a Regex") {
print(wordMatch.0)
} else {
print("No match.")
}
// Prints "Searching"
if let wordMatch = try titleCaseWord.prefixMatch(in: "title case word at the End") {
print(wordMatch.0)
} else {
print("No match.")
}
// Prints "No match."
XCTAssertEqual(try titleCaseWord.prefixMatch(in: "Searching in a Regex")?.0, "Searching")
XCTAssertNil(try titleCaseWord.prefixMatch(in: "title case word at the End"))
}
func testRegex_firstMatchIn() throws {
let digits = /[0-9]+/
if let digitsMatch = try digits.firstMatch(in: "The year is 2022; last year was 2021.") {
print(digitsMatch.0)
} else {
print("No match.")
}
// Prints "2022"
XCTAssertEqual(try digits.firstMatch(in: "The year is 2022; last year was 2021.")?.0, "2022")
}
}
|