Current failing tests: ab/I64100010182936387 Had to Ignore some of com.android.settings.accessibility tests, which will be fixed separately Bug: 261728063 Test: atest SettingsRoboTests -- --test-arg com.android.tradefed.testtype.IsolatedHostTest:java-flags:-XX:CompressedClassSpaceSize=3g Change-Id: I4a0cb992db924936826e0c9808accc78dddb5f30
90 lines
3.1 KiB
Java
90 lines
3.1 KiB
Java
/*
|
|
* Copyright (C) 2023 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.accessibility;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.mockito.Mockito.doNothing;
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.verify;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import android.content.Context;
|
|
|
|
import androidx.fragment.app.FragmentActivity;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceScreen;
|
|
import androidx.test.core.app.ApplicationProvider;
|
|
|
|
import com.android.settings.utils.ActivityControllerWrapper;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Rule;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Mock;
|
|
import org.mockito.Spy;
|
|
import org.mockito.junit.MockitoJUnit;
|
|
import org.mockito.junit.MockitoRule;
|
|
import org.robolectric.Robolectric;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.annotation.Config;
|
|
|
|
/** Tests for {@link ViewAllBluetoothDevicesPreferenceController}. */
|
|
@RunWith(RobolectricTestRunner.class)
|
|
@Config(shadows = {
|
|
com.android.settings.testutils.shadow.ShadowFragment.class,
|
|
})
|
|
public class ViewAllBluetoothDevicesPreferenceControllerTest {
|
|
|
|
@Rule
|
|
public MockitoRule mocks = MockitoJUnit.rule();
|
|
private final Context mContext = ApplicationProvider.getApplicationContext();
|
|
private final Preference mPreference = new Preference(mContext);
|
|
private final String TEST_KEY = "test_key";
|
|
|
|
@Spy
|
|
private HearingDevicePairingDetail mFragment = new HearingDevicePairingDetail();
|
|
private FragmentActivity mActivity;
|
|
@Mock
|
|
private PreferenceScreen mScreen;
|
|
private ViewAllBluetoothDevicesPreferenceController mController;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
mActivity = (FragmentActivity) ActivityControllerWrapper.setup(
|
|
Robolectric.buildActivity(FragmentActivity.class)).get();
|
|
when(mFragment.getContext()).thenReturn(mContext);
|
|
when(mFragment.getActivity()).thenReturn(mActivity);
|
|
|
|
mController = spy(new ViewAllBluetoothDevicesPreferenceController(mActivity, TEST_KEY));
|
|
mController.init(mFragment);
|
|
mController.displayPreference(mScreen);
|
|
}
|
|
|
|
@Test
|
|
public void handlePreferenceTreeClick_expectedPreference_launchBluetoothPairingDetail() {
|
|
doNothing().when(mController).launchBluetoothPairingDetail();
|
|
mPreference.setKey(TEST_KEY);
|
|
|
|
boolean status = mController.handlePreferenceTreeClick(mPreference);
|
|
|
|
verify(mController).launchBluetoothPairingDetail();
|
|
assertThat(status).isTrue();
|
|
}
|
|
}
|