-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathInputTextFormatterTests.swift
158 lines (125 loc) · 5.06 KB
/
InputTextFormatterTests.swift
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
152
153
154
155
156
157
158
//
// InputTextFormatterTests.swift
// MullvadVPNTests
//
// Created by pronebird on 10/04/2020.
// Copyright © 2020 Mullvad VPN AB. All rights reserved.
//
@testable import MullvadVPN
import XCTest
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() {
inputTextFormatter = InputTextFormatter(
string: accountNumber,
configuration: configuration
)
}
override func tearDown() {
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)
}
func testInvalidCharactersReplacesTextFieldTextWithFormattedString() {
let invalidRange = NSRange(location: accountNumber.count + 1, length: 0)
let textField = UITextField()
_ = inputTextFormatter.textField(textField, shouldChangeCharactersIn: invalidRange, replacementString: "´")
XCTAssertEqual(textField.text, inputTextFormatter.formattedString)
}
func testDeleteCharacterOutsideOfTokenBoundaryDoesNotDeleteAnything() {
let invalidRange = NSRange(location: accountNumber.count + 1, length: 1)
let textField = UITextField()
_ = inputTextFormatter.textField(textField, shouldChangeCharactersIn: invalidRange, replacementString: "")
XCTAssertEqual(textField.text, inputTextFormatter.formattedString)
}
func testDeleteLastCharacter() {
let lastCharacterRange = NSRange(location: accountNumber.count, length: 1)
let textField = UITextField()
_ = inputTextFormatter.textField(textField, shouldChangeCharactersIn: lastCharacterRange, replacementString: "")
XCTAssertEqual(textField.text, "1234 567")
}
}
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
}
}