-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathTestKSURLNormalization.m
440 lines (376 loc) · 31.1 KB
/
TestKSURLNormalization.m
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
#import <SenTestingKit/SenTestingKit.h>
#import "KSURLNormalization.m"
@interface TestKSURLNormalization : SenTestCase
@end
@implementation TestKSURLNormalization
- (void)setUp
{
[super setUp];
// Set-up code here.
}
- (void)tearDown
{
// Tear-down code here.
[super tearDown];
}
- (void)test_ks_URLByNormalizingURL
{
NSURL *in1 = [NSURL URLWithString:@"http://username:[email protected]:80/sandvox/page.html;parameter1=arg1;parameter2=arg2?queryparm1=%aa%bb%cc%dd&queryparm2=queryarg2#anchor1"];
NSURL *in2 = [NSURL URLWithString:@"http://username:[email protected]///sandvox/index.html;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in3 = [NSURL URLWithString:@"HTTPS://username:[email protected]:443/sandvox///default.htm;parameter1=arg1;parameter2=arg2?queryparm1=%11%22%33%44&queryparm2=queryarg2#anchor1"];
NSURL *in4 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2"];
NSURL *in5 = [NSURL URLWithString:@"http://username:[email protected]:80/sandvox/index.html;parameter1=arg1;parameter2=arg2?queryparm1=%aa%bb%cc%dd&queryparm2=queryarg2"];
NSURL *in6 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2/level3/../..//;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in7 = [NSURL URLWithString:@""];
NSURL *in8 = [NSURL URLWithString:@"mailto:[email protected]"];
NSURL *in9 = [NSURL URLWithString:@"http://web.mac.com/sactobob/BobsPlace/Garys_Big_6-Oh%21.ht#0"];
NSURL *in10 = [NSURL URLWithString:@"http://web.mac.com/sactobob/BobsPlace/Garys_Big_6-Oh%21#0"];
NSURL *in11 = [NSURL URLWithString:@"http://www.karelia.com"];
NSURL *in12 = [NSURL URLWithString:@"http://www.karelia.com/#"];
NSURL *in13 = [NSURL URLWithString:@"http://www.karelia.com/index.html#"];
NSURL *in14 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in15 = [NSURL URLWithString:@"http://www.karelia.com/folder%20one%2bone%3dtwo/index.html"];
NSURL *in16 = [NSURL URLWithString:@"http://www.karelia.com/%5bobjectivec%5d/index.html"];
NSURL *in17 = [NSURL URLWithString:@"http://www.karelia.com/whee!/index.html"];
NSURL *in18 = [NSURL URLWithString:@"http://www.karelia.com/whee%21/index.html"];
NSURL *in19 = [NSURL URLWithString:@"file:///Users/foo/Desktop/index.html"];
NSURL *in20 = [NSURL URLWithString:@"file://localhost/Users/foo/Desktop/index.html"];
NSURL *can1 = [NSURL URLWithString:@"http://username:[email protected]/sandvox/page.html;parameter1=arg1;parameter2=arg2?queryparm1=%AA%BB%CC%DD&queryparm2=queryarg2"];
NSURL *can2 = [NSURL URLWithString:@"http://username:[email protected]/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2"];
NSURL *can3 = [NSURL URLWithString:@"https://username:[email protected]/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=%11%22%33%44&queryparm2=queryarg2"];
NSURL *can4 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2"];
NSURL *can5 = [NSURL URLWithString:@"http://username:[email protected]/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=%AA%BB%CC%DD&queryparm2=queryarg2"];
NSURL *can6 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2"];
NSURL *can7 = [NSURL URLWithString:@""];
NSURL *can8 = [NSURL URLWithString:@"mailto:[email protected]"];
NSURL *can9 = [NSURL URLWithString:@"http://web.mac.com/sactobob/BobsPlace/Garys_Big_6-Oh!.ht"];
NSURL *can10 = [NSURL URLWithString:@"http://web.mac.com/sactobob/BobsPlace/Garys_Big_6-Oh!/"];
NSURL *can11 = [NSURL URLWithString:@"http://www.karelia.com/"];
NSURL *can12 = [NSURL URLWithString:@"http://www.karelia.com/"];
NSURL *can13 = [NSURL URLWithString:@"http://www.karelia.com/"];
NSURL *can14 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2"];
NSURL *can15 = [NSURL URLWithString:@"http://www.karelia.com/folder%20one%2Bone%3Dtwo/"];
NSURL *can16 = [NSURL URLWithString:@"http://www.karelia.com/%5Bobjectivec%5D/"];
NSURL *can17 = [NSURL URLWithString:@"http://www.karelia.com/whee!/"];
NSURL *can18 = [NSURL URLWithString:@"http://www.karelia.com/whee!/"];
NSURL *can19 = [NSURL URLWithString:@"file:///Users/foo/Desktop/index.html"];
NSURL *can20 = [NSURL URLWithString:@"file://localhost/Users/foo/Desktop/index.html"];
NSURL *out1 = [in1 ks_normalizedURL];
NSURL *out2 = [in2 ks_normalizedURL];
NSURL *out3 = [in3 ks_normalizedURL];
NSURL *out4 = [in4 ks_normalizedURL];
NSURL *out5 = [in5 ks_normalizedURL];
NSURL *out6 = [in6 ks_normalizedURL];
NSURL *out7 = [in7 ks_normalizedURL];
NSURL *out8 = [in8 ks_normalizedURL];
NSURL *out9 = [in9 ks_normalizedURL];
NSURL *out10 = [in10 ks_normalizedURL];
NSURL *out11 = [in11 ks_normalizedURL];
NSURL *out12 = [in12 ks_normalizedURL];
NSURL *out13 = [in13 ks_normalizedURL];
NSURL *out14 = [in14 ks_normalizedURL];
NSURL *out15 = [in15 ks_normalizedURL];
NSURL *out16 = [in16 ks_normalizedURL];
NSURL *out17 = [in17 ks_normalizedURL];
NSURL *out18 = [in18 ks_normalizedURL];
NSURL *out19 = [in19 ks_normalizedURL];
NSURL *out20 = [in20 ks_normalizedURL];
STAssertTrue([[out1 absoluteString] isEqualToString:[can1 absoluteString]], @"out1 failed");
STAssertTrue([[out2 absoluteString] isEqualToString:[can2 absoluteString]], @"out2 failed");
STAssertTrue([[out3 absoluteString] isEqualToString:[can3 absoluteString]], @"out3 failed");
STAssertTrue([[out4 absoluteString] isEqualToString:[can4 absoluteString]], @"out4 failed");
STAssertTrue([[out5 absoluteString] isEqualToString:[can5 absoluteString]], @"out5 failed");
STAssertTrue([[out6 absoluteString] isEqualToString:[can6 absoluteString]], @"out6 failed");
STAssertTrue([[out7 absoluteString] isEqualToString:[can7 absoluteString]], @"out7 failed");
STAssertTrue([[out8 absoluteString] isEqualToString:[can8 absoluteString]], @"out8 failed");
STAssertTrue([[out9 absoluteString] isEqualToString:[can9 absoluteString]], @"out9 failed");
STAssertTrue([[out10 absoluteString] isEqualToString:[can10 absoluteString]], @"out10 failed");
STAssertTrue([[out11 absoluteString] isEqualToString:[can11 absoluteString]], @"out11 failed");
STAssertTrue([[out12 absoluteString] isEqualToString:[can12 absoluteString]], @"out12 failed");
STAssertTrue([[out13 absoluteString] isEqualToString:[can13 absoluteString]], @"out13 failed");
STAssertTrue([[out14 absoluteString] isEqualToString:[can14 absoluteString]], @"out14 failed");
STAssertTrue([[out15 absoluteString] isEqualToString:[can15 absoluteString]], @"out15 failed");
STAssertTrue([[out16 absoluteString] isEqualToString:[can16 absoluteString]], @"out16 failed");
STAssertTrue([[out17 absoluteString] isEqualToString:[can17 absoluteString]], @"out17 failed");
STAssertTrue([[out18 absoluteString] isEqualToString:[can18 absoluteString]], @"out18 failed");
STAssertTrue([[out19 absoluteString] isEqualToString:[can19 absoluteString]], @"out19 failed");
STAssertTrue([[out20 absoluteString] isEqualToString:[can20 absoluteString]], @"out20 failed");
}
- (void)test_ks_ReplacementRangeOfURLPart
{
NSURL *theWorks = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/index.html;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSRange rScheme = [theWorks ks_replacementRangeOfURLPart:ks_URLPartScheme];
NSRange rUserAndPassword = [theWorks ks_replacementRangeOfURLPart:ks_URLPartUserAndPassword];
NSRange rHost = [theWorks ks_replacementRangeOfURLPart:ks_URLPartHost];
NSRange rPort = [theWorks ks_replacementRangeOfURLPart:ks_URLPartPort];
NSRange rPath = [theWorks ks_replacementRangeOfURLPart:ks_URLPartPath];
NSRange rParameterString = [theWorks ks_replacementRangeOfURLPart:ks_URLPartParameterString];
NSRange rQuery = [theWorks ks_replacementRangeOfURLPart:ks_URLPartQuery];
NSRange rFragment = [theWorks ks_replacementRangeOfURLPart:ks_URLPartFragment];
// 1 1 1 1 1 1
//0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
//0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890
//http://username:[email protected]:8888/sandvox/index.html;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSRange ckrScheme = (NSRange){0,4};
NSRange ckrUserAndPassword = (NSRange){7,18};
NSRange ckrHost = (NSRange){25,15};
NSRange ckrPort = (NSRange){40,5};
NSRange ckrPath = (NSRange){45,19};
NSRange ckrParameterString = (NSRange){64,32};
NSRange ckrQuery = (NSRange){96,42};
NSRange ckrFragment = (NSRange){138,8};
STAssertTrue(rScheme.location == ckrScheme.location && rScheme.length == ckrScheme.length, @"rScheme failed.");
STAssertTrue(rUserAndPassword.location == ckrUserAndPassword.location && rUserAndPassword.length == ckrUserAndPassword.length, @"rUserAndPassword failed.");
STAssertTrue(rHost.location == ckrHost.location && rHost.length == ckrHost.length, @"rHost failed.");
STAssertTrue(rPort.location == ckrPort.location && rPort.length == ckrPort.length, @"rPort failed.");
STAssertTrue(rPath.location == ckrPath.location && rPath.length == ckrPath.length, @"rPath failed.");
STAssertTrue(rParameterString.location == ckrParameterString.location && rParameterString.length == ckrParameterString.length, @"rParameterString failed.");
STAssertTrue(rQuery.location == ckrQuery.location && rQuery.length == ckrQuery.length, @"rQuery failed.");
STAssertTrue(rFragment.location == ckrFragment.location && rFragment.length == ckrFragment.length, @"rFragment failed.");
NSURL *empty = [NSURL URLWithString:@""];
NSRange e_rScheme = [empty ks_replacementRangeOfURLPart:ks_URLPartScheme];
NSRange e_rUserAndPassword = [empty ks_replacementRangeOfURLPart:ks_URLPartUserAndPassword];
NSRange e_rHost = [empty ks_replacementRangeOfURLPart:ks_URLPartHost];
NSRange e_rPort = [empty ks_replacementRangeOfURLPart:ks_URLPartPort];
NSRange e_rPath = [empty ks_replacementRangeOfURLPart:ks_URLPartPath];
NSRange e_rParameterString = [empty ks_replacementRangeOfURLPart:ks_URLPartParameterString];
NSRange e_rQuery = [empty ks_replacementRangeOfURLPart:ks_URLPartQuery];
NSRange e_rFragment = [empty ks_replacementRangeOfURLPart:ks_URLPartFragment];
NSRange e_ckrScheme = (NSRange){0,0};
NSRange e_ckrUserAndPassword = (NSRange){0,0};
NSRange e_ckrHost = (NSRange){0,0};
NSRange e_ckrPort = (NSRange){0,0};
NSRange e_ckrPath = (NSRange){0,0};
NSRange e_ckrParameterString = (NSRange){0,0};
NSRange e_ckrQuery = (NSRange){0,0};
NSRange e_ckrFragment = (NSRange){0,0};
STAssertTrue(e_rScheme.location == e_ckrScheme.location && e_rScheme.length == e_ckrScheme.length, @"e_rScheme failed.");
STAssertTrue(e_rUserAndPassword.location == e_ckrUserAndPassword.location && e_rUserAndPassword.length == e_ckrUserAndPassword.length, @"e_rUserAndPassword failed.");
STAssertTrue(e_rHost.location == e_ckrHost.location && e_rHost.length == e_ckrHost.length, @"e_rHost failed.");
STAssertTrue(e_rPort.location == e_ckrPort.location && e_rPort.length == e_ckrPort.length, @"e_rPort failed.");
STAssertTrue(e_rPath.location == e_ckrPath.location && e_rPath.length == e_ckrPath.length, @"e_rPath failed.");
STAssertTrue(e_rParameterString.location == e_ckrParameterString.location && e_rParameterString.length == e_ckrParameterString.length, @"e_rParameterString failed.");
STAssertTrue(e_rQuery.location == e_ckrQuery.location && e_rQuery.length == e_ckrQuery.length, @"e_rQuery failed.");
STAssertTrue(e_rFragment.location == e_ckrFragment.location && e_rFragment.length == e_ckrFragment.length, @"e_rFragment failed.");
}
- (void)test_ks_URLByLowercasingSchemeAndHost
{
NSURL *in1 = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
NSURL *in2 = [NSURL URLWithString:@"HTTP://www.karelia.com/index.html"];
NSURL *in3 = [NSURL URLWithString:@"http://WWW.KARELIA.COM/index.html"];
NSURL *in4 = [NSURL URLWithString:@"HTTP://WWW.KARELIA.COM/index.html"];
NSURL *in5 = [NSURL URLWithString:@"HttP://wWW.KAReliA.cOM/index.html"];
NSURL *in6 = [NSURL URLWithString:@""];
NSURL *canonical = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
STAssertTrue([[[in1 ks_URLByLowercasingSchemeAndHost] absoluteString] isEqualToString:[canonical absoluteString]], @"in1 failed");
STAssertTrue([[[in2 ks_URLByLowercasingSchemeAndHost] absoluteString] isEqualToString:[canonical absoluteString]], @"in2 failed");
STAssertTrue([[[in3 ks_URLByLowercasingSchemeAndHost] absoluteString] isEqualToString:[canonical absoluteString]], @"in3 failed");
STAssertTrue([[[in4 ks_URLByLowercasingSchemeAndHost] absoluteString] isEqualToString:[canonical absoluteString]], @"in4 failed");
STAssertTrue([[[in5 ks_URLByLowercasingSchemeAndHost] absoluteString] isEqualToString:[canonical absoluteString]], @"in5 failed");
STAssertTrue([[[in6 ks_URLByLowercasingSchemeAndHost] absoluteString] isEqualToString:@""], @"in6 failed");
}
- (void)test_ks_URLByUppercasingEscapes
{
NSURL *in1 = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
NSURL *in2 = [NSURL URLWithString:@"http://www.karelia.com/folder%20one%2bone%3dtwo/index.html"];
NSURL *in3 = [NSURL URLWithString:@"http://www.karelia.com/%5bobjectivec%5d/index.html"];
NSURL *in4 = [NSURL URLWithString:@"http://www.karelia.com/index%aa%bb%cc/index.html"];
NSURL *in5 = [NSURL URLWithString:@"http://www.karelia.com/index%AA%BB%CC/index.html"];
NSURL *in6 = [NSURL URLWithString:@""];
NSURL *can1 = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
NSURL *can2 = [NSURL URLWithString:@"http://www.karelia.com/folder%20one%2Bone%3Dtwo/index.html"];
NSURL *can3 = [NSURL URLWithString:@"http://www.karelia.com/%5Bobjectivec%5D/index.html"];
NSURL *can4 = [NSURL URLWithString:@"http://www.karelia.com/index%AA%BB%CC/index.html"];
NSURL *can5 = [NSURL URLWithString:@"http://www.karelia.com/index%AA%BB%CC/index.html"];
NSURL *can6 = [NSURL URLWithString:@""];
NSURL *out1 = [in1 ks_URLByUppercasingEscapes];
NSURL *out2 = [in2 ks_URLByUppercasingEscapes];
NSURL *out3 = [in3 ks_URLByUppercasingEscapes];
NSURL *out4 = [in4 ks_URLByUppercasingEscapes];
NSURL *out5 = [in5 ks_URLByUppercasingEscapes];
NSURL *out6 = [in6 ks_URLByUppercasingEscapes];
STAssertTrue([[out1 absoluteString] isEqualToString:[can1 absoluteString]], @"out1 failed");
STAssertTrue([[out2 absoluteString] isEqualToString:[can2 absoluteString]], @"out2 failed");
STAssertTrue([[out3 absoluteString] isEqualToString:[can3 absoluteString]], @"out3 failed");
STAssertTrue([[out4 absoluteString] isEqualToString:[can4 absoluteString]], @"out4 failed");
STAssertTrue([[out5 absoluteString] isEqualToString:[can5 absoluteString]], @"out5 failed");
STAssertTrue([[out6 absoluteString] isEqualToString:[can6 absoluteString]], @"out6 failed");
}
- (void)test_ks_URLByUnescapingUnreservedCharactersInPath
{
NSURL *in1 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in2 = [NSURL URLWithString:@"http://www.karelia.com/folder%20one%2bone%3dtwo/index.html"];
NSURL *in3 = [NSURL URLWithString:@"http://www.karelia.com/%5bobjectivec%5d/index.html"];
NSURL *in4 = [NSURL URLWithString:@"http://www.karelia.com/whee!/index.html"];
NSURL *in5 = [NSURL URLWithString:@"http://www.karelia.com/whee%21/index.html"];
NSURL *in6 = [NSURL URLWithString:@"http://www.karelia.com/#objectivec%23/index.html"];
NSURL *can1 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can2 = [NSURL URLWithString:@"http://www.karelia.com/folder%20one%2bone%3dtwo/index.html"];
NSURL *can3 = [NSURL URLWithString:@"http://www.karelia.com/%5bobjectivec%5d/index.html"];
NSURL *can4 = [NSURL URLWithString:@"http://www.karelia.com/whee!/index.html"];
NSURL *can5 = [NSURL URLWithString:@"http://www.karelia.com/whee!/index.html"];
NSURL *can6 = [NSURL URLWithString:@"http://www.karelia.com/#objectivec%23/index.html"];
NSURL *out1 = [in1 ks_URLByUnescapingUnreservedCharactersInPath];
NSURL *out2 = [in2 ks_URLByUnescapingUnreservedCharactersInPath];
NSURL *out3 = [in3 ks_URLByUnescapingUnreservedCharactersInPath];
NSURL *out4 = [in4 ks_URLByUnescapingUnreservedCharactersInPath];
NSURL *out5 = [in5 ks_URLByUnescapingUnreservedCharactersInPath];
NSURL *out6 = [in6 ks_URLByUnescapingUnreservedCharactersInPath];
STAssertTrue([[out1 absoluteString] isEqualToString:[can1 absoluteString]], @"out1 failed");
STAssertTrue([[out2 absoluteString] isEqualToString:[can2 absoluteString]], @"out2 failed");
STAssertTrue([[out3 absoluteString] isEqualToString:[can3 absoluteString]], @"out3 failed");
STAssertTrue([[out4 absoluteString] isEqualToString:[can4 absoluteString]], @"out4 failed");
STAssertTrue([[out5 absoluteString] isEqualToString:[can5 absoluteString]], @"out5 failed");
STAssertTrue([[out6 absoluteString] isEqualToString:[can6 absoluteString]], @"out6 failed");
}
- (void)test_ks_URLByAddingTrailingSlashToDirectory
{
NSURL *in1 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in2 = [NSURL URLWithString:@"http://www.karelia.com/sandvox/"];
NSURL *in3 = [NSURL URLWithString:@"http://www.karelia.com/sandvox"];
NSURL *in4 = [NSURL URLWithString:@"http://www.karelia.com/sandvox/folder1/folder2/folder3/folder4/folder5/folder6"];
NSURL *in5 = [NSURL URLWithString:@""];
NSURL *can1 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can2 = [NSURL URLWithString:@"http://www.karelia.com/sandvox/"];
NSURL *can3 = [NSURL URLWithString:@"http://www.karelia.com/sandvox/"];
NSURL *can4 = [NSURL URLWithString:@"http://www.karelia.com/sandvox/folder1/folder2/folder3/folder4/folder5/folder6/"];
NSURL *can5 = [NSURL URLWithString:@""];
NSURL *out1 = [in1 ks_URLByAddingTrailingSlashToDirectory];
NSURL *out2 = [in2 ks_URLByAddingTrailingSlashToDirectory];
NSURL *out3 = [in3 ks_URLByAddingTrailingSlashToDirectory];
NSURL *out4 = [in4 ks_URLByAddingTrailingSlashToDirectory];
NSURL *out5 = [in5 ks_URLByAddingTrailingSlashToDirectory];
STAssertTrue([[out1 absoluteString] isEqualToString:[can1 absoluteString]], @"out1 failed");
STAssertTrue([[out2 absoluteString] isEqualToString:[can2 absoluteString]], @"out2 failed");
STAssertTrue([[out3 absoluteString] isEqualToString:[can3 absoluteString]], @"out3 failed");
STAssertTrue([[out4 absoluteString] isEqualToString:[can4 absoluteString]], @"out4 failed");
STAssertTrue([[out5 absoluteString] isEqualToString:[can5 absoluteString]], @"out5 failed");
}
- (void)test_ks_URLByRemovingDefaultPort
{
NSURL *in1 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in2 = [NSURL URLWithString:@"http://username:[email protected]:80/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in3 = [NSURL URLWithString:@"http://username:[email protected]:80"];
NSURL *in4 = [NSURL URLWithString:@"https://username:[email protected]:443/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in5 = [NSURL URLWithString:@""];
NSURL *can1 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can2 = [NSURL URLWithString:@"http://username:[email protected]/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can3 = [NSURL URLWithString:@"http://username:[email protected]"];
NSURL *can4 = [NSURL URLWithString:@"https://username:[email protected]/sandvox;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can5 = [NSURL URLWithString:@""];
NSURL *out1 = [in1 ks_URLByRemovingDefaultPort];
NSURL *out2 = [in2 ks_URLByRemovingDefaultPort];
NSURL *out3 = [in3 ks_URLByRemovingDefaultPort];
NSURL *out4 = [in4 ks_URLByRemovingDefaultPort];
NSURL *out5 = [in5 ks_URLByRemovingDefaultPort];
STAssertTrue([[out1 absoluteString] isEqualToString:[can1 absoluteString]], @"out1 failed");
STAssertTrue([[out2 absoluteString] isEqualToString:[can2 absoluteString]], @"out2 failed");
STAssertTrue([[out3 absoluteString] isEqualToString:[can3 absoluteString]], @"out3 failed");
STAssertTrue([[out4 absoluteString] isEqualToString:[can4 absoluteString]], @"out4 failed");
STAssertTrue([[out5 absoluteString] isEqualToString:[can5 absoluteString]], @"out5 failed");
}
- (void)test_ks_URLByRemovingDotSegments
{
NSURL *in1 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2/level3/../../level2;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in2 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/././level2/././level3/../.././././././level2;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in3 = [NSURL URLWithString:@"http://www.karelia.com/level1/././level2/././level3/../.././././././level2"];
NSURL *in4 = [NSURL URLWithString:@""];
NSURL *can1 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can2 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can3 = [NSURL URLWithString:@"http://www.karelia.com/level1/level2"];
NSURL *can4 = [NSURL URLWithString:@""];
NSURL *out1 = [in1 ks_URLByRemovingDotSegments];
NSURL *out2 = [in2 ks_URLByRemovingDotSegments];
NSURL *out3 = [in3 ks_URLByRemovingDotSegments];
NSURL *out4 = [in4 ks_URLByRemovingDotSegments];
STAssertTrue([[out1 absoluteString] isEqualToString:[can1 absoluteString]], @"out1 failed");
STAssertTrue([[out2 absoluteString] isEqualToString:[can2 absoluteString]], @"out2 failed");
STAssertTrue([[out3 absoluteString] isEqualToString:[can3 absoluteString]], @"out3 failed");
STAssertTrue([[out4 absoluteString] isEqualToString:[can4 absoluteString]], @"out4 failed");
}
- (void)test_ks_URLByRemovingDirectoryIndex
{
NSURL *in1 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/index.html;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in2 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in3 = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
NSURL *in4 = [NSURL URLWithString:@"http://www.karelia.com/default.aspx?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in5 = [NSURL URLWithString:@""];
NSURL *can1 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can2 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can3 = [NSURL URLWithString:@"http://www.karelia.com/"];
NSURL *can4 = [NSURL URLWithString:@"http://www.karelia.com/?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can5 = [NSURL URLWithString:@""];
NSURL *out1 = [in1 ks_URLByRemovingDirectoryIndex];
NSURL *out2 = [in2 ks_URLByRemovingDirectoryIndex];
NSURL *out3 = [in3 ks_URLByRemovingDirectoryIndex];
NSURL *out4 = [in4 ks_URLByRemovingDirectoryIndex];
NSURL *out5 = [in5 ks_URLByRemovingDirectoryIndex];
STAssertTrue([[out1 absoluteString] isEqualToString:[can1 absoluteString]], @"out1 failed");
STAssertTrue([[out2 absoluteString] isEqualToString:[can2 absoluteString]], @"out2 failed");
STAssertTrue([[out3 absoluteString] isEqualToString:[can3 absoluteString]], @"out3 failed");
STAssertTrue([[out4 absoluteString] isEqualToString:[can4 absoluteString]], @"out4 failed");
STAssertTrue([[out5 absoluteString] isEqualToString:[can5 absoluteString]], @"out5 failed");
}
- (void)test_ks_URLByRemovingFragment
{
NSURL *in1 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/index.html;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in2 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in3 = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
NSURL *in4 = [NSURL URLWithString:@"http://www.karelia.com/index.html#anchor1"];
NSURL *in5 = [NSURL URLWithString:@"http://www.karelia.com/default.aspx?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in6 = [NSURL URLWithString:@""];
NSURL *can1 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/index.html;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2"];
NSURL *can2 = [NSURL URLWithString:@"http://username:[email protected]:8888/sandvox/;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2"];
NSURL *can3 = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
NSURL *can4 = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
NSURL *can5 = [NSURL URLWithString:@"http://www.karelia.com/default.aspx?queryparm1=queryarg1&queryparm2=queryarg2"];
NSURL *can6 = [NSURL URLWithString:@""];
NSURL *out1 = [in1 ks_URLByRemovingFragment];
NSURL *out2 = [in2 ks_URLByRemovingFragment];
NSURL *out3 = [in3 ks_URLByRemovingFragment];
NSURL *out4 = [in4 ks_URLByRemovingFragment];
NSURL *out5 = [in5 ks_URLByRemovingFragment];
NSURL *out6 = [in6 ks_URLByRemovingFragment];
STAssertTrue([[out1 absoluteString] isEqualToString:[can1 absoluteString]], @"out1 failed");
STAssertTrue([[out2 absoluteString] isEqualToString:[can2 absoluteString]], @"out2 failed");
STAssertTrue([[out3 absoluteString] isEqualToString:[can3 absoluteString]], @"out3 failed");
STAssertTrue([[out4 absoluteString] isEqualToString:[can4 absoluteString]], @"out4 failed");
STAssertTrue([[out5 absoluteString] isEqualToString:[can5 absoluteString]], @"out5 failed");
STAssertTrue([[out6 absoluteString] isEqualToString:[can6 absoluteString]], @"out6 failed");
}
- (void)test_ks_URLByRemovingDuplicateSlashes
{
NSURL *in1 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1//level2/index.html;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *in2 = [NSURL URLWithString:@"http://www.karelia.com/////////////index.html"];
NSURL *in3 = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
NSURL *in4 = [NSURL URLWithString:@""];
NSURL *can1 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2/index.html;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
NSURL *can2 = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
NSURL *can3 = [NSURL URLWithString:@"http://www.karelia.com/index.html"];
NSURL *can4 = [NSURL URLWithString:@""];
NSURL *out1 = [in1 ks_URLByRemovingDuplicateSlashes];
NSURL *out2 = [in2 ks_URLByRemovingDuplicateSlashes];
NSURL *out3 = [in3 ks_URLByRemovingDuplicateSlashes];
NSURL *out4 = [in4 ks_URLByRemovingDuplicateSlashes];
STAssertTrue([[out1 absoluteString] isEqualToString:[can1 absoluteString]], @"out1 failed");
STAssertTrue([[out2 absoluteString] isEqualToString:[can2 absoluteString]], @"out2 failed");
STAssertTrue([[out3 absoluteString] isEqualToString:[can3 absoluteString]], @"out3 failed");
STAssertTrue([[out4 absoluteString] isEqualToString:[can4 absoluteString]], @"out4 failed");
}
//- (void)test_ks_URLByRemovingEmptyQuery
//{
// NSURL *in1 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2/index.html;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
// NSURL *in2 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2/index.html;parameter1=arg1;parameter2=arg2?#anchor1"];
// NSURL *in3 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2/index.html;parameter1=arg1;parameter2=arg2?"];
// NSURL *can1 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2/index.html;parameter1=arg1;parameter2=arg2?queryparm1=queryarg1&queryparm2=queryarg2#anchor1"];
// NSURL *can2 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2/index.html;parameter1=arg1;parameter2=arg2#anchor1"];
// NSURL *can3 = [NSURL URLWithString:@"http://username:[email protected]:8888/level1/level2/index.html;parameter1=arg1;parameter2=arg2"];
//
// NSURL *out1 = [in1 ks_URLByRemovingEmptyQuery];
// NSURL *out2 = [in2 ks_URLByRemovingEmptyQuery];
// NSURL *out3 = [in3 ks_URLByRemovingEmptyQuery];
// STAssertTrue([[out1 absoluteString] isEqualToString:[can1 absoluteString]], @"out1 failed");
// STAssertTrue([[out2 absoluteString] isEqualToString:[can2 absoluteString]], @"out2 failed");
// STAssertTrue([[out3 absoluteString] isEqualToString:[can3 absoluteString]], @"out3 failed");
//}
@end