blob: eb803754f5d73ab5275dca5d6fa167caab66f30f [file] [log] [blame]
/*
* Copyright (C) 2013 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.example.android.immersivemode.tests;
import com.example.android.immersivemode.*;
import android.test.ActivityInstrumentationTestCase2;
import android.test.UiThreadTest;
/**
* Tests for immersive mode sample.
*/
public class ImmersiveModeSampleTests extends ActivityInstrumentationTestCase2<MainActivity> {
private MainActivity mTestActivity;
private ImmersiveModeFragment mTestFragment;
public ImmersiveModeSampleTests() {
super(MainActivity.class);
}
@Override
protected void setUp() throws Exception {
super.setUp();
// Starts the activity under test using the default Intent with:
// action = {@link Intent#ACTION_MAIN}
// flags = {@link Intent#FLAG_ACTIVITY_NEW_TASK}
// All other fields are null or empty.
mTestActivity = getActivity();
mTestFragment = (ImmersiveModeFragment)
mTestActivity.getSupportFragmentManager().getFragments().get(1);
}
/**
* Test if the test fixture has been set up correctly.
*/
public void testPreconditions() {
//Try to add a message to add context to your assertions. These messages will be shown if
//a tests fails and make it easy to understand why a test failed
assertNotNull("mTestActivity is null", mTestActivity);
assertNotNull("mTestFragment is null", mTestFragment);
}
/**
* Verify that the UI flags actually changed when the toggle method is called.
*/
@UiThreadTest
public void testFlagsChanged() {
int uiFlags = getActivity().getWindow().getDecorView().getSystemUiVisibility();
mTestFragment.toggleHideyBar();
int newUiFlags = getActivity().getWindow().getDecorView().getSystemUiVisibility();
assertTrue("UI Flags didn't toggle.", uiFlags != newUiFlags);
}
/**
* Verify that the view's height actually changed when the toggle method is called.
* This should result in a change in height for the DecorView.
*/
public void testDecorHeightExpanded() {
// Grab the initial height of the DecorWindow.
int startingHeight = getActivity().getWindow().getDecorView().getHeight();
// In order to test that this worked: Need to toggle the immersive mode on the UI thread,
// wait a suitable amount of time (this test goes with 200 ms), then check to see if the
// height changed.
try {
Runnable testRunnable = (new Runnable() {
public void run() {
// Toggle immersive mode
mTestFragment.toggleHideyBar();
synchronized(this) {
// Notify any thread waiting on this runnable that it can continue
this.notify();
}
}
});
synchronized(testRunnable) {
// Since toggling immersive mode makes changes to the view heirarchy, it needs to run
// on the UI thread, or crashing will occur.
mTestActivity.runOnUiThread(testRunnable);
testRunnable.wait();
}
synchronized(this) {
//Wait about 200ms for the change to take place
wait(200L);
}
} catch (Throwable throwable) {
fail(throwable.getMessage());
}
int expandedHeight = getActivity().getWindow().getDecorView().getHeight();
assertTrue("Bars aren't hidden.", expandedHeight != startingHeight);
}
}