summaryrefslogtreecommitdiffstats
path: root/chrome/android/javatests/src/org/chromium/chrome/browser/media/remote/CastNotificationTest.java
blob: 6d2210d67893f2bf77b24d29afdd2770af0de4cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.chrome.browser.media.remote;

import android.app.PendingIntent.CanceledException;
import android.test.suitebuilder.annotation.LargeTest;
import android.view.View;

import org.chromium.base.test.util.Feature;
import org.chromium.chrome.browser.media.remote.NotificationTransportControl.ListenerService;
import org.chromium.chrome.browser.media.remote.RemoteVideoInfo.PlayerState;
import org.chromium.chrome.test.util.ActivityUtils;

import java.util.concurrent.TimeoutException;

/**
 * Tests of the notification.
 */
public class CastNotificationTest extends CastTestBase {

    private static final long PAUSE_TEST_TIME_MS = 1000;

    /**
     * Test the pause button on the notification.
     */
    @Feature({"VideoFling"})
    @LargeTest
    public void testNotificationPause() throws InterruptedException, TimeoutException {
        castDefaultVideoFromPage(DEFAULT_VIDEO_PAGE);

        // Get the notification
        NotificationTransportControl notificationTransportControl = waitForCastNotification();
        assertNotNull("No notificationTransportControl", notificationTransportControl);
        // We can't actually click the notification's buttons, since they are owned by a different
        // process and hence is not accessible through instrumentation, so send the stop event
        // instead.
        NotificationTransportControl.ListenerService service =
                waitForCastNotificationService(notificationTransportControl);
        assertNotNull("No notification service", service);

        try {
            service.getPendingIntent(ListenerService.ACTION_ID_PAUSE).send();
        } catch (CanceledException e) {
            fail();
        }
        assertTrue("Not paused", waitForState(PlayerState.PAUSED));

        // The new position is sent in a separate message, so we have to wait a bit before
        // fetching it.
        Thread.sleep(STABILIZE_TIME_MS);
        int position = getRemotePositionMs();
        // Position should not change while paused
        Thread.sleep(PAUSE_TEST_TIME_MS);
        assertEquals("Pause didn't stop playback", position, getRemotePositionMs());
        try {
            service.getPendingIntent(ListenerService.ACTION_ID_PLAY).send();
        } catch (CanceledException e) {
            fail();
        }
        assertTrue("Not playing", waitForState(PlayerState.PLAYING));

        // Should now be running again.
        Thread.sleep(PAUSE_TEST_TIME_MS);
        assertTrue("Run didn't restart playback", position < getRemotePositionMs());
    }

    /**
     * Test select (pressing the body) on the notification.
     */
    @Feature({"VideoFling"})
    @LargeTest
    public void testNotificationSelect() throws InterruptedException, TimeoutException {
        castDefaultVideoFromPage(DEFAULT_VIDEO_PAGE);

        // Get the notification
        NotificationTransportControl notificationTransportControl = waitForCastNotification();
        assertNotNull("No notificationTransportControl", notificationTransportControl);
        // We can't actually click the notification's buttons, since they are owned by a different
        // process and hence is not accessible through instrumentation, so send the select event
        // instead.
        final NotificationTransportControl.ListenerService service =
                waitForCastNotificationService(notificationTransportControl);
        assertNotNull("No notification service", service);

        ExpandedControllerActivity fullscreenControls = ActivityUtils.waitForActivityWithTimeout(
                getInstrumentation(),
                ExpandedControllerActivity.class, new Runnable() {
                        @Override
                    public void run() {
                        try {
                            service.getPendingIntent(ListenerService.ACTION_ID_SELECT).send();
                        } catch (CanceledException e) {
                            fail();
                        }
                    }
                }, MAX_VIEW_TIME_MS);
        assertNotNull("No expanded controller activity", fullscreenControls);
        View rootView = fullscreenControls.findViewById(android.R.id.content);
        assertNotNull("No root view for fullscreen controls", rootView);
        assertEquals("Fullscreen controls not shown", View.VISIBLE, rootView.getVisibility());
    }
}