The resources available to tests are now exactly the merged resources located in the APK under test. Bug: 74359828 Test: make -j56 RunSettingsRoboTests Change-Id: I050db81a92decefea23314b5ec7a62f77ff4bb2b
131 lines
4.6 KiB
Java
131 lines
4.6 KiB
Java
/*
|
|
* Copyright (C) 2017 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.notification;
|
|
|
|
import static android.app.NotificationChannel.DEFAULT_CHANNEL_ID;
|
|
import static android.app.NotificationManager.IMPORTANCE_LOW;
|
|
import static android.app.NotificationManager.IMPORTANCE_NONE;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
import static org.junit.Assert.assertFalse;
|
|
import static org.junit.Assert.assertTrue;
|
|
import static org.mockito.Mockito.mock;
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import android.app.NotificationChannel;
|
|
import android.app.NotificationManager;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.UserManager;
|
|
|
|
import androidx.preference.Preference;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Mock;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.RuntimeEnvironment;
|
|
import org.robolectric.shadows.ShadowApplication;
|
|
|
|
@RunWith(RobolectricTestRunner.class)
|
|
public class AppLinkPreferenceControllerTest {
|
|
|
|
private Context mContext;
|
|
@Mock
|
|
private NotificationManager mNm;
|
|
@Mock
|
|
private UserManager mUm;
|
|
|
|
private AppLinkPreferenceController mController;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
ShadowApplication shadowApplication = ShadowApplication.getInstance();
|
|
shadowApplication.setSystemService(Context.NOTIFICATION_SERVICE, mNm);
|
|
shadowApplication.setSystemService(Context.USER_SERVICE, mUm);
|
|
mContext = RuntimeEnvironment.application;
|
|
mController = spy(new AppLinkPreferenceController(mContext));
|
|
}
|
|
|
|
@Test
|
|
public void testNoCrashIfNoOnResume() {
|
|
mController.isAvailable();
|
|
mController.updateState(mock(Preference.class));
|
|
}
|
|
|
|
@Test
|
|
public void testIsAvailable_notIfNull() {
|
|
mController.onResume(null, null, null, null);
|
|
assertFalse(mController.isAvailable());
|
|
}
|
|
|
|
@Test
|
|
public void testIsAvailable_notIfAppBlocked() {
|
|
NotificationBackend.AppRow appRow = new NotificationBackend.AppRow();
|
|
appRow.banned = true;
|
|
mController.onResume(appRow, null, null, null);
|
|
assertFalse(mController.isAvailable());
|
|
}
|
|
|
|
@Test
|
|
public void testIsAvailable_notIfChannelBlocked() {
|
|
NotificationBackend.AppRow appRow = new NotificationBackend.AppRow();
|
|
NotificationChannel channel = mock(NotificationChannel.class);
|
|
when(channel.getImportance()).thenReturn(IMPORTANCE_NONE);
|
|
mController.onResume(appRow, channel, null, null);
|
|
assertFalse(mController.isAvailable());
|
|
}
|
|
|
|
@Test
|
|
public void testIsAvailable_notNoIntent() {
|
|
NotificationBackend.AppRow appRow = new NotificationBackend.AppRow();
|
|
NotificationChannel channel = mock(NotificationChannel.class);
|
|
when(channel.getImportance()).thenReturn(IMPORTANCE_LOW);
|
|
when(channel.getId()).thenReturn(DEFAULT_CHANNEL_ID);
|
|
mController.onResume(appRow, channel, null, null);
|
|
assertFalse(mController.isAvailable());
|
|
}
|
|
|
|
@Test
|
|
public void testIsAvailable() {
|
|
NotificationBackend.AppRow appRow = new NotificationBackend.AppRow();
|
|
appRow.settingsIntent = new Intent("test");
|
|
NotificationChannel channel = mock(NotificationChannel.class);
|
|
when(channel.getImportance()).thenReturn(IMPORTANCE_LOW);
|
|
when(channel.getId()).thenReturn(DEFAULT_CHANNEL_ID);
|
|
mController.onResume(appRow, channel, null, null);
|
|
assertTrue(mController.isAvailable());
|
|
}
|
|
|
|
@Test
|
|
public void testUpdateState() {
|
|
NotificationBackend.AppRow appRow = new NotificationBackend.AppRow();
|
|
Intent intent = new Intent("action");
|
|
appRow.settingsIntent = intent;
|
|
mController.onResume(appRow, null, null, null);
|
|
|
|
Preference pref = new Preference(RuntimeEnvironment.application);
|
|
mController.updateState(pref);
|
|
|
|
assertEquals(intent, pref.getIntent());
|
|
}
|
|
}
|