aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests/InteropTestsLocalSSL.m
diff options
context:
space:
mode:
Diffstat (limited to 'src/objective-c/tests/InteropTestsLocalSSL.m')
-rw-r--r--src/objective-c/tests/InteropTestsLocalSSL.m16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/objective-c/tests/InteropTestsLocalSSL.m b/src/objective-c/tests/InteropTestsLocalSSL.m
index a8c4dc7dfd..eb72dd1d31 100644
--- a/src/objective-c/tests/InteropTestsLocalSSL.m
+++ b/src/objective-c/tests/InteropTestsLocalSSL.m
@@ -40,10 +40,26 @@ static int32_t kLocalInteropServerOverhead = 10;
return kLocalSSLHost;
}
++ (NSString *)pemRootCert {
+ NSBundle *bundle = [NSBundle bundleForClass:self.class];
+ NSString *certsPath =
+ [bundle pathForResource:@"TestCertificates.bundle/test-certificates" ofType:@"pem"];
+ NSError *error;
+ return [NSString stringWithContentsOfFile:certsPath encoding:NSUTF8StringEncoding error:&error];
+}
+
++ (NSString *)hostNameOverride {
+ return @"foo.test.google.fr";
+}
+
- (int32_t)encodingOverhead {
return kLocalInteropServerOverhead; // bytes
}
++ (GRPCTransportType)transportType {
+ return GRPCTransportTypeDefault;
+}
+
- (void)setUp {
[super setUp];