1 /* 2 * Copyright 2018, gRPC Authors All rights reserved. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package io.grpc.interop.cpp; 18 19 import static junit.framework.Assert.assertTrue; 20 21 import android.content.Context; 22 import android.support.test.InstrumentationRegistry; 23 import android.support.test.runner.AndroidJUnit4; 24 import java.io.File; 25 import java.io.FileOutputStream; 26 import java.io.InputStream; 27 import java.io.OutputStream; 28 import org.junit.Before; 29 import org.junit.Test; 30 import org.junit.runner.RunWith; 31 32 @RunWith(AndroidJUnit4.class) 33 public class InteropTest { 34 private String host; 35 private int port; 36 private boolean useTls; 37 38 @Before setUp()39 public void setUp() throws Exception { 40 host = 41 InstrumentationRegistry.getArguments() 42 .getString("server_host", "grpc-test.sandbox.googleapis.com"); 43 port = Integer.parseInt(InstrumentationRegistry.getArguments().getString("server_port", "443")); 44 useTls = 45 Boolean.parseBoolean(InstrumentationRegistry.getArguments().getString("use_tls", "true")); 46 } 47 48 @Test emptyUnary()49 public void emptyUnary() { 50 assertTrue(InteropActivity.doEmpty(host, port, useTls)); 51 } 52 53 @Test largeUnary()54 public void largeUnary() { 55 assertTrue(InteropActivity.doLargeUnary(host, port, useTls)); 56 } 57 58 @Test emptyStream()59 public void emptyStream() { 60 assertTrue(InteropActivity.doEmptyStream(host, port, useTls)); 61 } 62 63 @Test requestStreaming()64 public void requestStreaming() { 65 assertTrue(InteropActivity.doRequestStreaming(host, port, useTls)); 66 } 67 68 @Test responseStreaming()69 public void responseStreaming() { 70 assertTrue(InteropActivity.doResponseStreaming(host, port, useTls)); 71 } 72 73 @Test pingPong()74 public void pingPong() { 75 assertTrue(InteropActivity.doPingPong(host, port, useTls)); 76 } 77 } 78