| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010 |
- // 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/Tests/Unit/Network/third_party/GTMHTTPServer.h"
- #import <XCTest/XCTest.h>
- #import "OCMock.h"
- #import "GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h"
- #import "GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h"
- #import "GoogleUtilities/Reachability/Public/GoogleUtilities/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];
- #if TARGET_OS_TV
- NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
- #else
- NSArray *paths =
- NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES);
- #endif
- 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
|