| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006 |
- // Copyright 2018 Google
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #import "GoogleUtilities/Example/Tests/Network/third_party/GTMHTTPServer.h"
- #import <OCMock/OCMock.h>
- #import <XCTest/XCTest.h>
- #import "GoogleUtilities/NSData+zlib/Private/GULNSDataInternal.h"
- #import "GoogleUtilities/Network/Private/GULNetwork.h"
- #import "GoogleUtilities/Reachability/Private/GULReachabilityChecker.h"
- @interface GULNetwork ()
- - (void)reachability:(GULReachabilityChecker *)reachability
- statusChanged:(GULReachabilityStatus)status;
- @end
- @interface GULNetworkURLSession ()
- - (void)maybeRemoveTempFilesAtURL:(NSURL *)tempFile expiringTime:(NSTimeInterval)expiringTime;
- @end
- @interface GULNetworkTest : XCTestCase <GULNetworkReachabilityDelegate>
- @end
- @implementation GULNetworkTest {
- dispatch_queue_t _backgroundQueue;
- GULNetwork *_network;
- /// Fake Server.
- GTMHTTPServer *_httpServer;
- GTMHTTPRequestMessage *_request;
- int _statusCode;
- // For network reachability test.
- BOOL _fakeNetworkIsReachable;
- BOOL _currentNetworkStatus;
- GULReachabilityStatus _fakeReachabilityStatus;
- }
- #pragma mark - Setup and teardown
- - (void)setUp {
- [super setUp];
- _fakeNetworkIsReachable = YES;
- _statusCode = 200;
- _request = nil;
- _httpServer = [[GTMHTTPServer alloc] initWithDelegate:self];
- // Start the server.
- NSError *error = nil;
- XCTAssertTrue([_httpServer start:&error], @"Failed to start HTTP server: %@", error);
- _network = [[GULNetwork alloc] init];
- _backgroundQueue = dispatch_queue_create("Test queue", DISPATCH_QUEUE_SERIAL);
- _request = nil;
- }
- - (void)tearDown {
- _network = nil;
- _backgroundQueue = nil;
- _request = nil;
- [_httpServer stop];
- _httpServer = nil;
- [super tearDown];
- }
- #pragma mark - Test reachability
- - (void)testReachability {
- _network.reachabilityDelegate = self;
- id reachability = [_network valueForKey:@"_reachability"];
- XCTAssertNotNil(reachability);
- id reachabilityMock = OCMPartialMock(reachability);
- [[[reachabilityMock stub] andCall:@selector(reachabilityStatus)
- onObject:self] reachabilityStatus];
- // Fake scenario with connectivity.
- _fakeNetworkIsReachable = YES;
- _fakeReachabilityStatus = kGULReachabilityViaWifi;
- [_network reachability:reachabilityMock statusChanged:[reachabilityMock reachabilityStatus]];
- XCTAssertTrue([_network isNetworkConnected]);
- XCTAssertEqual(_currentNetworkStatus, _fakeNetworkIsReachable);
- // Fake scenario without connectivity.
- _fakeNetworkIsReachable = NO;
- _fakeReachabilityStatus = kGULReachabilityNotReachable;
- [_network reachability:reachabilityMock statusChanged:[reachabilityMock reachabilityStatus]];
- XCTAssertFalse([_network isNetworkConnected]);
- XCTAssertEqual(_currentNetworkStatus, _fakeNetworkIsReachable);
- [reachabilityMock stopMocking];
- reachabilityMock = nil;
- }
- #pragma mark - Test POST Foreground
- - (void)testSessionNetwork_POST_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/2", _httpServer.port]];
- _statusCode = 200;
- [_network postURL:url
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNotNil(data);
- NSString *responseBody = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(responseBody, @"<html><body>Hello, World!</body></html>");
- [self verifyResponse:response error:error];
- [self verifyRequest];
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testSessionNetworkShouldReturnError_POST_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/3", _httpServer.port]];
- _statusCode = 500;
- [_network postURL:url
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(((NSHTTPURLResponse *)response).statusCode, 500);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testNilURLNSURLSession_POST_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- _statusCode = 200;
- [_network postURL:nil
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(error.code, GULErrorCodeNetworkInvalidURL);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testEmptyURLNSURLSession_POST_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- _statusCode = 200;
- [_network postURL:[NSURL URLWithString:@""]
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(error.code, GULErrorCodeNetworkInvalidURL);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testEmptyPayloadNSURLSession_POST_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [[NSData alloc] init];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/2", _httpServer.port]];
- _statusCode = 200;
- [_network postURL:url
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNil(error);
- XCTAssertNotNil(self->_request);
- XCTAssertEqualObjects([self->_request.URL absoluteString], [url absoluteString]);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testNilQueueNSURLSession_POST_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/1", _httpServer.port]];
- _statusCode = 200;
- [_network postURL:url
- payload:uncompressedData
- queue:nil
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- [self verifyResponse:response error:error];
- [self verifyRequest];
- [expectation fulfill];
- }];
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testHasRequestPendingNSURLSession_POST_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/hasRequestPending",
- _httpServer.port]];
- _statusCode = 200;
- [_network postURL:url
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- [self verifyResponse:response error:error];
- [self verifyRequest];
- XCTAssertFalse(self->_network.hasUploadInProgress,
- @"hasUploadInProgress must be false");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, @"hasUploadInProgress must be true");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- #pragma mark - Test POST Background
- - (void)testSessionNetwork_POST_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/2", _httpServer.port]];
- _statusCode = 200;
- [_network postURL:url
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNotNil(data);
- NSString *responseBody = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(responseBody, @"<html><body>Hello, World!</body></html>");
- [self verifyResponse:response error:error];
- [self verifyRequest];
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testSessionNetworkShouldReturnError_POST_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/3", _httpServer.port]];
- _statusCode = 500;
- [_network postURL:url
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(((NSHTTPURLResponse *)response).statusCode, 500);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testNilURLNSURLSession_POST_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- _statusCode = 200;
- [_network postURL:nil
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(error.code, GULErrorCodeNetworkInvalidURL);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testEmptyURLNSURLSession_POST_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- _statusCode = 200;
- [_network postURL:[NSURL URLWithString:@""]
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(error.code, GULErrorCodeNetworkInvalidURL);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testEmptyPayloadNSURLSession_POST_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [[NSData alloc] init];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/2", _httpServer.port]];
- _statusCode = 200;
- [_network postURL:url
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNil(error);
- XCTAssertNotNil(self->_request);
- XCTAssertEqualObjects([self->_request.URL absoluteString], [url absoluteString]);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testNilQueueNSURLSession_POST_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/1", _httpServer.port]];
- _statusCode = 200;
- [_network postURL:url
- payload:uncompressedData
- queue:nil
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- [self verifyResponse:response error:error];
- [self verifyRequest];
- [expectation fulfill];
- }];
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testHasRequestPendingNSURLSession_POST_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSData *uncompressedData = [@"Google" dataUsingEncoding:NSUTF8StringEncoding];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/hasRequestPending",
- _httpServer.port]];
- _statusCode = 200;
- [_network postURL:url
- payload:uncompressedData
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- [self verifyResponse:response error:error];
- [self verifyRequest];
- XCTAssertFalse(self->_network.hasUploadInProgress,
- @"hasUploadInProgress must be false");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, @"hasUploadInProgress must be true");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- #pragma mark - GET Methods Foreground
- - (void)testSessionNetworkAsync_GET_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/2", _httpServer.port]];
- _statusCode = 200;
- [_network getURL:url
- headers:nil
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNotNil(data);
- NSString *responseBody = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(responseBody, @"<html><body>Hello, World!</body></html>");
- XCTAssertNil(error);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testSessionNetworkShouldReturnError_GET_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/3", _httpServer.port]];
- _statusCode = 500;
- [_network getURL:url
- headers:nil
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(((NSHTTPURLResponse *)response).statusCode, 500);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testNilURLNSURLSession_GET_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- _statusCode = 200;
- [_network getURL:nil
- headers:nil
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(error.code, GULErrorCodeNetworkInvalidURL);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testEmptyURLNSURLSession_GET_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- _statusCode = 200;
- [_network getURL:[NSURL URLWithString:@""]
- headers:nil
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(error.code, GULErrorCodeNetworkInvalidURL);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testNilQueueNSURLSession_GET_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/1", _httpServer.port]];
- _statusCode = 200;
- [_network getURL:url
- headers:nil
- queue:nil
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNotNil(data);
- NSString *responseBody = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(responseBody, @"<html><body>Hello, World!</body></html>");
- XCTAssertNil(error);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testHasRequestPendingNSURLSession_GET_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/hasRequestPending",
- _httpServer.port]];
- _statusCode = 200;
- [_network getURL:url
- headers:nil
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNotNil(data);
- NSString *responseBody = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(responseBody, @"<html><body>Hello, World!</body></html>");
- XCTAssertNil(error);
- XCTAssertFalse(self->_network.hasUploadInProgress,
- @"hasUploadInProgress must be false");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, @"hasUploadInProgress must be true");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testHeaders_foreground {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/3", _httpServer.port]];
- _statusCode = 200;
- NSDictionary *headers = @{@"Version" : @"123"};
- [_network getURL:url
- headers:headers
- queue:_backgroundQueue
- usingBackgroundSession:NO
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNotNil(data);
- NSString *responseBody = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(responseBody, @"<html><body>Hello, World!</body></html>");
- XCTAssertNil(error);
- NSString *version = [self->_request.allHeaderFieldValues valueForKey:@"Version"];
- XCTAssertEqualObjects(version, @"123");
- [expectation fulfill];
- }];
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- #pragma mark - GET Methods Background
- - (void)testSessionNetworkAsync_GET_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/2", _httpServer.port]];
- _statusCode = 200;
- [_network getURL:url
- headers:nil
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNotNil(data);
- NSString *responseBody = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(responseBody, @"<html><body>Hello, World!</body></html>");
- XCTAssertNil(error);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testSessionNetworkShouldReturnError_GET_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/3", _httpServer.port]];
- _statusCode = 500;
- [_network getURL:url
- headers:nil
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(((NSHTTPURLResponse *)response).statusCode, 500);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testNilURLNSURLSession_GET_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- _statusCode = 200;
- [_network getURL:nil
- headers:nil
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(error.code, GULErrorCodeNetworkInvalidURL);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testEmptyURLNSURLSession_GET_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- _statusCode = 200;
- [_network getURL:[NSURL URLWithString:@""]
- headers:nil
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertEqual(error.code, GULErrorCodeNetworkInvalidURL);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testNilQueueNSURLSession_GET_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/1", _httpServer.port]];
- _statusCode = 200;
- [_network getURL:url
- headers:nil
- queue:nil
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNotNil(data);
- NSString *responseBody = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(responseBody, @"<html><body>Hello, World!</body></html>");
- XCTAssertNil(error);
- XCTAssertFalse(self->_network.hasUploadInProgress, "There must be no pending request");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, "There must be a pending request");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testHasRequestPendingNSURLSession_GET_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/hasRequestPending",
- _httpServer.port]];
- _statusCode = 200;
- [_network getURL:url
- headers:nil
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNotNil(data);
- NSString *responseBody = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(responseBody, @"<html><body>Hello, World!</body></html>");
- XCTAssertNil(error);
- XCTAssertFalse(self->_network.hasUploadInProgress,
- @"hasUploadInProgress must be false");
- [expectation fulfill];
- }];
- XCTAssertTrue(self->_network.hasUploadInProgress, @"hasUploadInProgress must be true");
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- - (void)testHeaders_background {
- XCTestExpectation *expectation = [self expectationWithDescription:@"Expect block is called"];
- NSURL *url =
- [NSURL URLWithString:[NSString stringWithFormat:@"http://localhost:%d/3", _httpServer.port]];
- _statusCode = 200;
- NSDictionary *headers = @{@"Version" : @"123"};
- [_network getURL:url
- headers:headers
- queue:_backgroundQueue
- usingBackgroundSession:YES
- completionHandler:^(NSHTTPURLResponse *response, NSData *data, NSError *error) {
- XCTAssertNotNil(data);
- NSString *responseBody = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(responseBody, @"<html><body>Hello, World!</body></html>");
- XCTAssertNil(error);
- NSString *version = [self->_request.allHeaderFieldValues valueForKey:@"Version"];
- XCTAssertEqualObjects(version, @"123");
- [expectation fulfill];
- }];
- // Wait a little bit so the server has enough time to respond.
- [self waitForExpectationsWithTimeout:10
- handler:^(NSError *error) {
- if (error) {
- XCTFail(@"Timeout Error: %@", error);
- }
- }];
- }
- #pragma mark - Test clean up files
- - (void)testRemoveExpiredFiles {
- NSError *writeError = nil;
- NSFileManager *fileManager = [NSFileManager defaultManager];
- GULNetworkURLSession *session = [[GULNetworkURLSession alloc]
- initWithNetworkLoggerDelegate:(id<GULNetworkLoggerDelegate>)_network];
- NSArray *paths =
- NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
- NSString *applicationSupportDirectory = paths.firstObject;
- NSArray *tempPathComponents = @[
- applicationSupportDirectory, kGULNetworkApplicationSupportSubdirectory,
- @"GULNetworkTemporaryDirectory"
- ];
- NSURL *folderURL = [NSURL fileURLWithPathComponents:tempPathComponents];
- [fileManager createDirectoryAtURL:folderURL
- withIntermediateDirectories:YES
- attributes:nil
- error:&writeError];
- NSURL *tempFile1 = [folderURL URLByAppendingPathComponent:@"FIRUpload_temp_123"];
- [self createTempFileAtURL:tempFile1];
- NSURL *tempFile2 = [folderURL URLByAppendingPathComponent:@"FIRUpload_temp_456"];
- [self createTempFileAtURL:tempFile2];
- XCTAssertTrue([fileManager fileExistsAtPath:tempFile1.path]);
- XCTAssertTrue([fileManager fileExistsAtPath:tempFile2.path]);
- NSDate *now =
- [[NSDate date] dateByAddingTimeInterval:1]; // Start mocking the clock to avoid flakiness.
- id mockDate = OCMStrictClassMock([NSDate class]);
- [[[mockDate stub] andReturn:now] date];
- // The file should not be removed since it is not expired yet.
- [session maybeRemoveTempFilesAtURL:folderURL expiringTime:20];
- XCTAssertTrue([fileManager fileExistsAtPath:tempFile1.path]);
- XCTAssertTrue([fileManager fileExistsAtPath:tempFile2.path]);
- [mockDate stopMocking];
- mockDate = nil;
- now = [[NSDate date] dateByAddingTimeInterval:100]; // Move forward in time 100s.
- mockDate = OCMStrictClassMock([NSDate class]);
- [[[mockDate stub] andReturn:now] date];
- [session maybeRemoveTempFilesAtURL:folderURL expiringTime:20];
- XCTAssertFalse([fileManager fileExistsAtPath:tempFile1.path]);
- XCTAssertFalse([fileManager fileExistsAtPath:tempFile2.path]);
- [mockDate stopMocking];
- mockDate = nil;
- }
- #pragma mark - Internal Methods
- - (void)createTempFileAtURL:(NSURL *)fileURL {
- // Create a dictionary and write it to file.
- NSDictionary *someContent = @{@"object" : @"key"};
- [someContent writeToURL:fileURL atomically:YES];
- }
- - (void)verifyResponse:(NSHTTPURLResponse *)response error:(NSError *)error {
- XCTAssertNil(error, @"Error is not expected");
- XCTAssertNotNil(response, @"Error is not expected");
- }
- - (void)verifyRequest {
- XCTAssertNotNil(_request, @"Request cannot be nil");
- // Test whether the request is compressed correctly.
- NSData *requestBody = [_request body];
- NSData *decompressedRequestData = [NSData gul_dataByInflatingGzippedData:requestBody error:NULL];
- NSString *requestString = [[NSString alloc] initWithData:decompressedRequestData
- encoding:NSUTF8StringEncoding];
- XCTAssertEqualObjects(requestString, @"Google", @"Request is not compressed correctly.");
- // The request has to be a POST.
- XCTAssertEqualObjects([_request method], @"POST", @"Request method has to be POST");
- // Content length has to be set correctly.
- NSString *contentLength = [_request.allHeaderFieldValues valueForKey:@"Content-Length"];
- XCTAssertEqualObjects(contentLength, @"26", @"Content Length is incorrect");
- NSString *contentEncoding = [_request.allHeaderFieldValues valueForKey:@"Content-Encoding"];
- XCTAssertEqualObjects(contentEncoding, @"gzip", @"Content Encoding is incorrect");
- }
- #pragma mark - Helper Methods
- - (GTMHTTPResponseMessage *)httpServer:(GTMHTTPServer *)server
- handleRequest:(GTMHTTPRequestMessage *)request {
- _request = request;
- NSData *html =
- [@"<html><body>Hello, World!</body></html>" dataUsingEncoding:NSUTF8StringEncoding];
- return [GTMHTTPResponseMessage responseWithBody:html
- contentType:@"text/html; charset=UTF-8"
- statusCode:_statusCode];
- }
- - (BOOL)isReachable {
- return _fakeNetworkIsReachable;
- }
- - (GULReachabilityStatus)reachabilityStatus {
- return _fakeReachabilityStatus;
- }
- #pragma mark - FIRReachabilityDelegate
- - (void)reachabilityDidChange {
- _currentNetworkStatus = _fakeNetworkIsReachable;
- }
- @end
|