summaryrefslogtreecommitdiff
path: root/library/test/instrumentation/src/com/android/setupwizardlib/test/SystemBarHelperTest.java
blob: 1b534e1209cc7e7321977d9713c0eaceb5ad78f4 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*
 * 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.setupwizardlib.test;

import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertEquals;

import android.annotation.SuppressLint;
import android.app.Dialog;
import android.content.Context;
import android.os.Build.VERSION;
import android.os.Build.VERSION_CODES;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.SystemClock;
import android.view.ContextThemeWrapper;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.support.test.InstrumentationRegistry;
import android.support.test.annotation.UiThreadTest;
import android.support.test.filters.SmallTest;
import android.support.test.rule.UiThreadTestRule;
import android.support.test.runner.AndroidJUnit4;
import com.android.setupwizardlib.test.util.MockWindow;
import com.android.setupwizardlib.util.SystemBarHelper;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(AndroidJUnit4.class)
@SmallTest
public class SystemBarHelperTest {

  @Rule public UiThreadTestRule mUiThreadTestRule = new UiThreadTestRule();

  private static final int STATUS_BAR_DISABLE_BACK = 0x00400000;

  @SuppressLint("InlinedApi")
  private static final int DEFAULT_IMMERSIVE_FLAGS =
      View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
          | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
          | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
          | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;

  @SuppressLint("InlinedApi")
  private static final int DIALOG_IMMERSIVE_FLAGS =
      View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;

  @UiThreadTest
  @Test
  public void testAddVisibilityFlagView() {
    final View view = createViewWithSystemUiVisibility(0x456);
    SystemBarHelper.addVisibilityFlag(view, 0x1400);
    if (VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB) {
      // Check that result is 0x1456, because 0x1400 | 0x456 = 0x1456.
      assertEquals("View visibility should be 0x1456", 0x1456, view.getSystemUiVisibility());
    }
  }

  @UiThreadTest
  @Test
  public void testRemoveVisibilityFlagView() {
    final View view = createViewWithSystemUiVisibility(0x456);
    SystemBarHelper.removeVisibilityFlag(view, 0x1400);
    if (VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB) {
      // Check that result is 0x56, because 0x456 & ~0x1400 = 0x56.
      assertEquals("View visibility should be 0x56", 0x56, view.getSystemUiVisibility());
    }
  }

  @UiThreadTest
  @Test
  public void testAddVisibilityFlagWindow() {
    final Window window = createWindowWithSystemUiVisibility(0x456);
    SystemBarHelper.addVisibilityFlag(window, 0x1400);
    if (VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB) {
      // Check that result is 0x1456 = 0x1400 | 0x456.
      assertEquals(
          "View visibility should be 0x1456", 0x1456, window.getAttributes().systemUiVisibility);
    }
  }

  @UiThreadTest
  @Test
  public void testRemoveVisibilityFlagWindow() {
    final Window window = createWindowWithSystemUiVisibility(0x456);
    SystemBarHelper.removeVisibilityFlag(window, 0x1400);
    if (VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB) {
      // Check that result is 0x56 = 0x456 & ~0x1400.
      assertEquals(
          "View visibility should be 0x56", 0x56, window.getAttributes().systemUiVisibility);
    }
  }

  @UiThreadTest
  @Test
  public void testHideSystemBarsWindow() {
    final Window window = createWindowWithSystemUiVisibility(0x456);
    SystemBarHelper.hideSystemBars(window);
    if (VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
      assertEquals(
          "DEFAULT_IMMERSIVE_FLAGS should be added to window's systemUiVisibility",
          DEFAULT_IMMERSIVE_FLAGS | 0x456,
          window.getAttributes().systemUiVisibility);
      assertEquals(
          "DEFAULT_IMMERSIVE_FLAGS should be added to decorView's systemUiVisibility",
          DEFAULT_IMMERSIVE_FLAGS | 0x456,
          window.getDecorView().getSystemUiVisibility());
      assertEquals("Navigation bar should be transparent", window.getNavigationBarColor(), 0);
      assertEquals("Status bar should be transparent", window.getStatusBarColor(), 0);
    }
  }

  @UiThreadTest
  @Test
  public void testShowSystemBarsWindow() {
    final Window window = createWindowWithSystemUiVisibility(0x456);
    Context context =
        new ContextThemeWrapper(InstrumentationRegistry.getContext(), android.R.style.Theme);
    SystemBarHelper.showSystemBars(window, context);
    if (VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
      assertEquals(
          "DEFAULT_IMMERSIVE_FLAGS should be removed from window's systemUiVisibility",
          0x456 & ~DEFAULT_IMMERSIVE_FLAGS,
          window.getAttributes().systemUiVisibility);
      assertEquals(
          "DEFAULT_IMMERSIVE_FLAGS should be removed from decorView's systemUiVisibility",
          0x456 & ~DEFAULT_IMMERSIVE_FLAGS,
          window.getDecorView().getSystemUiVisibility());
      assertEquals(
          "Navigation bar should not be transparent", window.getNavigationBarColor(), 0xff000000);
      assertEquals("Status bar should not be transparent", window.getStatusBarColor(), 0xff000000);
    }
  }

