-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreplace.spec.test.ts
213 lines (179 loc) · 5.63 KB
/
replace.spec.test.ts
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
import { createStringTracker } from '../src'
import { assertValidTracker, getModifiedFromChanges } from './helpers'
function createReplaceTest(str: string, searchValue?: any, replacer?: any) {
return () => runReplaceTest(str, searchValue, replacer)
}
function runReplaceTest(str: string, searchValue?: any, replacer?: any) {
const tracker = createStringTracker(str)
const actualRepeat = str.replace(searchValue, replacer)
const trackerRepeat = tracker.replace(searchValue, replacer)
expect(trackerRepeat.get()).toEqual(actualRepeat)
expect(getModifiedFromChanges(trackerRepeat)).toEqual(actualRepeat)
assertValidTracker(tracker)
}
it('should throw when not called on a StringTracker', () => {
const tracker = createStringTracker('this is my word')
// @ts-ignore
expect(() => tracker.replace.call('this is my word', 'is', 'foo')).toThrow(TypeError)
})
const global = this
// 15.5.4.11_A12
it(
'should not leak global this',
createReplaceTest('x', 'x', function (this: undefined) {
expect(this).not.toEqual(global)
return 'y'
})
)
it(
'should be called with this === undefined',
createReplaceTest('x', 'x', function (this: undefined) {
expect(this).toEqual(undefined)
return 'y'
})
)
// 15.5.4.11_A1_T4
it(
'should convert searchValue to string and respect replacer function',
// @ts-ignore
createReplaceTest('gnulluna', null, (_, a2, __) => a2 + '')
)
// 15.5.4.11_A1_T5
it(
'should convert searchValue and replaceValue to string and respect empty replacer function',
createReplaceTest('gnulluna', null, Function())
)
// 15.5.4.11_A1_T10
it(
'should convert searchValue to string',
createReplaceTest('ABB\u0041BABAB', { toString: () => '\u0041B' }, () => undefined)
)
// 15.5.4.11_A1_T11
it('should throw exception in toString', () => {
const obj = {
toString: function () {
throw 'insearchValue'
},
}
const obj2 = {
toString: function () {
throw 'inreplaceValue'
},
}
const stringTracker = createStringTracker('ABB\u0041BABAB')
// @ts-ignore
expect(() => stringTracker.replace(obj, obj2)).toThrow('insearchValue')
})
// 15.5.4.11_A1_T12
it('should throw exception in valueOf', () => {
const obj = {
toString: function () {
return {}
},
valueOf: function () {
throw 'insearchValue'
},
}
const obj2 = {
toString: function () {
throw 'inreplaceValue'
},
}
const stringTracker = createStringTracker('ABB\u0041BABAB')
// @ts-ignore
expect(() => stringTracker.replace(obj, obj2)).toThrow('insearchValue')
})
// 15.5.4.11_A1_T13
it('should throw exception in toString in replaceValue', () => {
const obj = {
toString: function () {
return {}
},
valueOf: function () {
return 1
},
}
const obj2 = {
toString: function () {
throw 'inreplaceValue'
},
}
// @ts-ignore
expect(() => createStringTracker('ABB\u0041BABAB\u0031BBAA').replace(obj, obj2)).toThrow('inreplaceValue')
})
// 15.5.4.11_A1_T14
it(
'replaces regex matches created with RegExp constructor',
createReplaceTest('ABB\u0041BABAB\u0037\u0037BBAA', new RegExp('77'), 1)
)
// 15.5.4.11_A2_T1
it('should correctly replace multiple matches', createReplaceTest('She sells seashells by the seashore.', /sh/g, 'sch'))
// 15.5.4.11_A2_T2
it(
'should place a single $ in replacement of $$ in replaceValue',
createReplaceTest('She sells seashells by the seashore.', /sh/g, '$$sch')
)
// 15.5.4.11_A2_T3
it(
'should replace $& with the matched substring',
createReplaceTest('She sells seashells by the seashore.', /sh/g, '$&sch')
)
// 15.5.4.11_A2_T4
it(
'should replace $` with the substring before the match',
createReplaceTest('She sells seashells by the seashore.', /sh/g, '$`sch')
)
// 15.5.4.11_A2_T5
it(
"should replace $' with the substring after the match",
createReplaceTest('She sells seashells by the seashore.', /sh/g, "$'sch")
)
// 15.5.4.11_A2_T6
it(
'should replace the first instance of sh with sch',
createReplaceTest('She sells seashells by the seashore.', /sh/, 'sch')
)
// 15.5.4.11_A2_T7
it('should replace $$ with a single $', createReplaceTest('She sells seashells by the seashore.', /sh/, '$$sch'))
it(
'should treat $* as any other set of characters',
createReplaceTest('She sells seashells by the seashore.', /sh/, '$*sch')
)
// 15.5.4.11_A2_T9
it(
'should replace $` with the substring before the match once',
createReplaceTest('She sells seashells by the seashore.', /sh/, '$`sch')
)
// 15.5.4.11_A3_T1
it('should replace $1 with the first captured group', createReplaceTest('uid=31', /(uid=)(\d+)/, '$1115'))
it(
'should not replace $5 when a captured group with that index does not exist',
createReplaceTest('uid=31', /(uid=)(\d+)/, '$5115')
)
// 15.5.4.11_A4_T1
it(
'should provide capture groups to replacer function',
createReplaceTest('abc12 def32', /([a-z]+)([0-9]+)/, function replacer() {
return arguments[2] + arguments[1]
})
)
// 15.5.4.11_A4_T2
it(
'should provide capture groups to replacer function and run for all instances',
createReplaceTest('abc12 def32', /([a-z]+)([0-9]+)/g, function replacer() {
return arguments[2] + arguments[1]
})
)
// 15.5.4.11_A4_T3
it(
'should provide capture groups to replacer function and run and respect case insensitive on all instances',
createReplaceTest('aBc12 def34', /([a-z]+)([0-9]+)/gi, function replacer() {
return arguments[2] + arguments[1]
})
)
// 15.5.4.11_A5_T1
it(
'should respect matching results of capture group in searchValue regexp',
createReplaceTest('aaaaaaaaaa,aaaaaaaaaaaaaaa', /^(a+)\1*,\1+$/, '$1')
)
it('should work with invalid regexp as searchValue', createReplaceTest('hello[world', '[', 'test'))