blob: cee05e21f5da53529749f0afde71da54a6d536cf [file] [log] [blame]
/*
* Copyright (C) 2014 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.cts.verifier.tv;
import com.android.cts.verifier.R;
import android.view.View;
/**
* Tests for verifying TV app behavior.
*/
public class TvInputDiscoveryTestActivity extends TvAppVerifierActivity
implements View.OnClickListener {
private static final String TAG = "TvInputDiscoveryTestActivity";
private static final long TIMEOUT_MS = 5l * 60l * 1000l; // 5 mins.
private View mGoToSetupItem;
private View mVerifySetupItem;
private View mTuneToChannelItem;
private View mVerifyTuneItem;
@Override
public void onClick(View v) {
final View postTarget = getPostTarget();
if (containsButton(mGoToSetupItem, v)) {
final Runnable failCallback = new Runnable() {
@Override
public void run() {
setPassState(mVerifySetupItem, false);
}
};
postTarget.postDelayed(failCallback, TIMEOUT_MS);
MockTvInputSetupActivity.expectLaunch(postTarget, new Runnable() {
@Override
public void run() {
postTarget.removeCallbacks(failCallback);
setPassState(mGoToSetupItem, true);
setPassState(mVerifySetupItem, true);
setButtonEnabled(mTuneToChannelItem, true);
}
});
} else if (containsButton(mTuneToChannelItem, v)) {
final Runnable failCallback = new Runnable() {
@Override
public void run() {
setPassState(mVerifyTuneItem, false);
}
};
postTarget.postDelayed(failCallback, TIMEOUT_MS);
MockTvInputService.expectTune(postTarget, new Runnable() {
@Override
public void run() {
postTarget.removeCallbacks(failCallback);
setPassState(mTuneToChannelItem, true);
setPassState(mVerifyTuneItem, true);
getPassButton().setEnabled(true);
}
});
}
startActivity(TV_APP_INTENT);
}
@Override
protected void createTestItems() {
mGoToSetupItem = createUserItem(R.string.tv_input_discover_test_go_to_setup,
R.string.tv_launch_tv_app, this);
setButtonEnabled(mGoToSetupItem, true);
mVerifySetupItem = createAutoItem(R.string.tv_input_discover_test_verify_setup);
mTuneToChannelItem = createUserItem(R.string.tv_input_discover_test_tune_to_channel,
R.string.tv_launch_tv_app, this);
mVerifyTuneItem = createAutoItem(R.string.tv_input_discover_test_verify_tune);
}
}