This change do the 2 things: 1. Add new junit tests files which replace robolectric RobolectricTestRunner & RuntimeEnvironment with AndroidX objects without problem. 2. Remove the robolectric test files which have it's new junit files. This change migrate 103 files, there are still 1209 files to go. Bug: 174728471 Test: atest make RunSettingsRoboTests Change-Id: I15ed3f4745b85862f720aabbf710ce1475aced93
148 lines
4.4 KiB
Java
148 lines
4.4 KiB
Java
/*
|
|
* Copyright (C) 2020 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.settings.slices;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import android.content.ContentResolver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.IntentFilter;
|
|
import android.net.Uri;
|
|
import android.provider.SettingsSlicesContract;
|
|
|
|
import androidx.slice.Slice;
|
|
import androidx.test.core.app.ApplicationProvider;
|
|
import androidx.test.ext.junit.runners.AndroidJUnit4;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
|
|
@RunWith(AndroidJUnit4.class)
|
|
public class SpecialCaseSliceManagerTest {
|
|
|
|
private static final String FAKE_PARAMETER_KEY = "fake_parameter_key";
|
|
private static final String FAKE_PARAMETER_VALUE = "fake_value";
|
|
|
|
private Context mContext;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
mContext = ApplicationProvider.getApplicationContext();
|
|
CustomSliceRegistry.sUriToSlice.clear();
|
|
CustomSliceRegistry.sUriToSlice.put(FakeSliceable.URI, FakeSliceable.class);
|
|
}
|
|
|
|
@Test
|
|
public void getSliceableFromUri_returnsCorrectObject() {
|
|
final CustomSliceable sliceable = CustomSliceable.createInstance(
|
|
mContext, CustomSliceRegistry.getSliceClassByUri(FakeSliceable.URI));
|
|
|
|
assertThat(sliceable).isInstanceOf(FakeSliceable.class);
|
|
}
|
|
|
|
@Test
|
|
public void getSliceableFromUriWithParameter_returnsCorrectObject() {
|
|
final Uri parameterUri = FakeSliceable.URI
|
|
.buildUpon()
|
|
.clearQuery()
|
|
.appendQueryParameter(FAKE_PARAMETER_KEY, FAKE_PARAMETER_VALUE)
|
|
.build();
|
|
|
|
final CustomSliceable sliceable = CustomSliceable.createInstance(
|
|
mContext, CustomSliceRegistry.getSliceClassByUri(parameterUri));
|
|
|
|
assertThat(sliceable).isInstanceOf(FakeSliceable.class);
|
|
}
|
|
|
|
@Test
|
|
public void isValidUri_validUri_returnsTrue() {
|
|
final boolean isValidUri = CustomSliceRegistry.isValidUri(FakeSliceable.URI);
|
|
|
|
assertThat(isValidUri).isTrue();
|
|
}
|
|
|
|
@Test
|
|
public void isValidUri_invalidUri_returnsFalse() {
|
|
final boolean isValidUri = CustomSliceRegistry.isValidUri(null);
|
|
|
|
assertThat(isValidUri).isFalse();
|
|
}
|
|
|
|
@Test
|
|
public void isValidAction_validActions_returnsTrue() {
|
|
final boolean isValidAction =
|
|
CustomSliceRegistry.isValidAction(FakeSliceable.URI.toString());
|
|
|
|
assertThat(isValidAction).isTrue();
|
|
}
|
|
|
|
@Test
|
|
public void isValidAction_invalidAction_returnsFalse() {
|
|
final boolean isValidAction = CustomSliceRegistry.isValidAction("action");
|
|
|
|
assertThat(isValidAction).isFalse();
|
|
}
|
|
|
|
static class FakeSliceable implements CustomSliceable {
|
|
|
|
static final String KEY = "magic key of khazad dum";
|
|
|
|
static final Uri URI = new Uri.Builder()
|
|
.scheme(ContentResolver.SCHEME_CONTENT)
|
|
.authority(SettingsSliceProvider.SLICE_AUTHORITY)
|
|
.appendPath(SettingsSlicesContract.PATH_SETTING_ACTION)
|
|
.appendPath(KEY)
|
|
.build();
|
|
|
|
static final Slice SLICE = new Slice.Builder(URI).build();
|
|
|
|
static boolean sBackingData = false;
|
|
|
|
final Context mContext;
|
|
|
|
public FakeSliceable(Context context) {
|
|
mContext = context;
|
|
}
|
|
|
|
@Override
|
|
public Slice getSlice() {
|
|
return SLICE;
|
|
}
|
|
|
|
@Override
|
|
public Uri getUri() {
|
|
return URI;
|
|
}
|
|
|
|
@Override
|
|
public void onNotifyChange(Intent intent) {
|
|
sBackingData = !sBackingData;
|
|
}
|
|
|
|
@Override
|
|
public IntentFilter getIntentFilter() {
|
|
return new IntentFilter();
|
|
}
|
|
|
|
@Override
|
|
public Intent getIntent() {
|
|
return null;
|
|
}
|
|
}
|
|
}
|