summaryrefslogtreecommitdiff
path: root/tests/tests/companion/multiprocess/src/android/companion/cts/multiprocess/RebindServiceTest.kt
blob: 0684fc0b1e06ee8dd78d2f7417abdca67dde3007 (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
/*
 * 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 android.companion.cts.multiprocess

import android.companion.cts.common.DEVICE_DISPLAY_NAME_A
import android.companion.cts.common.DEVICE_DISPLAY_NAME_B
import android.companion.cts.common.PRIMARY_PROCESS_NAME
import android.companion.cts.common.SECONDARY_PROCESS_NAME
import android.companion.cts.common.TestBase
import android.companion.cts.common.assertApplicationBinds
import android.companion.cts.common.killProcess
import android.os.SystemClock
import android.platform.test.annotations.AppModeFull
import androidx.test.ext.junit.runners.AndroidJUnit4
import kotlin.test.fail
import org.junit.Test
import org.junit.runner.RunWith

/**
 * Test CDM binderDied rebinding.
 * Run: atest CtsCompanionDeviceManagerMultiProcessTestCases:RebindServiceTest
 */
@AppModeFull(reason = "CompanionDeviceManager APIs are not available to the instant apps.")
@RunWith(AndroidJUnit4::class)
class RebindServiceTest : TestBase() {
    @Test
    fun test_rebind_primary() {
        // Create a self-managed association.
        val associationId = createSelfManagedAssociation(DEVICE_DISPLAY_NAME_A)
        // Publish device's presence and wait for callback.
        cdm.notifyDeviceAppeared(associationId)
        assertApplicationBinds(cdm)
        // Wait for secondary service to start.
        SystemClock.sleep(2000)
        // Kill both primary and secondary processes.
        killProcess(PRIMARY_PROCESS_NAME)
        killProcess(SECONDARY_PROCESS_NAME)

        // Schedule rebind in 10 seconds but give it 11 seconds.
        SystemClock.sleep(11000)
        // Primary and secondary services should not be bound.
        assertServiceNotBound("PrimaryCompanionService")
        assertServiceNotBound("SecondaryCompanionService")
        // Recall notifyDeviceAppeared, primary and secondary services should be bound.
        cdm.notifyDeviceAppeared(associationId)

        assertApplicationBinds(cdm)
        assertServiceBound("PrimaryCompanionService")
        assertServiceBound("SecondaryCompanionService")
    }

    @Test
    fun test_rebind_secondary() {
        // Create a self-managed association.
        val associationId = createSelfManagedAssociation(DEVICE_DISPLAY_NAME_A)

        // Publish device's presence and wait for callback.
        cdm.notifyDeviceAppeared(associationId)

        assertApplicationBinds(cdm)
        // Wait for secondary service to start.
        SystemClock.sleep(2000)
        // Kill secondary process.
        killProcess(SECONDARY_PROCESS_NAME)

        // Schedule rebind in 10 seconds but give it 11 seconds.
        SystemClock.sleep(11000)
        // Secondary service should be bound.
        assertServiceBound("SecondaryCompanionService")
        // Primary service should be still bound.
        assertServiceBound("PrimaryCompanionService")
    }

    @Test
    fun test_rebind_by_application() {
        // Create a self-managed association.
        val idA = createSelfManagedAssociation(DEVICE_DISPLAY_NAME_A)
        val idB = createSelfManagedAssociation(DEVICE_DISPLAY_NAME_B)

        // Publish device's presence and wait for callback.
        cdm.notifyDeviceAppeared(idA)
        cdm.notifyDeviceAppeared(idB)

        assertApplicationBinds(cdm)
        // Wait for secondary service to start.
        SystemClock.sleep(2000)
        // Kill the primary process.
        killProcess(PRIMARY_PROCESS_NAME)
        killProcess(SECONDARY_PROCESS_NAME)
        // Primary service should be unbound.
        assertServiceNotBound("PrimaryCompanionService")

        // Rebind by the application
        cdm.notifyDeviceAppeared(idA)
        cdm.notifyDeviceAppeared(idB)

        // Primary service should be bound again.
        assertServiceBound("PrimaryCompanionService")
    }

    private fun assertServiceBound(component: String) {
        val output = runShellCommand("dumpsys activity services $component")
        val lines = output.lines()
        lines.forEach { line ->
            if (line.contains("ConnectionRecord") && line.contains(component)) {
                return
            }
        }

        fail("Service $component not bound.")
    }

    private fun assertServiceNotBound(component: String) {
        val output = runShellCommand("dumpsys activity services $component")
        val lines = output.lines()
        lines.forEach { line ->
            if (line.contains("ConnectionRecord") && line.contains(component)) {
                fail("Service $component should not bound.")
            }
        }
    }
}