  @UiThreadTest
  @Test
  public void testHideSystemBarsNoInfiniteLoop() throws InterruptedException {
    final TestWindow window = new TestWindow(InstrumentationRegistry.getContext(), null);
    final HandlerThread thread = new HandlerThread("SystemBarHelperTest");
    thread.start();
    final Handler handler = new Handler(thread.getLooper());
    handler.post(
        new Runnable() {
          @Override
          public void run() {
            SystemBarHelper.hideSystemBars(window);
          }
        });
    SystemClock.sleep(500); // Wait for the looper to drain all the messages
    thread.quit();
    // Initial peek + 3 retries = 4 tries total
    if (VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
      assertEquals("Peek decor view should give up after 4 tries", 4, window.peekDecorViewCount);
    }
  }

  @UiThreadTest
  @Test
  public void testHideSystemBarsDialog() {
    final Dialog dialog = new Dialog(InstrumentationRegistry.getContext());
    if (VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
      final WindowManager.LayoutParams attrs = dialog.getWindow().getAttributes();
      attrs.systemUiVisibility = 0x456;
      dialog.getWindow().setAttributes(attrs);
    }

    SystemBarHelper.hideSystemBars(dialog);
    if (VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
      assertEquals(
          "DIALOG_IMMERSIVE_FLAGS should be added to window's systemUiVisibility",
          DIALOG_IMMERSIVE_FLAGS | 0x456,
          dialog.getWindow().getAttributes().systemUiVisibility);
    }
  }

  @UiThreadTest
  @Test
  public void testSetBackButtonVisibleTrue() {
    final Window window = createWindowWithSystemUiVisibility(STATUS_BAR_DISABLE_BACK | 0x456);
    SystemBarHelper.setBackButtonVisible(window, true);
    if (VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB) {
      assertThat(window.getAttributes().systemUiVisibility)
          .named("window sysUiVisibility")
          .isEqualTo(0x456);
      assertThat(window.getDecorView().getSystemUiVisibility())
          .named("decor view sysUiVisibility")
          .isEqualTo(0x456);
    }
  }

  @UiThreadTest
  @Test
  public void testSetBackButtonVisibleFalse() {
    final Window window = createWindowWithSystemUiVisibility(0x456);
    SystemBarHelper.setBackButtonVisible(window, false);
    if (VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB) {
      assertThat(window.getAttributes().systemUiVisibility)
          .named("window sysUiVisibility")
          .isEqualTo(0x456 | STATUS_BAR_DISABLE_BACK);
      assertThat(window.getDecorView().getSystemUiVisibility())
          .named("decor view sysUiVisibility")
          .isEqualTo(0x456 | STATUS_BAR_DISABLE_BACK);
    }
  }

  private View createViewWithSystemUiVisibility(int vis) {
    final View view = new View(InstrumentationRegistry.getContext());
    if (VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB) {
      view.setSystemUiVisibility(vis);
    }
    return view;
  }

  private Window createWindowWithSystemUiVisibility(int vis) {
    final Window window =
        new TestWindow(InstrumentationRegistry.getContext(), createViewWithSystemUiVisibility(vis));
    if (VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB) {
      WindowManager.LayoutParams attrs = window.getAttributes();
      attrs.systemUiVisibility = vis;
      window.setAttributes(attrs);
    }
    return window;
  }

  private static class TestWindow extends MockWindow {

    private View mDecorView;
    public int peekDecorViewCount = 0;

    private int mNavigationBarColor = -1;
    private int mStatusBarColor = -1;

    TestWindow(Context context, View decorView) {
      super(context);
      mDecorView = decorView;
    }

    @Override
    public View getDecorView() {
      return mDecorView;
    }

    @Override
    public View peekDecorView() {
      peekDecorViewCount++;
      return mDecorView;
    }

    @Override
    public void setNavigationBarColor(int i) {
      mNavigationBarColor = i;
    }

    @Override
    public int getNavigationBarColor() {
      return mNavigationBarColor;
    }

    @Override
    public void setStatusBarColor(int i) {
      mStatusBarColor = i;
    }

    @Override
    public int getStatusBarColor() {
      return mStatusBarColor;
    }
  }
}