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
|
//
// InputTextFormatterTests.swift
// MullvadVPNTests
//
// Created by pronebird on 10/04/2020.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import XCTest
@MainActor
class InputTextFormatterTests: XCTestCase {
private let accountNumber = "12345678"
private var inputTextFormatter: InputTextFormatter!
private let configuration = InputTextFormatter.Configuration(
allowedInput: .numeric,
groupSeparator: " ",
groupSize: 4,
maxGroups: 4
)
override func setUp() async throws {
inputTextFormatter = InputTextFormatter(
string: accountNumber,
configuration: configuration
)
}
override func tearDown() async throws {
inputTextFormatter = nil
}
func testInitialValue() {
XCTAssertEqual(inputTextFormatter.formattedString, "1234 5678")
XCTAssertEqual(inputTextFormatter.caretPosition, 9)
}
func testReplacingValue() {
inputTextFormatter.replace(with: "00000000")
XCTAssertEqual(inputTextFormatter.formattedString, "0000 0000")
XCTAssertEqual(inputTextFormatter.caretPosition, 9)
}
func testRemovingSeparator() {
guard let range = inputTextFormatter.formattedString.range(withOffset: 4, length: 1) else {
return XCTAssertNil("Out of range", file: #file, line: #line)
}
inputTextFormatter.replaceCharacters(
in: range,
replacementString: "",
emptySelection: true
)
XCTAssertEqual(inputTextFormatter.formattedString, "1235 678")
XCTAssertEqual(inputTextFormatter.caretPosition, 3)
}
func testRemovingSeparatorRange() {
guard let range = inputTextFormatter.formattedString.range(withOffset: 4, length: 1) else {
return XCTAssertNil("Out of range", file: #file, line: #line)
}
inputTextFormatter.replaceCharacters(
in: range,
replacementString: "",
emptySelection: false
)
XCTAssertEqual(inputTextFormatter.formattedString, "1234 5678")
XCTAssertEqual(inputTextFormatter.caretPosition, 4)
}
func testRemovingRange() {
guard let range = inputTextFormatter.formattedString.range(withOffset: 7, length: 2) else {
return XCTAssertNil("Out of range", file: #file, line: #line)
}
inputTextFormatter.replaceCharacters(
in: range,
replacementString: "",
emptySelection: false
)
XCTAssertEqual(inputTextFormatter.formattedString, "1234 56")
XCTAssertEqual(inputTextFormatter.caretPosition, 7)
}
func testInserting() {
guard let range = inputTextFormatter.formattedString.range(withOffset: 5, length: 0) else {
return XCTAssertNil("Out of range", file: #file, line: #line)
}
inputTextFormatter.replaceCharacters(
in: range,
replacementString: "0000",
emptySelection: true
)
XCTAssertEqual(inputTextFormatter.formattedString, "1234 0000 5678")
XCTAssertEqual(inputTextFormatter.caretPosition, 9)
}
func testReplacingRange() {
guard let range = inputTextFormatter.formattedString.range(withOffset: 5, length: 4) else {
return XCTAssertNil("Out of range", file: #file, line: #line)
}
inputTextFormatter.replaceCharacters(
in: range,
replacementString: "0000",
emptySelection: false
)
XCTAssertEqual(inputTextFormatter.formattedString, "1234 0000")
XCTAssertEqual(inputTextFormatter.caretPosition, 9)
}
}
private extension String {
func range(withOffset offset: Int, length: Int) -> Range<String.Index>? {
guard let start = index(startIndex, offsetBy: offset, limitedBy: endIndex),
let end = index(start, offsetBy: length, limitedBy: endIndex)
else {
return nil
}
return start..<end
}
}
|