/* * Copyright (C) 2022 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.keyguard import android.testing.AndroidTestingRunner import androidx.core.view.accessibility.AccessibilityNodeInfoCompat import androidx.test.filters.SmallTest import com.android.systemui.R import com.android.systemui.SysuiTestCase import com.google.common.truth.Truth.assertThat import org.junit.Before import org.junit.Test import org.junit.runner.RunWith @RunWith(AndroidTestingRunner::class) @SmallTest class KeyguardUserSwitcherAnchorTest : SysuiTestCase() { private lateinit var keyguardUserSwitcherAnchor: KeyguardUserSwitcherAnchor @Before fun setUp() { keyguardUserSwitcherAnchor = KeyguardUserSwitcherAnchor(context) } @Test fun roleDescription_is_set_to_pulldown_menu() { // GIVEN val roleDescriptionString = context.getString(R.string.accessibility_multi_user_list_switcher) // WHEN val result = keyguardUserSwitcherAnchor.createAccessibilityNodeInfo() // THEN assertThat( AccessibilityNodeInfoCompat.wrap(result).roleDescription ).isEqualTo(roleDescriptionString) } }