ASINetworkQueueTests.m
41.3 KB
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
//
// ASINetworkQueueTests.m
// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
//
// Created by Ben Copsey on 08/11/2008.
// Copyright 2008 All-Seeing Interactive. All rights reserved.
//
#import "ASINetworkQueueTests.h"
#import "ASIHTTPRequest.h"
#import "ASINetworkQueue.h"
#import "ASIFormDataRequest.h"
#import <SystemConfiguration/SystemConfiguration.h>
/*
IMPORTANT
Code that appears in these tests is not for general purpose use.
You should not use [networkQueue waitUntilAllOperationsAreFinished] or [[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]] in your own software.
They are used here to force a queue to operate synchronously to simplify writing the tests.
IMPORTANT
*/
// Used for subclass test
@interface ASINetworkQueueSubclass : ASINetworkQueue {}
@end
@implementation ASINetworkQueueSubclass
@end
@implementation ASINetworkQueueTests
- (void)testDelegateAuthenticationCredentialsReuse
{
complete = NO;
authenticationPromptCount = 0;
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDelegate:self];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
NSDictionary *userInfo = [NSDictionary dictionaryWithObject:@"reuse" forKey:@"test"];
int i;
for (i=0; i<5; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/basic-authentication"]];
[request setUserInfo:userInfo];
[networkQueue addOperation:request];
}
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
}
- (void)testDelegateMethods
{
[self performSelectorOnMainThread:@selector(runDelegateMethodsTest) withObject:nil waitUntilDone:YES];
}
- (void)runDelegateMethodsTest
{
started = NO;
finished = NO;
failed = NO;
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDelegate:self];
[networkQueue setRequestDidStartSelector:@selector(delegateTestStarted:)];
[networkQueue setRequestDidFinishSelector:@selector(delegateTestFinished:)];
[networkQueue setRequestDidReceiveResponseHeadersSelector:@selector(delegateTestResponseHeaders:)];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com"]];
[networkQueue addOperation:request];
[networkQueue go];
[networkQueue waitUntilAllOperationsAreFinished];
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:2]];
GHAssertTrue(started,@"Failed to call the delegate method when the request started");
GHAssertTrue(receivedResponseHeaders,@"Failed to call the delegate method when the request received response headers");
GHAssertTrue(finished,@"Failed to call the delegate method when the request finished");
networkQueue = [ASINetworkQueue queue];
[networkQueue setDelegate:self];
[networkQueue setRequestDidFailSelector:@selector(delegateTestFailed:)];
request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/the_great_american_novel_%28abridged%29.txt"]];
[request setTimeOutSeconds:0.01];
[networkQueue addOperation:request];
[networkQueue go];
[networkQueue waitUntilAllOperationsAreFinished];
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:2]];
GHAssertTrue(failed,@"Failed to call the delegate method when the request failed");
}
- (void)delegateTestStarted:(ASIHTTPRequest *)request
{
started = YES;
}
- (void)delegateTestResponseHeaders:(ASIHTTPRequest *)request
{
GHAssertNotNil([request responseHeaders],@"Called delegateTestResponseHeaders: when we have no headers");
receivedResponseHeaders = YES;
}
- (void)delegateTestFinished:(ASIHTTPRequest *)request
{
finished = YES;
}
- (void)delegateTestFailed:(ASIHTTPRequest *)request
{
failed = YES;
}
- (void)testDownloadProgress
{
complete = NO;
progress = 0;
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDownloadProgressDelegate:self];
[networkQueue setDelegate:self];
[networkQueue setShowAccurateProgress:NO];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
int i;
for (i=0; i<5; i++) {
NSURL *url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/i/logo.png"] autorelease];
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[networkQueue addOperation:request];
}
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:1]];
BOOL success = (progress == 1.0);
GHAssertTrue(success,@"Failed to increment progress properly");
//Now test again with accurate progress
complete = NO;
progress = 0;
[networkQueue cancelAllOperations];
[networkQueue setShowAccurateProgress:YES];
for (i=0; i<5; i++) {
NSURL *url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/i/logo.png"] autorelease];
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[networkQueue addOperation:request];
}
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
success = (progress == 1.0);
GHAssertTrue(success,@"Failed to increment progress properly");
}
- (void)testAccurateProgressFallsBackToSimpleProgress
{
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDownloadProgressDelegate:self];
[networkQueue setDelegate:self];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
// Test accurate progress falls back to simpler progress when responses have no content-length header
complete = NO;
progress = 0;
[networkQueue setShowAccurateProgress:YES];
int i;
for (i=0; i<5; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com"]];
[request setAllowCompressedResponse:NO]; // A bit hacky - my server will send a chunked response (without content length) when we don't specify that we accept gzip
[networkQueue addOperation:request];
}
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
BOOL success = (progress == 1.0);
GHAssertTrue(success,@"Failed to increment progress properly");
[networkQueue reset];
[networkQueue setDownloadProgressDelegate:self];
[networkQueue setDelegate:self];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
// This test will request gzipped content, but the content-length header we get on the HEAD request will be wrong, ASIHTTPRequest should fall back to simple progress
// This is to workaround an issue Apache has with HEAD requests for dynamically generated content when accepting gzip - it returns the content-length of a gzipped empty body
complete = NO;
progress = 0;
[networkQueue setShowAccurateProgress:YES];
for (i=0; i<5; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com"]];
[networkQueue addOperation:request];
}
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
success = (progress == 1.0);
GHAssertTrue(success,@"Failed to increment progress properly");
}
- (void)testAddingRequestsToQueueWhileInProgress
{
[[self addMoreRequestsQueue] reset];
[self setAddMoreRequestsQueue:[ASINetworkQueue queue]];
[[self addMoreRequestsQueue] setDownloadProgressDelegate:self];
[[self addMoreRequestsQueue] setDelegate:self];
[[self addMoreRequestsQueue] setShowAccurateProgress:YES];
[[self addMoreRequestsQueue]setQueueDidFinishSelector:@selector(addMoreRequestsQueueFinished:)];
requestsFinishedCount = 0;
complete = NO;
progress = 0;
int i;
for (i=0; i<5; i++) {
NSURL *url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/the_great_american_novel_(abridged).txt"] autorelease];
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[request setDelegate:self];
[request setDidFinishSelector:@selector(addedRequestComplete:)];
[[self addMoreRequestsQueue] addOperation:request];
}
[[self addMoreRequestsQueue] go];
// Add another request to the queue each second for 5 seconds
addedRequests = 0;
for (i=0; i<5; i++) {
[self performSelector:@selector(addAnotherRequest) withObject:nil afterDelay:i];
}
while (addedRequests < 5) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:1]];
}
// Must wait or subsequent tests will reset our progress
[[self addMoreRequestsQueue] waitUntilAllOperationsAreFinished];
}
- (void)addAnotherRequest
{
addedRequests++;
NSURL *url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/the_great_american_novel_(abridged).txt"] autorelease];
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[request setDelegate:self];
[request setDidFinishSelector:@selector(addedRequestComplete:)];
[[self addMoreRequestsQueue] addOperation:request];
}
- (void)addedRequestComplete:(ASIHTTPRequest *)request
{
requestsFinishedCount++;
}
- (void)addMoreRequestsQueueFinished:(ASINetworkQueue *)queue
{
// This might get called multiple times if the queue finishes before all the requests can be added
// So we'll make sure they're all done first
while (requestsFinishedCount < 10) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:1.0]];
}
BOOL success = (progress == 1.0);
GHAssertTrue(success,@"Failed to increment progress properly");
// The file we downloaded 10 times is 130050 bytes long
success = ([queue totalBytesToDownload] == 130050*10);
GHAssertTrue(success,@"Failed to increment total download size properly");
}
- (void)uploadFailed:(ASIHTTPRequest *)request
{
GHFail(@"Failed to upload some data, cannot continue with this test");
}
- (void)testUploadProgress
{
complete = NO;
progress = 0;
ASINetworkQueue *networkQueue = [[[ASINetworkQueue alloc] init] autorelease];
[networkQueue setUploadProgressDelegate:self];
[networkQueue setDelegate:self];
[networkQueue setShowAccurateProgress:NO];
[networkQueue setRequestDidFailSelector:@selector(uploadFailed:)];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com/ignore"];
int fileSizes[3] = {16,64,257};
int i;
for (i=0; i<3; i++) {
NSData *data = [[[NSMutableData alloc] initWithLength:fileSizes[i]*1024] autorelease];
NSString *path = [[self filePathForTemporaryTestFiles] stringByAppendingPathComponent:[NSString stringWithFormat:@"file%hi",i]];
[data writeToFile:path atomically:NO];
ASIFormDataRequest *request = [[[ASIFormDataRequest alloc] initWithURL:url] autorelease];
[request setFile:path forKey:@"file"];
[networkQueue addOperation:request];
}
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:1]];
BOOL success = (progress == 1.0f);
GHAssertTrue(success,@"Failed to increment progress properly");
//Now test again with accurate progress
complete = NO;
progress = 0;
[networkQueue reset];
[networkQueue setUploadProgressDelegate:self];
[networkQueue setDelegate:self];
[networkQueue setShowAccurateProgress:NO];
[networkQueue setRequestDidFailSelector:@selector(uploadFailed:)];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
[networkQueue setShowAccurateProgress:YES];
for (i=0; i<3; i++) {
NSData *data = [[[NSMutableData alloc] initWithLength:fileSizes[i]*1024] autorelease];
NSString *path = [[self filePathForTemporaryTestFiles] stringByAppendingPathComponent:[NSString stringWithFormat:@"file%hi",i]];
[data writeToFile:path atomically:NO];
ASIFormDataRequest *request = [[[ASIFormDataRequest alloc] initWithURL:url] autorelease];
[request setFile:path forKey:@"file"];
[networkQueue addOperation:request];
}
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:1]];
success = (progress == 1.0f);
GHAssertTrue(success,@"Failed to increment progress properly");
}
// Will be called on Mac OS
- (void)setDoubleValue:(double)newProgress;
{
progress = (float)newProgress;
}
// Will be called on iPhone OS
- (void)setProgress:(float)newProgress;
{
progress = newProgress;
}
- (void)testFailure
{
complete = NO;
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDelegate:self];
[networkQueue setRequestDidFailSelector:@selector(requestFailed:)];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
[networkQueue setShouldCancelAllRequestsOnFailure:NO];
NSURL *url;
url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/first"] autorelease];
ASIHTTPRequest *request1 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[networkQueue addOperation:request1];
url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/second"] autorelease];
ASIHTTPRequest *request2 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[networkQueue addOperation:request2];
url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/third"] autorelease];
ASIHTTPRequest *request3 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[networkQueue addOperation:request3];
url = [[[NSURL alloc] initWithString:@""] autorelease];
requestThatShouldFail = [[ASIHTTPRequest alloc] initWithURL:url];
[networkQueue addOperation:requestThatShouldFail];
url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/broken"] autorelease];
ASIHTTPRequest *request5 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[networkQueue addOperation:request5];
[networkQueue go];
[networkQueue waitUntilAllOperationsAreFinished];
BOOL success;
success = ([request1 error] == nil);
GHAssertTrue(success,@"Request 1 failed");
success = [[request1 responseString] isEqualToString:@"This is the expected content for the first string"];
GHAssertTrue(success,@"Failed to download the correct data for request 1");
success = ([request2 error] == nil);
GHAssertTrue(success,@"Request 2 failed");
success = [[request2 responseString] isEqualToString:@"This is the expected content for the second string"];
GHAssertTrue(success,@"Failed to download the correct data for request 2");
success = ([request3 error] == nil);
GHAssertTrue(success,@"Request 3 failed");
success = [[request3 responseString] isEqualToString:@"This is the expected content for the third string"];
GHAssertTrue(success,@"Failed to download the correct data for request 3");
success = ([requestThatShouldFail error] != nil);
GHAssertTrue(success,@"Request 4 succeed when it should have failed");
success = ([request5 error] == nil);
GHAssertTrue(success,@"Request 5 failed");
success = ([request5 responseStatusCode] == 404);
GHAssertTrue(success,@"Failed to obtain the correct status code for request 5");
[requestThatShouldFail release];
}
- (void)testFailureCancelsOtherRequests
{
complete = NO;
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDelegate:self];
[networkQueue setRequestDidFailSelector:@selector(requestFailedCancellingOthers:)];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
NSURL *url;
url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/first"] autorelease];
ASIHTTPRequest *request1 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[networkQueue addOperation:request1];
url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/second"] autorelease];
ASIHTTPRequest *request2 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[networkQueue addOperation:request2];
url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/third"] autorelease];
ASIHTTPRequest *request3 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[networkQueue addOperation:request3];
url = [[[NSURL alloc] initWithString:@""] autorelease];
requestThatShouldFail = [[ASIHTTPRequest alloc] initWithURL:url];
[networkQueue addOperation:requestThatShouldFail];
[networkQueue go];
[networkQueue waitUntilAllOperationsAreFinished];
[requestThatShouldFail release];
}
- (void)requestFailedCancellingOthers:(ASIHTTPRequest *)request
{
complete = YES;
}
- (void)requestFailed:(ASIHTTPRequest *)request
{
BOOL success = (request == requestThatShouldFail);
GHAssertTrue(success,@"Wrong request failed");
}
- (void)queueFinished:(ASINetworkQueue *)queue
{
complete = YES;
}
- (void)testProgressWithAuthentication
{
complete = NO;
progress = 0;
// Make sure we don't re-use credentials from previous tests
[ASIHTTPRequest clearSession];
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDownloadProgressDelegate:self];
[networkQueue setDelegate:self];
[networkQueue setShowAccurateProgress:YES];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
[networkQueue setRequestDidFailSelector:@selector(requestFailedCancellingOthers:)];
NSURL *url;
url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/basic-authentication"] autorelease];
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[request setUserInfo:[NSDictionary dictionaryWithObject:@"Don't bother" forKey:@"Shall I return any credentials?"]];
[networkQueue addOperation:request];
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
NSError *error = [request error];
GHAssertNotNil(error,@"The HEAD request failed, but it didn't tell the main request to fail");
complete = NO;
progress = 0;
networkQueue = [ASINetworkQueue queue];
[networkQueue setDownloadProgressDelegate:self];
[networkQueue setDelegate:self];
[networkQueue setShowAccurateProgress:YES];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
[networkQueue setRequestDidFailSelector:@selector(requestFailed:)];
request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[request setUserInfo:[NSDictionary dictionaryWithObject:@"Don't bother" forKey:@"Shall I return any credentials?"]];
[request setUsername:@"secret_username"];
[request setPassword:@"secret_password"];
[networkQueue addOperation:request];
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
error = [request error];
GHAssertNil(error,@"Failed to use authentication in a queue");
}
- (void)testDelegateAuthentication
{
complete = NO;
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDelegate:self];
[networkQueue setRequestDidFinishSelector:@selector(queueFinished:)];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/basic-authentication"]];
[networkQueue addOperation:request];
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
NSError *error = [request error];
GHAssertNil(error,@"Request failed");
}
- (void)authenticationNeededForRequest:(ASIHTTPRequest *)request
{
// We're using this method in multiple tests, so the code here is to act appropriatly for each one
if ([[[request userInfo] objectForKey:@"test"] isEqualToString:@"ntlm"]) {
authenticationPromptCount++;
if (authenticationPromptCount == 5) {
[request setUsername:@"king"];
[request setPassword:@"crown"];
[request setDomain:@"CASTLE.KINGDOM"];
}
[request retryUsingSuppliedCredentials];
} else if ([[[request userInfo] objectForKey:@"test"] isEqualToString:@"reuse"]) {
authenticationPromptCount++;
BOOL success = (authenticationPromptCount == 1);
GHAssertTrue(success,@"Delegate was asked for credentials more than once");
[request setUsername:@"secret_username"];
[request setPassword:@"secret_password"];
[request retryUsingSuppliedCredentials];
} else if ([[[request userInfo] objectForKey:@"test"] isEqualToString:@"delegate-auth-failure"]) {
authenticationPromptCount++;
if (authenticationPromptCount == 5) {
[request setUsername:@"secret_username"];
[request setPassword:@"secret_password"];
} else {
[request setUsername:@"wrong_username"];
[request setPassword:@"wrong_password"];
}
[request retryUsingSuppliedCredentials];
// testProgressWithAuthentication will set a userInfo dictionary on the main request, to tell us not to supply credentials
} else if (![request mainRequest] || ![[request mainRequest] userInfo]) {
[request setUsername:@"secret_username"];
[request setPassword:@"secret_password"];
[request retryUsingSuppliedCredentials];
} else {
[request cancelAuthentication];
}
}
- (void)requestFailedExpectedly:(ASIHTTPRequest *)request
{
request_didfail = YES;
BOOL success = (request == requestThatShouldFail);
GHAssertTrue(success,@"Wrong request failed");
}
- (void)requestSucceededUnexpectedly:(ASIHTTPRequest *)request
{
request_succeeded = YES;
}
//Connect to a port the server isn't listening on, and the read stream won't be created (Test + Fix contributed by Michael Krause)
- (void)testWithNoListener
{
request_succeeded = NO;
request_didfail = NO;
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDownloadProgressDelegate:self];
[networkQueue setDelegate:self];
[networkQueue setShowAccurateProgress:YES];
[networkQueue setRequestDidFailSelector:@selector(requestFailedExpectedly:)];
[networkQueue setRequestDidFinishSelector:@selector(requestSucceededUnexpectedly:)];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
NSURL *url;
url = [[[NSURL alloc] initWithString:@"http://allseeing-i.com:9999/i/logo.png"] autorelease];
requestThatShouldFail = [[ASIHTTPRequest alloc] initWithURL:url];
[networkQueue addOperation:requestThatShouldFail];
[networkQueue go];
[networkQueue waitUntilAllOperationsAreFinished];
// Give the queue time to notify us
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:1]];
// This test may fail if you are using a proxy and it returns a page when you try to connect to a bad port.
GHAssertTrue(!request_succeeded && request_didfail,@"Request to resource without listener succeeded but should have failed (May fail with proxy!)");
}
- (void)testPartialResume
{
complete = NO;
progress = 0;
NSString *temporaryPath = [[self filePathForTemporaryTestFiles] stringByAppendingPathComponent:@"the_great_american_novel_%28young_readers_edition%29.txt.download"];
if ([[NSFileManager defaultManager] fileExistsAtPath:temporaryPath]) {
[[NSFileManager defaultManager] removeItemAtPath:temporaryPath error:nil];
}
NSString *downloadPath = [[self filePathForTemporaryTestFiles] stringByAppendingPathComponent:@"the_great_american_novel_%28young_readers_edition%29.txt"];
if ([[NSFileManager defaultManager] fileExistsAtPath:downloadPath]) {
[[NSFileManager defaultManager] removeItemAtPath:downloadPath error:nil];
}
NSURL *downloadURL = [NSURL URLWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/the_great_american_novel_%28young_readers_edition%29.txt"];
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setShouldCancelAllRequestsOnFailure:NO];
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:downloadURL] autorelease];
[request setDownloadDestinationPath:downloadPath];
[request setTemporaryFileDownloadPath:temporaryPath];
[request setAllowResumeForFileDownloads:YES];
[networkQueue addOperation:request];
[networkQueue go];
// Run until we have received a bit of data
while (1) {
usleep(250000);
if ([request error] || [request contentLength]) {
break;
}
}
// Ok, let's tell the queue to stop
[networkQueue reset];
[networkQueue setDownloadProgressDelegate:self];
[networkQueue setShowAccurateProgress:YES];
[networkQueue setDelegate:self];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
complete = NO;
progress = 0;
NSError *err = nil;
unsigned long long downloadedSoFar = [[[NSFileManager defaultManager] attributesOfItemAtPath:temporaryPath error:&err] fileSize];
GHAssertNil(err,@"Got an error obtaining attributes on the file, this shouldn't happen");
BOOL success = (downloadedSoFar > 0);
GHAssertTrue(success,@"Failed to download part of the file, so we can't proceed with this test");
request = [[[ASIHTTPRequest alloc] initWithURL:downloadURL] autorelease];
[request setDownloadDestinationPath:downloadPath];
[request setTemporaryFileDownloadPath:temporaryPath];
[request setAllowResumeForFileDownloads:YES];
[networkQueue addOperation:request];
[networkQueue go];
[networkQueue waitUntilAllOperationsAreFinished];
unsigned long long amountDownloaded = [[[NSFileManager defaultManager] attributesOfItemAtPath:downloadPath error:&err] fileSize];
GHAssertNil(err,@"Got an error obtaining attributes on the file, this shouldn't happen");
success = (amountDownloaded == 1036935);
GHAssertTrue(success,@"Failed to complete the download");
success = (progress == 1.0f);
GHAssertTrue(success,@"Failed to increment progress properly");
//Test the temporary file cleanup
downloadURL = [NSURL URLWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/the_great_american_novel.txt"];
complete = NO;
progress = 0;
networkQueue = [ASINetworkQueue queue];
[networkQueue setDownloadProgressDelegate:self];
[networkQueue setShowAccurateProgress:YES];
[networkQueue setDelegate:self];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
request = [[[ASIHTTPRequest alloc] initWithURL:downloadURL] autorelease];
[request setDownloadDestinationPath:downloadPath];
[request setTemporaryFileDownloadPath:temporaryPath];
[request setAllowResumeForFileDownloads:YES];
[networkQueue addOperation:request];
[networkQueue go];
// Run until we have received a bit of data
while (1) {
usleep(1000000);
if ([request error] || [request contentLength]) {
break;
}
}
[networkQueue cancelAllOperations];
success = ([[NSFileManager defaultManager] fileExistsAtPath:temporaryPath]);
GHAssertTrue(success,@"Temporary download file doesn't exist");
[request removeTemporaryDownloadFile];
success = (![[NSFileManager defaultManager] fileExistsAtPath:temporaryPath]);
GHAssertTrue(success,@"Temporary download file should have been deleted");
}
- (void)stopQueue:(id)sender
{
complete = YES;
}
// Not strictly an ASINetworkQueue test, but queue related
// As soon as one request finishes or fails, we'll cancel the others and ensure that no requests are both finished and failed
- (void)testImmediateCancel
{
[self setFailedRequests:[NSMutableArray array]];
[self setFinishedRequests:[NSMutableArray array]];
[self setImmediateCancelQueue:[[[NSOperationQueue alloc] init] autorelease]];
int i;
for (i=0; i<10; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com"]];
[request setDelegate:self];
[request setDidFailSelector:@selector(immediateCancelFail:)];
[request setDidFinishSelector:@selector(immediateCancelFinish:)];
[[self immediateCancelQueue] addOperation:request];
}
}
- (void)immediateCancelFail:(ASIHTTPRequest *)request
{
if ([[self failedRequests] containsObject:request]) {
GHFail(@"A request called its fail delegate method twice");
}
if ([[self finishedRequests] containsObject:request]) {
GHFail(@"A request that had already finished called its fail delegate method");
}
[[self failedRequests] addObject:request];
if ([[self failedRequests] count]+[[self finishedRequests] count] > 25) {
GHFail(@"We got more than 25 delegate fail/finish calls - this shouldn't happen!");
}
[[self immediateCancelQueue] cancelAllOperations];
}
- (void)immediateCancelFinish:(ASIHTTPRequest *)request
{
if ([[self finishedRequests] containsObject:request]) {
GHFail(@"A request called its finish delegate method twice");
}
if ([[self failedRequests] containsObject:request]) {
GHFail(@"A request that had already failed called its finish delegate method");
}
[[self finishedRequests] addObject:request];
if ([[self failedRequests] count]+[[self finishedRequests] count] > 25) {
GHFail(@"We got more than 25 delegate fail/finish calls - this shouldn't happen!");
}
[[self immediateCancelQueue] cancelAllOperations];
}
// Ensure class convenience constructor returns an instance of our subclass
- (void)testSubclass
{
ASINetworkQueueSubclass *instance = [ASINetworkQueueSubclass queue];
BOOL success = [instance isKindOfClass:[ASINetworkQueueSubclass class]];
GHAssertTrue(success,@"Convenience constructor failed to return an instance of the correct class");
}
// Test releasing the queue in a couple of ways - the purpose of these tests is really just to ensure we don't crash
- (void)testQueueReleaseOnRequestComplete
{
[[self releaseTestQueue] cancelAllOperations];
[self setReleaseTestQueue:[ASINetworkQueue queue]];
int i;
for (i=0; i<5; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com"]];
[request setDelegate:self];
[request setDidFailSelector:@selector(fail:)];
[request setDidFinishSelector:@selector(finish:)];
[[self releaseTestQueue] addOperation:request];
}
}
- (void)fail:(ASIHTTPRequest *)request
{
if ([[self releaseTestQueue] requestsCount] == 0) {
[self setReleaseTestQueue:nil];
}
}
- (void)finish:(ASIHTTPRequest *)request
{
if ([[self releaseTestQueue] requestsCount] == 0) {
[self setReleaseTestQueue:nil];
}
}
- (void)testQueueReleaseOnQueueComplete
{
[[self releaseTestQueue] cancelAllOperations];
[self setReleaseTestQueue:[ASINetworkQueue queue]];
[[self releaseTestQueue] setDelegate:self];
int i;
for (i=0; i<5; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com"]];
[[self releaseTestQueue] addOperation:request];
}
}
- (void)queueComplete:(ASINetworkQueue *)queue
{
[self setReleaseTestQueue:nil];
}
- (void)testMultipleDownloadsThrottlingBandwidth
{
complete = NO;
[ASIHTTPRequest setMaxBandwidthPerSecond:0];
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDelegate:self];
[networkQueue setRequestDidFailSelector:@selector(throttleFail:)];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
// We'll test first without throttling
int i;
for (i=0; i<5; i++) {
// This image is around 18KB in size, for 90KB total download size
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/i/logo.png"]];
[networkQueue addOperation:request];
}
NSDate *date = [NSDate date];
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
NSTimeInterval interval =[date timeIntervalSinceNow];
BOOL success = (interval > -6);
GHAssertTrue(success,@"Downloaded the data too slowly - either this is a bug, or your internet connection is too slow to run this test (must be able to download 90KB in less than 6 seconds, without throttling)");
// Reset the queue
[networkQueue reset];
[networkQueue setDelegate:self];
[networkQueue setRequestDidFailSelector:@selector(throttleFail:)];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
complete = NO;
// Now we'll test with throttling
[ASIHTTPRequest setMaxBandwidthPerSecond:ASIWWANBandwidthThrottleAmount];
for (i=0; i<5; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/i/logo.png"]];
[networkQueue addOperation:request];
}
date = [NSDate date];
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
[ASIHTTPRequest setMaxBandwidthPerSecond:0];
interval =[date timeIntervalSinceNow];
success = (interval < -6);
GHAssertTrue(success,@"Failed to throttle upload");
}
- (void)testMultipleUploadsThrottlingBandwidth
{
complete = NO;
[ASIHTTPRequest setMaxBandwidthPerSecond:0];
ASINetworkQueue *networkQueue = [ASINetworkQueue queue];
[networkQueue setDelegate:self];
[networkQueue setRequestDidFailSelector:@selector(throttleFail:)];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
// Create a 16KB request body
NSData *data = [[[NSMutableData alloc] initWithLength:16*1024] autorelease];
// We'll test first without throttling
int i;
for (i=0; i<10; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/ignore"]];
[request appendPostData:data];
[networkQueue addOperation:request];
}
NSDate *date = [NSDate date];
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
NSTimeInterval interval =[date timeIntervalSinceNow];
BOOL success = (interval > -10);
GHAssertTrue(success,@"Uploaded the data too slowly - either this is a bug, or your internet connection is too slow to run this test (must be able to upload 160KB in less than 10 seconds, without throttling)");
// Reset the queue
[networkQueue reset];
[networkQueue setDelegate:self];
[networkQueue setRequestDidFailSelector:@selector(throttleFail:)];
[networkQueue setQueueDidFinishSelector:@selector(queueFinished:)];
complete = NO;
// Now we'll test with throttling
[ASIHTTPRequest setMaxBandwidthPerSecond:ASIWWANBandwidthThrottleAmount];
for (i=0; i<10; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/ignore"]];
[request appendPostData:data];
[networkQueue addOperation:request];
}
date = [NSDate date];
[networkQueue go];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.25]];
}
[ASIHTTPRequest setMaxBandwidthPerSecond:0];
interval =[date timeIntervalSinceNow];
success = (interval < -10);
GHAssertTrue(success,@"Failed to throttle upload");
}
- (void)throttleFail:(ASIHTTPRequest *)request
{
GHAssertTrue(NO,@"Request failed, cannot continue with this test");
[[request queue] cancelAllOperations];
}
// Test for a bug that used to exist where the temporary file used to store the request body would be removed when authentication failed
- (void)testPOSTWithAuthentication
{
[[self postQueue] cancelAllOperations];
[self setPostQueue:[ASINetworkQueue queue]];
[[self postQueue] setRequestDidFinishSelector:@selector(postDone:)];
[[self postQueue] setDelegate:self];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/ASIHTTPRequest/Tests/post_with_authentication"]];
[request setPostValue:@"This is the first item" forKey:@"first"];
[request setData:[@"This is the second item" dataUsingEncoding:NSUTF8StringEncoding] forKey:@"second"];
[[self postQueue] addOperation:request];
[[self postQueue] go];
}
- (void)postDone:(ASIHTTPRequest *)request
{
BOOL success = [[request responseString] isEqualToString:@"This is the first item\r\nThis is the second item"];
GHAssertTrue(success,@"Didn't post correct data");
}
- (void)testDelegateAuthenticationFailure
{
[[self postQueue] cancelAllOperations];
[self setPostQueue:[ASINetworkQueue queue]];
[[self postQueue] setRequestDidFinishSelector:@selector(postDone:)];
[[self postQueue] setDelegate:self];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/ASIHTTPRequest/Tests/post_with_authentication"]];
[request setPostValue:@"This is the first item" forKey:@"first"];
[request setData:[@"This is the second item" dataUsingEncoding:NSUTF8StringEncoding] forKey:@"second"];
[request setUserInfo:[NSDictionary dictionaryWithObject:@"delegate-auth-failure" forKey:@"test"]];
[[self postQueue] addOperation:request];
[[self postQueue] go];
}
- (void)testNTLMMultipleFailure
{
authenticationPromptCount = 0;
[ASIHTTPRequest clearSession];
[[self testNTLMQueue] cancelAllOperations];
[self setTestNTLMQueue:[ASINetworkQueue queue]];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://allseeing-i.com/ASIHTTPRequest/tests/pretend-ntlm-handshake"]];
[request setUseKeychainPersistence:NO];
[request setUseSessionPersistence:NO];
[request setUserInfo:[NSDictionary dictionaryWithObject:@"ntlm" forKey:@"test"]];
[[self testNTLMQueue] setRequestDidFinishSelector:@selector(ntlmDone:)];
[[self testNTLMQueue] setRequestDidFailSelector:@selector(ntlmFailed:)];
[[self testNTLMQueue] setDelegate:self];
[[self testNTLMQueue] addOperation:request];
[[self testNTLMQueue] go];
}
- (void)ntlmFailed:(ASIHTTPRequest *)request
{
GHFail(@"Failed to provide NTLM credentials (error was :%@)",[request error]);
}
- (void)ntlmDone:(ASIHTTPRequest *)request
{
GHAssertNil([request error],@"Got an error when credentials were supplied");
// NSProcessInfo returns a lower case string for host name, while CFNetwork will send a mixed case string for host name, so we'll compare by lowercasing everything
NSString *hostName = [[NSProcessInfo processInfo] hostName];
NSString *expectedResponse = [[NSString stringWithFormat:@"You are %@ from %@/%@",@"king",@"Castle.Kingdom",hostName] lowercaseString];
BOOL success = [[[request responseString] lowercaseString] isEqualToString:expectedResponse];
GHAssertTrue(success,@"Failed to send credentials correctly? (Expected: '%@', got '%@')",expectedResponse,[[request responseString] lowercaseString]);
}
- (void)testHEADFailure
{
[self performSelectorOnMainThread:@selector(runHEADFailureTest) withObject:nil waitUntilDone:YES];
}
// Test for a bug where failing head requests would not notify the original request's delegate of the failure
- (void)runHEADFailureTest
{
headFailed = NO;
ASINetworkQueue *queue = [ASINetworkQueue queue];
[queue setShowAccurateProgress:YES];
[queue setDelegate:self];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://999.123"]];
[request setDelegate:self];
[request setDidFailSelector:@selector(HEADFail:)];
[queue addOperation:request];
[queue go];
[queue waitUntilAllOperationsAreFinished];
// Hope the request gets around to notifying the delegate in time
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:2]];
GHAssertTrue(headFailed,@"Failed to notify the request's delegate");
}
- (void)HEADFail:(ASIHTTPRequest *)request
{
headFailed = YES;
}
- (void)testCopy
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
ASINetworkQueue *queue = [ASINetworkQueue queue];
ASINetworkQueue *queue2 = [queue copy];
GHAssertNotNil(queue2,@"Failed to create a copy");
[pool release];
BOOL success = ([queue2 retainCount] > 0);
GHAssertTrue(success,@"Failed to create a retained copy");
[queue2 release];
}
// Test for: http://allseeing-i.lighthouseapp.com/projects/27881/tickets/43-asinetworkqueue-and-setshouldcancelallrequestsonfailure-yes-will-not-trigger-queuefinished-selector-with-multiple-requests
- (void)testQueueFinishedCalledOnFailure
{
[self performSelectorOnMainThread:@selector(runTestQueueFinishedCalledOnFailureTest) withObject:nil waitUntilDone:YES];
}
- (void)runTestQueueFinishedCalledOnFailureTest
{
complete = NO;
ASINetworkQueue *networkQueue = [[ASINetworkQueue queue] retain];
[networkQueue setDelegate:self];
[networkQueue setQueueDidFinishSelector:@selector(queueFailureFinish:)];
NSUInteger i;
for (i=0; i<10; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://there-is-no-spoon.allseeing-i.com"]];
[networkQueue addOperation:request];
}
[networkQueue go];
NSDate *dateStarted = [NSDate date];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.5]];
if ([dateStarted timeIntervalSinceNow] < -10) {
break;
}
}
GHAssertTrue(complete,@"Failed to call queue finished delegate method");
queueFinishedCallCount = 0;
complete = NO;
[networkQueue release];
networkQueue = [[ASINetworkQueue queue] retain];
[networkQueue setDelegate:self];
[networkQueue setQueueDidFinishSelector:@selector(queueFailureFinishCallOnce:)];
[networkQueue setMaxConcurrentOperationCount:1];
for (i=0; i<10; i++) {
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://there-is-no-spoon.allseeing-i.com"]];
[networkQueue addOperation:request];
}
[networkQueue go];
dateStarted = [NSDate date];
while (!complete) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:2.0f]];
if ([dateStarted timeIntervalSinceNow] < -10) {
break;
}
}
BOOL success = (queueFinishedCallCount == 1);
GHAssertTrue(success,@"Called the queue finish method more/less than once");
}
- (void)queueFailureFinishCallOnce:(ASINetworkQueue *)queue
{
queueFinishedCallCount++;
complete = YES;
}
- (void)queueFailureFinish:(ASINetworkQueue *)queue
{
complete = YES;
}
@synthesize immediateCancelQueue;
@synthesize failedRequests;
@synthesize finishedRequests;
@synthesize releaseTestQueue;
@synthesize cancelQueue;
@synthesize postQueue;
@synthesize testNTLMQueue;
@synthesize addMoreRequestsQueue;
@end