Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: webrtc/examples/androidtests/src/org/appspot/apprtc/test/ConnectActivityStubbedInputOutputTest.java

Issue 2585813002: Espresso test case to control loopback call (Closed)
Patch Set: Merge from master and use of Environment.getExternalStorageDirectory() instead of hardcoded /sdcard… Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 package org.appspot.apprtc.test;
12
13 import static android.support.test.espresso.action.ViewActions.click;
14 import static android.support.test.espresso.matcher.ViewMatchers.withId;
15 import static android.support.test.espresso.Espresso.onView;
16
17 import android.content.Context;
18 import android.content.Intent;
19 import android.net.Uri;
20 import android.os.Environment;
21 import android.support.test.espresso.IdlingPolicies;
22 import android.support.test.filters.LargeTest;
23 import android.support.test.rule.ActivityTestRule;
24 import android.support.test.runner.AndroidJUnit4;
25 import android.support.test.InstrumentationRegistry;
26 import java.util.UUID;
27 import java.util.concurrent.TimeUnit;
28 import org.appspot.apprtc.CallActivity;
29 import org.appspot.apprtc.ConnectActivity;
30 import org.appspot.apprtc.R;
31 import org.junit.Rule;
32 import org.junit.Test;
33 import org.junit.runner.RunWith;
34
35 /**
36 * Used to start a loopback call with video input from file and video output als o to file.
37 * The test case is a building block in other testing for video quality.
38 */
39 @RunWith(AndroidJUnit4.class)
40 @LargeTest
41 public class ConnectActivityStubbedInputOutputTest {
42 private static final String TAG = "ConnectActivityStubbedInputOutputTest";
43
44 @Rule
45 public ActivityTestRule<ConnectActivity> rule =
46 new ActivityTestRule<ConnectActivity>(ConnectActivity.class) {
47 @Override
48 protected Intent getActivityIntent() {
49 Context context = InstrumentationRegistry.getInstrumentation().getTarg etContext();
50 Intent intent = new Intent("android.intent.action.VIEW", Uri.parse("ht tps://appr.tc"),
51 context, ConnectActivity.class);
52
53 intent.putExtra(CallActivity.EXTRA_USE_VALUES_FROM_INTENT, true);
54
55 intent.putExtra(CallActivity.EXTRA_LOOPBACK, true);
56 intent.putExtra(CallActivity.EXTRA_AUDIOCODEC, "OPUS");
57 intent.putExtra(CallActivity.EXTRA_VIDEOCODEC, "VP8");
58 intent.putExtra(CallActivity.EXTRA_CAPTURETOTEXTURE_ENABLED, false);
59 intent.putExtra(CallActivity.EXTRA_CAMERA2, false);
60 intent.putExtra(CallActivity.EXTRA_ROOMID, UUID.randomUUID().toString( ).substring(0, 8));
61
62 intent.putExtra(CallActivity.EXTRA_VIDEO_FILE_AS_CAMERA,
63 Environment.getExternalStorageDirectory().getAbsolutePath()
64 + "/chromium_tests_root/resources/reference_video_640x360_30fp s.y4m");
65
66 intent.putExtra(CallActivity.EXTRA_SAVE_REMOTE_VIDEO_TO_FILE,
67 Environment.getExternalStorageDirectory().getAbsolutePath() + "/ou tput.y4m");
68 intent.putExtra(CallActivity.EXTRA_SAVE_REMOTE_VIDEO_TO_FILE_WIDTH, 64 0);
69 intent.putExtra(CallActivity.EXTRA_SAVE_REMOTE_VIDEO_TO_FILE_HEIGHT, 3 60);
70
71 return intent;
72 }
73 };
74
75 @Test
76 public void testLoopback() throws InterruptedException {
77 // The time to write down the data during closing of the program can take a while.
78 IdlingPolicies.setMasterPolicyTimeout(240000, TimeUnit.MILLISECONDS);
79
80 // During the time we sleep it will record video.
81 Thread.sleep(10000);
82
83 // Click on hang-up button.
84 onView(withId(R.id.button_call_disconnect)).perform(click());
85 }
86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698