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
|
/*
* Copyright (C) 2019 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.net
import android.content.ComponentName
import android.content.Context
import android.content.Intent
import android.net.networkstack.NetworkStackClientBase
import android.os.IBinder
import com.android.server.net.integrationtests.TestNetworkStackService
import org.mockito.Mockito.any
import org.mockito.Mockito.spy
import org.mockito.Mockito.timeout
import org.mockito.Mockito.verify
import kotlin.test.fail
const val TEST_ACTION_SUFFIX = ".Test"
class TestNetworkStackClient(private val context: Context) : NetworkStackClientBase() {
// TODO: consider switching to TrackRecord for more expressive checks
private val lastCallbacks = HashMap<Network, INetworkMonitorCallbacks>()
private val moduleConnector = ConnectivityModuleConnector { _, action, _, _ ->
val intent = Intent(action)
val serviceName = TestNetworkStackService::class.qualifiedName
?: fail("TestNetworkStackService name not found")
intent.component = ComponentName(context.packageName, serviceName)
return@ConnectivityModuleConnector intent
}.also { it.init(context) }
fun start() {
moduleConnector.startModuleService(
INetworkStackConnector::class.qualifiedName + TEST_ACTION_SUFFIX,
NetworkStack.PERMISSION_MAINLINE_NETWORK_STACK) { connector ->
onNetworkStackConnected(INetworkStackConnector.Stub.asInterface(connector))
}
}
// base may be an instance of an inaccessible subclass, so non-spyable.
// Use a known open class that delegates to the original instance for all methods except
// asBinder. asBinder needs to use its own non-delegated implementation as otherwise it would
// return a binder token to a class that is not spied on.
open class NetworkMonitorCallbacksWrapper(private val base: INetworkMonitorCallbacks) :
INetworkMonitorCallbacks.Stub(), INetworkMonitorCallbacks by base {
// asBinder is implemented by both base class and delegate: specify explicitly
override fun asBinder(): IBinder {
return super.asBinder()
}
}
override fun makeNetworkMonitor(network: Network, name: String?, cb: INetworkMonitorCallbacks) {
val cbSpy = spy(NetworkMonitorCallbacksWrapper(cb))
lastCallbacks[network] = cbSpy
super.makeNetworkMonitor(network, name, cbSpy)
}
fun verifyNetworkMonitorCreated(network: Network, timeoutMs: Long) {
val cb = lastCallbacks[network]
?: fail("NetworkMonitor for network $network not requested")
verify(cb, timeout(timeoutMs)).onNetworkMonitorCreated(any())
}
}
|