blob: a7f190d2b4ad7e81edcec7374916e75fc2c81eac [file] [log] [blame]
Muxi Yan7bc45f32016-07-25 21:34:34 -07001/*
2 *
3 * Copyright 2015, Google Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
Muxi Yan8e6aec52017-02-10 09:40:18 -080034#import <GRPCClient/GRPCCall+Tests.h>
35#import <GRPCClient/internal_testing/GRPCCall+InternalTests.h>
Muxi Yan7bc45f32016-07-25 21:34:34 -070036
Muxi Yana40ccd82016-11-05 21:39:44 -070037#import <Cronet/Cronet.h>
38#import <GRPCClient/GRPCCall+Cronet.h>
39
Muxi Yan7bc45f32016-07-25 21:34:34 -070040#import "InteropTests.h"
41
Makarand Dharmapurikarb4e97272017-04-12 12:16:28 -070042// The server address is derived from preprocessor macro, which is
43// in turn derived from environment variable of the same name.
44#define NSStringize_helper(x) #x
45#define NSStringize(x) @NSStringize_helper(x)
46static NSString * const kRemoteSSLHost = NSStringize(HOST_PORT_REMOTE);
47
Muxi Yan7bc45f32016-07-25 21:34:34 -070048
Muxi Yandc87ef52017-03-10 11:41:53 -080049// The Protocol Buffers encoding overhead of remote interop server. Acquired
50// by experiment. Adjust this when server's proto file changes.
51static int32_t kRemoteInteropServerOverhead = 12;
52
Muxi Yan7bc45f32016-07-25 21:34:34 -070053/** Tests in InteropTests.m, sending the RPCs to a remote SSL server. */
54@interface InteropTestsRemoteWithCronet : InteropTests
55@end
56
57@implementation InteropTestsRemoteWithCronet
58
Muxi Yan7bc45f32016-07-25 21:34:34 -070059+ (NSString *)host {
60 return kRemoteSSLHost;
61}
62
Muxi Yanabc886d2017-03-08 10:58:48 -080063- (int32_t)encodingOverhead {
Muxi Yandc87ef52017-03-10 11:41:53 -080064 return kRemoteInteropServerOverhead; // bytes
Muxi Yanabc886d2017-03-08 10:58:48 -080065}
66
Muxi Yan7bc45f32016-07-25 21:34:34 -070067@end