summaryrefslogtreecommitdiff
path: root/library/test/robotest/src/com/android/setupwizardlib/util/WizardManagerHelperTest.java
blob: e302cab67a9ca4a185e10498cef2a3e0c298c3b2 (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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
/*
 * 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.util;

import static com.google.common.truth.Truth.assertThat;
import static com.google.common.truth.Truth.assertWithMessage;
import static org.robolectric.RuntimeEnvironment.application;
import static org.robolectric.Shadows.shadowOf;

import android.annotation.TargetApi;
import android.app.Activity;
import android.content.Intent;
import android.os.Build.VERSION_CODES;
import android.os.Bundle;
import android.provider.Settings;
import android.provider.Settings.Global;
import android.provider.Settings.Secure;
import androidx.annotation.StyleRes;
import com.android.setupwizardlib.R;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.Robolectric;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;

@RunWith(RobolectricTestRunner.class)
@Config(sdk = Config.NEWEST_SDK)
public class WizardManagerHelperTest {

  @Test
  public void testGetNextIntent() {
    final Intent intent = new Intent("test.intent.ACTION");
    intent.putExtra("scriptUri", "android-resource://test-script");
    intent.putExtra("actionId", "test_action_id");
    intent.putExtra("theme", "test_theme");
    intent.putExtra("ignoreExtra", "poof"); // extra is ignored because it's not known

    final Intent data = new Intent();
    data.putExtra("extraData", "shazam");

    final Intent nextIntent = WizardManagerHelper.getNextIntent(intent, Activity.RESULT_OK, data);
    assertWithMessage("Next intent action should be NEXT")
        .that(nextIntent.getAction())
        .isEqualTo("com.android.wizard.NEXT");
    assertWithMessage("Script URI should be the same as original intent")
        .that(nextIntent.getStringExtra("scriptUri"))
        .isEqualTo("android-resource://test-script");
    assertWithMessage("Action ID should be the same as original intent")
        .that(nextIntent.getStringExtra("actionId"))
        .isEqualTo("test_action_id");
    assertWithMessage("Theme extra should be the same as original intent")
        .that(nextIntent.getStringExtra("theme"))
        .isEqualTo("test_theme");
    assertWithMessage("ignoreExtra should not be in nextIntent")
        .that(nextIntent.hasExtra("ignoreExtra"))
        .isFalse();
    assertWithMessage("Result code extra should be RESULT_OK")
        .that(nextIntent.getIntExtra("com.android.setupwizard.ResultCode", 0))
        .isEqualTo(Activity.RESULT_OK);
    assertWithMessage("Extra data should surface as extra in nextIntent")
        .that(nextIntent.getStringExtra("extraData"))
        .isEqualTo("shazam");
  }

  @Test
  public void testIsSetupWizardTrue() {
    final Intent intent = new Intent();
    intent.putExtra("firstRun", true);
    assertWithMessage("Is setup wizard should be true")
        .that(WizardManagerHelper.isSetupWizardIntent(intent))
        .isTrue();
  }

  @Test
  public void testIsDeferredSetupTrue() {
    final Intent intent = new Intent();
    intent.putExtra("deferredSetup", true);
    assertWithMessage("Is deferred setup wizard should be true")
        .that(WizardManagerHelper.isDeferredSetupWizard(intent))
        .isTrue();
  }

  @Test
  public void testIsPreDeferredSetupTrue() {
    final Intent intent = new Intent();
    intent.putExtra("preDeferredSetup", true);
    assertWithMessage("Is pre-deferred setup wizard should be true")
        .that(WizardManagerHelper.isPreDeferredSetupWizard(intent))
        .isTrue();
  }

  @Test
  public void testIsSetupWizardFalse() {
    final Intent intent = new Intent();
    intent.putExtra("firstRun", false);
    assertWithMessage("Is setup wizard should be true")
        .that(WizardManagerHelper.isSetupWizardIntent(intent))
        .isFalse();
  }

  @Test
  public void isLightTheme_shouldReturnTrue_whenThemeIsLight() {
    List<String> lightThemes =
        Arrays.asList(
            "holo_light", "material_light", "glif_light", "glif_v2_light", "glif_v3_light");
    ArrayList<String> unexpectedIntentThemes = new ArrayList<>();
    ArrayList<String> unexpectedStringThemes = new ArrayList<>();
    for (final String theme : lightThemes) {
      Intent intent = new Intent();
      intent.putExtra(WizardManagerHelper.EXTRA_THEME, theme);
      if (!WizardManagerHelper.isLightTheme(intent, false)) {
        unexpectedIntentThemes.add(theme);
      }
      if (!WizardManagerHelper.isLightTheme(theme, false)) {
        unexpectedStringThemes.add(theme);
      }
    }
    assertWithMessage("Intent themes " + unexpectedIntentThemes + " should be light")
        .that(unexpectedIntentThemes.isEmpty())
        .isTrue();
    assertWithMessage("String themes " + unexpectedStringThemes + " should be light")
        .that(unexpectedStringThemes.isEmpty())
        .isTrue();
  }

  @Test
  public void isLightTheme_shouldReturnFalse_whenThemeIsNotLight() {
    List<String> lightThemes = Arrays.asList("holo", "material", "glif", "glif_v2", "glif_v3");
    ArrayList<String> unexpectedIntentThemes = new ArrayList<>();
    ArrayList<String> unexpectedStringThemes = new ArrayList<>();
    for (final String theme : lightThemes) {
      Intent intent = new Intent();
      intent.putExtra(WizardManagerHelper.EXTRA_THEME, theme);
      if (WizardManagerHelper.isLightTheme(intent, true)) {
        unexpectedIntentThemes.add(theme);
      }
      if (WizardManagerHelper.isLightTheme(theme, true)) {
        unexpectedStringThemes.add(theme);
      }
    }
    assertWithMessage("Intent themes " + unexpectedIntentThemes + " should not be light")
        .that(unexpectedIntentThemes.isEmpty())
        .isTrue();
    assertWithMessage("String themes " + unexpectedStringThemes + " should not be light")
        .that(unexpectedStringThemes.isEmpty())
        .isTrue();
  }

  @Test
  public void getThemeRes_whenOldestSupportedThemeTakeEffect_shouldReturnDefault() {
    Intent intent = new Intent();
    intent.putExtra(WizardManagerHelper.EXTRA_THEME, "material");
    assertThat(WizardManagerHelper.getThemeRes(intent, 0, WizardManagerHelper.THEME_GLIF_V2))
        .isEqualTo(0);
  }

  @Test
  public void getThemeRes_whenOldestSupportedThemeNotTakeEffect_shouldReturnCurrent() {
    Intent intent = new Intent();
    intent.putExtra(WizardManagerHelper.EXTRA_THEME, "glif_v3");
    assertThat(WizardManagerHelper.getThemeRes(intent, 0, WizardManagerHelper.THEME_GLIF_V2))
        .isEqualTo(R.style.SuwThemeGlifV3);
  }

  @Test
  public void testIsLightThemeDefault() {
    final Intent intent = new Intent();
    intent.putExtra("theme", "abracadabra");
    assertWithMessage("isLightTheme should return default value true")
        .that(WizardManagerHelper.isLightTheme(intent, true))
        .isTrue();
    assertWithMessage("isLightTheme should return default value false")
        .that(WizardManagerHelper.isLightTheme(intent, false))
        .isFalse();
  }

  @Test
  public void testIsLightThemeUnspecified() {
    final Intent intent = new Intent();
    assertWithMessage("isLightTheme should return default value true")
        .that(WizardManagerHelper.isLightTheme(intent, true))
        .isTrue();
    assertWithMessage("isLightTheme should return default value false")
        .that(WizardManagerHelper.isLightTheme(intent, false))
        .isFalse();
  }

  @Test
  public void testGetThemeResGlifV3Light() {
    assertThat(WizardManagerHelper.getThemeRes("glif_v3_light", 0))
        .isEqualTo(R.style.SuwThemeGlifV3_Light);
  }

  @Test
  public void testGetThemeResGlifV3() {
    assertThat(WizardManagerHelper.getThemeRes("glif_v3", 0)).isEqualTo(R.style.SuwThemeGlifV3);
  }

  @Test
  public void testGetThemeResGlifV2Light() {
    assertThat(WizardManagerHelper.getThemeRes("glif_v2_light", 0))
        .isEqualTo(R.style.SuwThemeGlifV2_Light);
  }

  @Test
  public void testGetThemeResGlifV2() {
    assertThat(WizardManagerHelper.getThemeRes("glif_v2", 0)).isEqualTo(R.style.SuwThemeGlifV2);
  }

  @Test
  public void testGetThemeResGlifLight() {
    assertThat(WizardManagerHelper.getThemeRes("glif_light", 0))
        .isEqualTo(R.style.SuwThemeGlif_Light);
  }

  @Test
  public void testGetThemeResGlif() {
    assertThat(WizardManagerHelper.getThemeRes("glif", 0)).isEqualTo(R.style.SuwThemeGlif);
  }

  @Test
  public void testGetThemeResMaterialLight() {
    assertThat(WizardManagerHelper.getThemeRes("material_light", 0))
        .isEqualTo(R.style.SuwThemeMaterial_Light);
  }

  @Test
  public void testGetThemeResMaterial() {
    assertThat(WizardManagerHelper.getThemeRes("material", 0)).isEqualTo(R.style.SuwThemeMaterial);
  }

  @Test
  public void testGetThemeResDefault() {
    @StyleRes int def = 123;
    assertThat(WizardManagerHelper.getThemeRes("abracadabra", def)).isEqualTo(def);
  }

  @Test
  public void testGetThemeResNull() {
    @StyleRes int def = 123;
    assertThat(WizardManagerHelper.getThemeRes((String) null, def)).isEqualTo(def);
  }

  @Test
  public void testGetThemeResFromIntent() {
    Intent intent = new Intent();
    intent.putExtra(WizardManagerHelper.EXTRA_THEME, "material");
    assertThat(WizardManagerHelper.getThemeRes(intent, 0)).isEqualTo(R.style.SuwThemeMaterial);
  }

  @Test
  public void testCopyWizardManagerIntent() {
    Bundle wizardBundle = new Bundle();
    wizardBundle.putString("foo", "bar");
    Intent originalIntent =
        new Intent()
            .putExtra(WizardManagerHelper.EXTRA_THEME, "test_theme")
            .putExtra(WizardManagerHelper.EXTRA_WIZARD_BUNDLE, wizardBundle)
            .putExtra(WizardManagerHelper.EXTRA_IS_FIRST_RUN, true)
            .putExtra(WizardManagerHelper.EXTRA_IS_DEFERRED_SETUP, true)
            .putExtra(WizardManagerHelper.EXTRA_IS_PRE_DEFERRED_SETUP, true)
            // Script URI and Action ID are kept for backwards compatibility
            .putExtra(WizardManagerHelper.EXTRA_SCRIPT_URI, "test_script_uri")
            .putExtra(WizardManagerHelper.EXTRA_ACTION_ID, "test_action_id");

    Intent intent = new Intent("test.intent.action");
    WizardManagerHelper.copyWizardManagerExtras(originalIntent, intent);

    assertWithMessage("Intent action should be kept")
        .that(intent.getAction())
        .isEqualTo("test.intent.action");
    assertWithMessage("EXTRA_THEME should be copied")
        .that(intent.getStringExtra(WizardManagerHelper.EXTRA_THEME))
        .isEqualTo("test_theme");
    Bundle copiedWizardBundle = intent.getParcelableExtra(WizardManagerHelper.EXTRA_WIZARD_BUNDLE);
    assertWithMessage("Wizard bundle should be copied")
        .that(copiedWizardBundle.getString("foo"))
        .isEqualTo("bar");

    assertWithMessage("EXTRA_IS_FIRST_RUN should be copied")
        .that(intent.getBooleanExtra(WizardManagerHelper.EXTRA_IS_FIRST_RUN, false))
        .isTrue();
    assertWithMessage("EXTRA_IS_DEFERRED_SETUP should be copied")
        .that(intent.getBooleanExtra(WizardManagerHelper.EXTRA_IS_DEFERRED_SETUP, false))
        .isTrue();
    assertWithMessage("EXTRA_IS_PRE_DEFERRED_SETUP should be copied")
        .that(intent.getBooleanExtra(WizardManagerHelper.EXTRA_IS_PRE_DEFERRED_SETUP, false))
        .isTrue();

    // Script URI and Action ID are replaced by Wizard Bundle in M, but are kept for backwards
    // compatibility
    assertWithMessage("EXTRA_SCRIPT_URI should be copied")
        .that(intent.getStringExtra(WizardManagerHelper.EXTRA_SCRIPT_URI))
        .isEqualTo("test_script_uri");
    assertWithMessage("EXTRA_ACTION_ID should be copied")
        .that(intent.getStringExtra(WizardManagerHelper.EXTRA_ACTION_ID))
        .isEqualTo("test_action_id");
  }

  @TargetApi(VERSION_CODES.JELLY_BEAN_MR1)
  @Test
  public void testIsUserSetupComplete() {
    Settings.Global.putInt(application.getContentResolver(), Global.DEVICE_PROVISIONED, 1);
    Settings.Secure.putInt(application.getContentResolver(), "user_setup_complete", 1);
    assertThat(WizardManagerHelper.isUserSetupComplete(application)).isTrue();

    Settings.Secure.putInt(application.getContentResolver(), "user_setup_complete", 0);
    assertThat(WizardManagerHelper.isUserSetupComplete(application)).isFalse();
  }

  @Test
  @Config(sdk = VERSION_CODES.JELLY_BEAN)
  public void testIsUserSetupCompleteCompat() {
    Settings.Secure.putInt(application.getContentResolver(), Secure.DEVICE_PROVISIONED, 1);
    assertThat(WizardManagerHelper.isUserSetupComplete(application)).isTrue();

    Settings.Secure.putInt(application.getContentResolver(), Secure.DEVICE_PROVISIONED, 0);
    assertThat(WizardManagerHelper.isUserSetupComplete(application)).isFalse();
  }

  @TargetApi(VERSION_CODES.JELLY_BEAN_MR1)
  @Test
  public void testIsDeviceProvisioned() {
    Settings.Global.putInt(application.getContentResolver(), Global.DEVICE_PROVISIONED, 1);
    assertThat(WizardManagerHelper.isDeviceProvisioned(application)).isTrue();
    Settings.Global.putInt(application.getContentResolver(), Global.DEVICE_PROVISIONED, 0);
    assertThat(WizardManagerHelper.isDeviceProvisioned(application)).isFalse();
  }

  @Test
  @Config(sdk = VERSION_CODES.JELLY_BEAN)
  public void testIsDeviceProvisionedCompat() {
    Settings.Secure.putInt(application.getContentResolver(), Secure.DEVICE_PROVISIONED, 1);
    assertThat(WizardManagerHelper.isDeviceProvisioned(application)).isTrue();
    Settings.Secure.putInt(application.getContentResolver(), Secure.DEVICE_PROVISIONED, 0);
    assertThat(WizardManagerHelper.isDeviceProvisioned(application)).isFalse();
  }

  @Test
  public void applyTheme_glifDayNight_shouldApplyThemeToActivity() {
    Activity activity =
        Robolectric.buildActivity(
                Activity.class,
                new Intent()
                    .putExtra(
                        WizardManagerHelper.EXTRA_THEME, WizardManagerHelper.THEME_GLIF_LIGHT))
            .setup()
            .get();

    WizardManagerHelper.applyTheme(activity);

    assertThat(shadowOf(activity).callGetThemeResId()).isEqualTo(R.style.SuwThemeGlif_DayNight);
  }
}