aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2015-05-17 16:26:17 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2015-05-18 14:59:47 -0700
commite454f4afe36eb1f47973c3ac714f453b1920d827 (patch)
tree353331f654a317e288f8f95ec384d29cc6d83a6d /src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m
parent05456f81c5d8ae93aed407d6503fc44136d1f6de (diff)
Fix false positive in server streaming test
Diffstat (limited to 'src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m')
-rw-r--r--src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m26
1 files changed, 17 insertions, 9 deletions
diff --git a/src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m b/src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m
index f5c444d171..f489229834 100644
--- a/src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m
+++ b/src/objective-c/examples/Sample/SampleTests/RemoteProtoTests.m
@@ -129,6 +129,7 @@
- (void)testServerStreamingRPC {
__weak XCTestExpectation *expectation = [self expectationWithDescription:@"ServerStreaming"];
+
NSArray *expectedSizes = @[@31415, @9, @2653, @58979];
RMTStreamingOutputCallRequest *request = [RMTStreamingOutputCallRequest message];
@@ -144,15 +145,22 @@
RMTStreamingOutputCallResponse *response,
NSError *error){
XCTAssertNil(error, @"Finished with unexpected error: %@", error);
-
- RMTStreamingOutputCallResponse *expectedResponse = [RMTStreamingOutputCallResponse message];
- expectedResponse.payload.type = RMTPayloadType_Compressable;
- int expectedSize = [expectedSizes[index] unsignedIntegerValue];
- expectedResponse.payload.body = [NSMutableData dataWithLength:expectedSize];
- XCTAssertEqualObjects(response, expectedResponse);
-
- [expectation fulfill];
- index += 1;
+ XCTAssertTrue(done || response, @"Event handler called without an event.");
+
+ if (response) {
+ XCTAssertLessThan(index, 4, @"More than 4 responses received.");
+ RMTStreamingOutputCallResponse * expected = [RMTStreamingOutputCallResponse message];
+ expected.payload.type = RMTPayloadType_Compressable;
+ int expectedSize = [expectedSizes[index] unsignedIntegerValue];
+ expected.payload.body = [NSMutableData dataWithLength:expectedSize];
+ XCTAssertEqualObjects(response, expected);
+ index += 1;
+ }
+
+ if (done) {
+ XCTAssertEqual(index, 4, @"Received %i responses instead of 4.", index);
+ [expectation fulfill];
+ }
}];
[self waitForExpectationsWithTimeout:4 handler:nil];