@@ -135,32 +135,65 @@ TestRegister.addTests([
135
135
} ,
136
136
] ,
137
137
} ,
138
+ {
139
+ name : "ROT13: no shift amount" ,
140
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789" ,
141
+ expectedOutput : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789" ,
142
+ recipeConfig : [
143
+ {
144
+ op : "ROT13" ,
145
+ args : [ true , true , true , 0 ]
146
+ } ,
147
+ ] ,
148
+ } ,
138
149
{
139
150
name : "ROT13: normal" ,
140
- input : "The Quick Brown Fox Jumped Over The Lazy Dog." ,
141
- expectedOutput : "Gur Dhvpx Oebja Sbk Whzcrq Bire Gur Ynml Qbt." ,
151
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789 " ,
152
+ expectedOutput : "Gur Dhvpx Oebja Sbk Whzcrq Bire Gur Ynml Qbt. 3456789012 " ,
142
153
recipeConfig : [
143
154
{
144
155
op : "ROT13" ,
145
156
args : [ true , true , true , 13 ]
146
157
} ,
147
158
] ,
148
159
} ,
160
+ {
161
+ name : "ROT13: negative shift amount" ,
162
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789" ,
163
+ expectedOutput : "Gur Dhvpx Oebja Sbk Whzcrq Bire Gur Ynml Qbt. 7890123456" ,
164
+ recipeConfig : [
165
+ {
166
+ op : "ROT13" ,
167
+ args : [ true , true , true , - 13 ]
168
+ } ,
169
+ ] ,
170
+ } ,
149
171
{
150
172
name : "ROT13: full loop" ,
151
- input : "The Quick Brown Fox Jumped Over The Lazy Dog." ,
152
- expectedOutput : "The Quick Brown Fox Jumped Over The Lazy Dog." ,
173
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789 " ,
174
+ expectedOutput : "The Quick Brown Fox Jumped Over The Lazy Dog. 6789012345 " ,
153
175
recipeConfig : [
154
176
{
155
177
op : "ROT13" ,
156
178
args : [ true , true , true , 26 ]
157
179
} ,
158
180
] ,
159
181
} ,
182
+ {
183
+ name : "ROT13: full loop (negative shift amount)" ,
184
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789" ,
185
+ expectedOutput : "The Quick Brown Fox Jumped Over The Lazy Dog. 4567890123" ,
186
+ recipeConfig : [
187
+ {
188
+ op : "ROT13" ,
189
+ args : [ true , true , true , - 26 ]
190
+ } ,
191
+ ] ,
192
+ } ,
160
193
{
161
194
name : "ROT13: lowercase only" ,
162
- input : "The Quick Brown Fox Jumped Over The Lazy Dog." ,
163
- expectedOutput : "Tur Qhvpx Bebja Fbk Jhzcrq Oire Tur Lnml Dbt." ,
195
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789 " ,
196
+ expectedOutput : "Tur Qhvpx Bebja Fbk Jhzcrq Oire Tur Lnml Dbt. 0123456789 " ,
164
197
recipeConfig : [
165
198
{
166
199
op : "ROT13" ,
@@ -170,15 +203,59 @@ TestRegister.addTests([
170
203
} ,
171
204
{
172
205
name : "ROT13: uppercase only" ,
173
- input : "The Quick Brown Fox Jumped Over The Lazy Dog." ,
174
- expectedOutput : "Ghe Duick Orown Sox Wumped Bver Ghe Yazy Qog." ,
206
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789 " ,
207
+ expectedOutput : "Ghe Duick Orown Sox Wumped Bver Ghe Yazy Qog. 0123456789 " ,
175
208
recipeConfig : [
176
209
{
177
210
op : "ROT13" ,
178
211
args : [ false , true , false , 13 ]
179
212
} ,
180
213
] ,
181
214
} ,
215
+ {
216
+ name : "ROT13: numbers only" ,
217
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789" ,
218
+ expectedOutput : "The Quick Brown Fox Jumped Over The Lazy Dog. 5678901234" ,
219
+ recipeConfig : [
220
+ {
221
+ op : "ROT13" ,
222
+ args : [ false , false , true , 5 ]
223
+ } ,
224
+ ] ,
225
+ } ,
226
+ {
227
+ name : "ROT13: numbers only (negative shift amount)" ,
228
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789" ,
229
+ expectedOutput : "The Quick Brown Fox Jumped Over The Lazy Dog. 5678901234" ,
230
+ recipeConfig : [
231
+ {
232
+ op : "ROT13" ,
233
+ args : [ false , false , true , 5 ]
234
+ } ,
235
+ ] ,
236
+ } ,
237
+ {
238
+ name : "ROT13: numbers only loop" ,
239
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789" ,
240
+ expectedOutput : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789" ,
241
+ recipeConfig : [
242
+ {
243
+ op : "ROT13" ,
244
+ args : [ false , false , true , 10 ]
245
+ } ,
246
+ ] ,
247
+ } ,
248
+ {
249
+ name : "ROT13: numbers only loop (negative shift amount)" ,
250
+ input : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789" ,
251
+ expectedOutput : "The Quick Brown Fox Jumped Over The Lazy Dog. 0123456789" ,
252
+ recipeConfig : [
253
+ {
254
+ op : "ROT13" ,
255
+ args : [ false , false , true , - 10 ]
256
+ } ,
257
+ ] ,
258
+ } ,
182
259
{
183
260
name : "ROT47: nothing" ,
184
261
input : "" ,
0 commit comments