aboutsummaryrefslogtreecommitdiff
path: root/tests/func/src/com/android/tv/tests/ui/LiveChannelsAppTest.java
blob: 48224123b9b43b8586ef6a8a635258f1fbbb6028 (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * Copyright (C) 2015 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.tv.tests.ui;

import static com.android.tv.testing.uihelper.UiDeviceAsserts.assertHas;
import static com.android.tv.testing.uihelper.UiDeviceAsserts.assertWaitForCondition;

import android.support.test.filters.LargeTest;
import android.support.test.uiautomator.BySelector;
import android.support.test.uiautomator.Until;

import com.android.tv.R;
import com.android.tv.testing.testinput.ChannelStateData;
import com.android.tv.testing.testinput.TvTestInputConstants;
import com.android.tv.testing.uihelper.Constants;
import com.android.tv.testing.uihelper.DialogHelper;

/**
 * Basic tests for the LiveChannels app.
 */
@LargeTest
public class LiveChannelsAppTest extends LiveChannelsTestCase {
    private BySelector mBySettingsSidePanel;

    @Override
    protected void setUp() throws Exception {
        super.setUp();
        mLiveChannelsHelper.assertAppStarted();
        pressKeysForChannel(TvTestInputConstants.CH_1_DEFAULT_DONT_MODIFY);
        getInstrumentation().waitForIdleSync();
        mBySettingsSidePanel = mSidePanelHelper.bySidePanelTitled(
                R.string.side_panel_title_settings);
    }

    public void testSettingsCancel() {
        mMenuHelper.assertPressOptionsSettings();
        BySelector byChannelSourcesSidePanel = mSidePanelHelper
                .bySidePanelTitled(R.string.settings_channel_source_item_customize_channels);
        assertWaitForCondition(mDevice, Until.hasObject(byChannelSourcesSidePanel));
        mDevice.pressBack();
        assertWaitForCondition(mDevice, Until.gone(byChannelSourcesSidePanel));
        assertHas(mDevice, Constants.MENU, false);
    }

    public void testClosedCaptionsCancel() {
        mMenuHelper.assertPressOptionsClosedCaptions();
        BySelector byClosedCaptionSidePanel = mSidePanelHelper
                .bySidePanelTitled(R.string.side_panel_title_closed_caption);
        assertWaitForCondition(mDevice, Until.hasObject(byClosedCaptionSidePanel));
        mDevice.pressBack();
        assertWaitForCondition(mDevice, Until.gone(byClosedCaptionSidePanel));
        assertHas(mDevice, Constants.MENU, false);
    }

    public void testDisplayModeCancel() {
        ChannelStateData data = new ChannelStateData();
        data.mTvTrackInfos.add(com.android.tv.testing.Constants.SVGA_VIDEO_TRACK);
        data.mSelectedVideoTrackId = com.android.tv.testing.Constants.SVGA_VIDEO_TRACK
                .getId();
        updateThenTune(data, TvTestInputConstants.CH_2);

        mMenuHelper.assertPressOptionsDisplayMode();
        BySelector byDisplayModeSidePanel = mSidePanelHelper
                .bySidePanelTitled(R.string.side_panel_title_display_mode);
        assertWaitForCondition(mDevice, Until.hasObject(byDisplayModeSidePanel));
        mDevice.pressBack();
        assertWaitForCondition(mDevice, Until.gone(byDisplayModeSidePanel));
        assertHas(mDevice, Constants.MENU, false);
    }

    public void testMenu() {
        mDevice.pressMenu();

        assertWaitForCondition(mDevice, Until.hasObject(Constants.MENU));
        assertHas(mDevice, mMenuHelper.getByChannels(), true);
    }

    public void testMultiAudioCancel() {
        ChannelStateData data = new ChannelStateData();
        data.mTvTrackInfos.add(com.android.tv.testing.Constants.GENERIC_AUDIO_TRACK);
        updateThenTune(data, TvTestInputConstants.CH_2);

        mMenuHelper.assertPressOptionsMultiAudio();
        BySelector byMultiAudioSidePanel = mSidePanelHelper
                .bySidePanelTitled(R.string.side_panel_title_multi_audio);
        assertWaitForCondition(mDevice, Until.hasObject(byMultiAudioSidePanel));
        mDevice.pressBack();
        assertWaitForCondition(mDevice, Until.gone(byMultiAudioSidePanel));
        assertHas(mDevice, Constants.MENU, false);
    }

    public void testPinCancel() {
        mMenuHelper.showMenu();
        mMenuHelper.assertPressOptionsSettings();
        assertWaitForCondition(mDevice, Until.hasObject(mBySettingsSidePanel));
        mSidePanelHelper.assertNavigateToItem(R.string.settings_parental_controls);
        mDevice.pressDPadCenter();
        DialogHelper dialogHelper = new DialogHelper(mDevice, mTargetResources);
        dialogHelper.assertWaitForPinDialogOpen();
        mDevice.pressBack();
        dialogHelper.assertWaitForPinDialogClose();
        assertHas(mDevice, Constants.MENU, false);
    }
}