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

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

Issue 2741743002: IdlingResource for destroy() VideoFileRenderer (Closed)
Patch Set: Using local Collider and AppRTC Server Created 3 years, 9 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.contrib.CountingIdlingResource;
22 import android.support.test.espresso.Espresso;
23 import android.support.test.espresso.IdlingPolicies;
24 import android.support.test.espresso.IdlingResource;
25 import android.support.test.filters.LargeTest;
26 import android.support.test.rule.ActivityTestRule;
27 import android.support.test.runner.AndroidJUnit4;
28 import android.support.test.InstrumentationRegistry;
29 import java.util.UUID;
30 import java.util.concurrent.TimeUnit;
31 import org.appspot.apprtc.CallActivity;
32 import org.appspot.apprtc.ConnectActivity;
33 import org.appspot.apprtc.R;
34 import org.junit.After;
35 import org.junit.Before;
36 import org.junit.Rule;
37 import org.junit.Test;
38 import org.junit.runner.RunWith;
39
40 /**
41 * Used to start a loopback call with video input from file and video output als o to file.
42 * The test case is a building block in other testing for video quality.
43 */
44 @RunWith(AndroidJUnit4.class)
45 @LargeTest
46 public class CallActivityStubbedInputOutputTest {
47 private static final String TAG = "CallActivityStubbedInputOutputTest";
48
49 @Rule
50 public ActivityTestRule<CallActivity> rule = new ActivityTestRule<CallActivity >(
51 CallActivity.class) {
52 @Override
53 protected Intent getActivityIntent() {
54 Context context = InstrumentationRegistry.getContext();
55 Intent intent = new Intent("android.intent.action.VIEW", Uri.parse("http:/ /localhost:9999"));
56
57 intent.putExtra(CallActivity.EXTRA_USE_VALUES_FROM_INTENT, true);
58
59 intent.putExtra(CallActivity.EXTRA_COLLIDERURL, "http://localhost:8089");
60
61 intent.putExtra(CallActivity.EXTRA_LOOPBACK, true);
62 intent.putExtra(CallActivity.EXTRA_AUDIOCODEC, "OPUS");
63 intent.putExtra(CallActivity.EXTRA_VIDEOCODEC, "VP8");
64 intent.putExtra(CallActivity.EXTRA_CAPTURETOTEXTURE_ENABLED, false);
65 intent.putExtra(CallActivity.EXTRA_CAMERA2, false);
66 intent.putExtra(CallActivity.EXTRA_ROOMID, UUID.randomUUID().toString().su bstring(0, 8));
67
68 intent.putExtra(CallActivity.EXTRA_VIDEO_FILE_AS_CAMERA,
69 Environment.getExternalStorageDirectory().getAbsolutePath()
70 + "/chromium_tests_root/resources/reference_video_640x360_30fps.y4 m");
71
72 intent.putExtra(CallActivity.EXTRA_SAVE_REMOTE_VIDEO_TO_FILE,
73 Environment.getExternalStorageDirectory().getAbsolutePath() + "/output .y4m");
74 intent.putExtra(CallActivity.EXTRA_SAVE_REMOTE_VIDEO_TO_FILE_WIDTH, 640);
75 intent.putExtra(CallActivity.EXTRA_SAVE_REMOTE_VIDEO_TO_FILE_HEIGHT, 360);
76
77 return intent;
78 }
79 };
80
81 private static class BusyResource implements CallActivity.CountingResource {
82 CountingIdlingResource countingIdlingResource = new CountingIdlingResource(" BusyResource");
83
84 @Override
85 public void increment() {
86 countingIdlingResource.increment();
87 }
88
89 @Override
90 public void decrement() {
91 countingIdlingResource.decrement();
92 }
93 }
94 private IdlingResource idlingResource;
95
96 @Before
97 public void registerIdlingResource() {
98 BusyResource busyR = new BusyResource();
99 idlingResource = busyR.countingIdlingResource;
100 rule.getActivity().setCountingResource(busyR);
101 Espresso.registerIdlingResources(idlingResource);
102 }
103
104 @After
105 public void unregisterIdlingResources() {
106 if (idlingResource != null) {
107 Espresso.unregisterIdlingResources(idlingResource);
108 }
109 }
110
111 @Test
112 public void testLoopback() throws InterruptedException {
113 // The time to write down the data during closing of the program can take a while.
114 IdlingPolicies.setMasterPolicyTimeout(240000, TimeUnit.MILLISECONDS);
115
116 // During the time we sleep it will record video.
117 Thread.sleep(8000);
118
119 // Click on hang-up button.
120 onView(withId(R.id.button_call_disconnect)).perform(click());
121 }
122 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698