summaryrefslogtreecommitdiff
path: root/packages/SystemUI/tests/src/com/android/systemui/controls/management/ControlsProviderSelectorActivityTest.kt
blob: 8dfd22378a14d84faaee32b175281d28b24213e3 (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
/*
 * 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.systemui.controls.management

import android.app.Dialog
import android.content.ComponentName
import android.content.Intent
import android.content.pm.ApplicationInfo
import android.content.pm.ServiceInfo
import android.graphics.drawable.Drawable
import android.os.Bundle
import android.testing.AndroidTestingRunner
import android.testing.TestableLooper
import android.window.OnBackInvokedCallback
import android.window.OnBackInvokedDispatcher
import androidx.test.filters.SmallTest
import androidx.test.rule.ActivityTestRule
import androidx.test.runner.intercepting.SingleActivityFactory
import com.android.systemui.SysuiTestCase
import com.android.systemui.controls.ControlsServiceInfo
import com.android.systemui.controls.controller.ControlsController
import com.android.systemui.controls.panels.AuthorizedPanelsRepository
import com.android.systemui.dagger.qualifiers.Background
import com.android.systemui.dagger.qualifiers.Main
import com.android.systemui.settings.UserTracker
import com.android.systemui.util.mockito.any
import com.android.systemui.util.mockito.argumentCaptor
import com.android.systemui.util.mockito.capture
import com.android.systemui.util.mockito.eq
import com.android.systemui.util.mockito.mock
import com.android.systemui.util.mockito.whenever
import com.google.common.truth.Truth.assertThat
import com.google.common.util.concurrent.MoreExecutors
import java.util.concurrent.CountDownLatch
import java.util.concurrent.Executor
import java.util.function.Consumer
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.ArgumentCaptor
import org.mockito.ArgumentMatchers
import org.mockito.Captor
import org.mockito.Mock
import org.mockito.Mockito
import org.mockito.Mockito.doReturn
import org.mockito.Mockito.never
import org.mockito.Mockito.verify
import org.mockito.Mockito.verifyNoMoreInteractions
import org.mockito.MockitoAnnotations

@SmallTest
@RunWith(AndroidTestingRunner::class)
@TestableLooper.RunWithLooper
class ControlsProviderSelectorActivityTest : SysuiTestCase() {
    @Main private val executor: Executor = MoreExecutors.directExecutor()

    @Background private val backExecutor: Executor = MoreExecutors.directExecutor()

    @Mock lateinit var listingController: ControlsListingController

    @Mock lateinit var controlsController: ControlsController

    @Mock lateinit var userTracker: UserTracker

    @Mock lateinit var authorizedPanelsRepository: AuthorizedPanelsRepository

    @Mock lateinit var dialogFactory: PanelConfirmationDialogFactory

    private var latch: CountDownLatch = CountDownLatch(1)

    @Mock private lateinit var mockDispatcher: OnBackInvokedDispatcher
    @Captor private lateinit var captureCallback: ArgumentCaptor<OnBackInvokedCallback>

    @Rule
    @JvmField
    var activityRule =
        ActivityTestRule(
            object :
                SingleActivityFactory<TestableControlsProviderSelectorActivity>(
                    TestableControlsProviderSelectorActivity::class.java
                ) {
                override fun create(intent: Intent?): TestableControlsProviderSelectorActivity {
                    return TestableControlsProviderSelectorActivity(
                        executor,
                        backExecutor,
                        listingController,
                        controlsController,
                        userTracker,
                        authorizedPanelsRepository,
                        dialogFactory,
                        mockDispatcher,
                        latch
                    )
                }
            },
            false,
            false
        )

    @Before
    fun setUp() {
        MockitoAnnotations.initMocks(this)
        val intent = Intent()
        intent.putExtra(ControlsProviderSelectorActivity.BACK_SHOULD_EXIT, true)
        activityRule.launchActivity(intent)
    }

    @Test
    fun testBackCallbackRegistrationAndUnregistration() {
        // 1. ensure that launching the activity results in it registering a callback
        verify(mockDispatcher)
            .registerOnBackInvokedCallback(
                ArgumentMatchers.eq(OnBackInvokedDispatcher.PRIORITY_DEFAULT),
                captureCallback.capture()
            )
        activityRule.finishActivity()
        latch.await() // ensure activity is finished
        // 2. ensure that when the activity is finished, it unregisters the same callback
        verify(mockDispatcher).unregisterOnBackInvokedCallback(captureCallback.value)
    }

    @Test
    fun testOnAppSelectedForNonPanelStartsFavoritingActivity() {
        val info = ControlsServiceInfo(ComponentName("test_pkg", "service"), "", null)
        activityRule.activity.onAppSelected(info)

        verifyNoMoreInteractions(dialogFactory)

        assertThat(activityRule.activity.lastStartedActivity?.component?.className)
            .isEqualTo(ControlsFavoritingActivity::class.java.name)

        assertThat(activityRule.activity.triedToFinish).isTrue()
    }

    @Test
    fun testOnAppSelectedForPanelTriggersDialog() {
        val label = "label"
        val info =
            ControlsServiceInfo(
                ComponentName("test_pkg", "service"),
                label,
                ComponentName("test_pkg", "activity")
            )

        val dialog: Dialog = mock()
        whenever(dialogFactory.createConfirmationDialog(any(), any(), any())).thenReturn(dialog)

        activityRule.activity.onAppSelected(info)
        verify(dialogFactory).createConfirmationDialog(any(), eq(label), any())
        verify(dialog).show()

        assertThat(activityRule.activity.triedToFinish).isFalse()
    }

    @Test
    fun dialogAcceptAddsPackage() {
        val label = "label"
        val info =
            ControlsServiceInfo(
                ComponentName("test_pkg", "service"),
                label,
                ComponentName("test_pkg", "activity")
            )

        val dialog: Dialog = mock()
        whenever(dialogFactory.createConfirmationDialog(any(), any(), any())).thenReturn(dialog)

        activityRule.activity.onAppSelected(info)

        val captor: ArgumentCaptor<Consumer<Boolean>> = argumentCaptor()
        verify(dialogFactory).createConfirmationDialog(any(), any(), capture(captor))

        captor.value.accept(true)

        val setCaptor: ArgumentCaptor<Set<String>> = argumentCaptor()
        verify(authorizedPanelsRepository).addAuthorizedPanels(capture(setCaptor))
        assertThat(setCaptor.value).containsExactly(info.componentName.packageName)

        assertThat(activityRule.activity.triedToFinish).isTrue()
    }

    @Test
    fun dialogCancelDoesntAddPackage() {
        val label = "label"
        val info =
            ControlsServiceInfo(
                ComponentName("test_pkg", "service"),
                label,
                ComponentName("test_pkg", "activity")
            )

        val dialog: Dialog = mock()
        whenever(dialogFactory.createConfirmationDialog(any(), any(), any())).thenReturn(dialog)

        activityRule.activity.onAppSelected(info)

        val captor: ArgumentCaptor<Consumer<Boolean>> = argumentCaptor()
        verify(dialogFactory).createConfirmationDialog(any(), any(), capture(captor))

        captor.value.accept(false)

        verify(authorizedPanelsRepository, never()).addAuthorizedPanels(any())

        assertThat(activityRule.activity.triedToFinish).isFalse()
    }

    class TestableControlsProviderSelectorActivity(
        executor: Executor,
        backExecutor: Executor,
        listingController: ControlsListingController,
        controlsController: ControlsController,
        userTracker: UserTracker,
        authorizedPanelsRepository: AuthorizedPanelsRepository,
        dialogFactory: PanelConfirmationDialogFactory,
        private val mockDispatcher: OnBackInvokedDispatcher,
        private val latch: CountDownLatch
    ) :
        ControlsProviderSelectorActivity(
            executor,
            backExecutor,
            listingController,
            controlsController,
            userTracker,
            authorizedPanelsRepository,
            dialogFactory
        ) {

        var lastStartedActivity: Intent? = null
        var triedToFinish = false

        override fun getOnBackInvokedDispatcher(): OnBackInvokedDispatcher {
            return mockDispatcher
        }

        override fun startActivity(intent: Intent?, options: Bundle?) {
            lastStartedActivity = intent
        }

        override fun onStop() {
            super.onStop()
            // ensures that test runner thread does not proceed until ui thread is done
            latch.countDown()
        }

        override fun animateExitAndFinish() {
            // Activity should only be finished from the rule.
            triedToFinish = true
        }
    }

    companion object {
        private fun ControlsServiceInfo(
            componentName: ComponentName,
            label: CharSequence,
            panelComponentName: ComponentName? = null
        ): ControlsServiceInfo {
            val serviceInfo =
                ServiceInfo().apply {
                    applicationInfo = ApplicationInfo()
                    packageName = componentName.packageName
                    name = componentName.className
                }
            return Mockito.spy(ControlsServiceInfo(mock(), serviceInfo)).apply {
                doReturn(label).`when`(this).loadLabel()
                doReturn(mock<Drawable>()).`when`(this).loadIcon()
                doReturn(panelComponentName).`when`(this).panelActivity
            }
        }
    }
}