1ce742ae45
Adding unit tests for granting and revoking temporary and renewable trust. These unit tests should cover basic cases, and that the phone should be locked/unlocked when expected. Discovered a bug: revoking trust now also downgrades from trustable and will no longer listen for a trustable downgrade. Also modified assertLocked and assertUnlocked in an attempt to reduce flakiness. Test: atest TrustTests --iterations Bug: 221155933 Change-Id: I4e0e213427111dbe25a76ff67b6f36e57e295793
88 lines
3.6 KiB
XML
88 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ 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.
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="android.trust.test"
|
|
android:targetSandboxVersion="2">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_KEYGUARD_SECURE_STORAGE" />
|
|
<uses-permission android:name="android.permission.BIND_DEVICE_ADMIN" />
|
|
<uses-permission android:name="android.permission.CONTROL_KEYGUARD" />
|
|
<uses-permission android:name="android.permission.DEVICE_POWER" />
|
|
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
|
|
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
|
|
<uses-permission android:name="android.permission.MANAGE_USERS" />
|
|
<uses-permission android:name="android.permission.PROVIDE_TRUST_AGENT" />
|
|
<uses-permission android:name="android.permission.TRUST_LISTENER" />
|
|
|
|
<application>
|
|
<uses-library android:name="android.test.runner"/>
|
|
<activity android:name="android.trust.TrustTestActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service
|
|
android:name=".UserUnlockRequestTrustAgent"
|
|
android:exported="true"
|
|
android:label="Test Agent"
|
|
android:permission="android.permission.BIND_TRUST_AGENT">
|
|
<intent-filter>
|
|
<action android:name="android.service.trust.TrustAgentService" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".LockUserTrustAgent"
|
|
android:exported="true"
|
|
android:label="Test Agent"
|
|
android:permission="android.permission.BIND_TRUST_AGENT">
|
|
<intent-filter>
|
|
<action android:name="android.service.trust.TrustAgentService" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".GrantAndRevokeTrustAgent"
|
|
android:exported="true"
|
|
android:label="Test Agent"
|
|
android:permission="android.permission.BIND_TRUST_AGENT">
|
|
<intent-filter>
|
|
<action android:name="android.service.trust.TrustAgentService" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".TemporaryAndRenewableTrustAgent"
|
|
android:exported="true"
|
|
android:label="Test Agent"
|
|
android:permission="android.permission.BIND_TRUST_AGENT">
|
|
<intent-filter>
|
|
<action android:name="android.service.trust.TrustAgentService" />
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
|
|
<!-- self-instrumenting test package. -->
|
|
<instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
|
|
android:targetPackage="android.trust.test">
|
|
</instrumentation>
|
|
</manifest>
|