blob: 86dd1e8e1d9935ec2ab8ac8ee98da6c8c32af270 [file] [log] [blame]
/*
* 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.permission3.cts
import android.os.Build
import androidx.test.filters.SdkSuppress
import org.junit.Assume.assumeFalse
import org.junit.Before
import org.junit.Test
/**
* Tests media storage supergroup behavior. I.e., on a T+ platform, for legacy (targetSdk<T) apps,
* the storage permission groups (STORAGE, AURAL, and VISUAL) form a supergroup, which effectively
* treats them as one group and therefore their permission state must always be equal.
*/
@SdkSuppress(minSdkVersion = Build.VERSION_CODES.TIRAMISU, codeName = "Tiramisu")
class PermissionTestMediaPermissions : BaseUsePermissionTest() {
private fun assertAllPermissionState(state: Boolean) {
for (permission in STORAGE_AND_MEDIA_PERMISSIONS) {
assertAppHasPermission(permission, state)
}
}
@Before
fun assumeNotTvOrWatch() {
assumeFalse(isTv)
assumeFalse(isWatch)
}
@Before
fun installApp23() {
installPackage(APP_APK_PATH_23)
}
@Before
fun assertAppStartsWithNoPermissions() {
assertAllPermissionState(false)
}
@Test
fun testWhenRESIsGrantedFromGrantDialogThenShouldGrantAllPermissions() {
requestAppPermissionsAndAssertResult(
android.Manifest.permission.READ_EXTERNAL_STORAGE to true
) {
clickPermissionRequestAllowButton()
}
assertAllPermissionState(true)
}
@Test
fun testWhenRESIsGrantedManuallyThenShouldGrantAllPermissions() {
grantAppPermissions(android.Manifest.permission.READ_EXTERNAL_STORAGE, targetSdk = 23)
assertAllPermissionState(true)
}
@Test
fun testWhenAuralIsGrantedManuallyThenShouldGrantAllPermissions() {
grantAppPermissions(android.Manifest.permission.READ_MEDIA_AUDIO, targetSdk = 23)
assertAllPermissionState(true)
}
@Test
fun testWhenVisualIsGrantedManuallyThenShouldGrantAllPermissions() {
grantAppPermissions(android.Manifest.permission.READ_MEDIA_VIDEO, targetSdk = 23)
assertAllPermissionState(true)
}
@Test
fun testWhenRESIsDeniedFromGrantDialogThenShouldDenyAllPermissions() {
requestAppPermissionsAndAssertResult(
android.Manifest.permission.READ_EXTERNAL_STORAGE to false
) {
clickPermissionRequestDenyButton()
}
assertAllPermissionState(false)
}
@Test
fun testWhenRESIsDeniedManuallyThenShouldDenyAllPermissions() {
grantAppPermissions(android.Manifest.permission.READ_EXTERNAL_STORAGE, targetSdk = 23)
revokeAppPermissions(android.Manifest.permission.READ_EXTERNAL_STORAGE, targetSdk = 23)
assertAllPermissionState(false)
}
@Test
fun testWhenAuralIsDeniedManuallyThenShouldDenyAllPermissions() {
grantAppPermissions(android.Manifest.permission.READ_MEDIA_AUDIO, targetSdk = 23)
revokeAppPermissions(android.Manifest.permission.READ_MEDIA_AUDIO, targetSdk = 23)
assertAllPermissionState(false)
}
@Test
fun testWhenVisualIsDeniedManuallyThenShouldDenyAllPermissions() {
grantAppPermissions(android.Manifest.permission.READ_MEDIA_VIDEO, targetSdk = 23)
revokeAppPermissions(android.Manifest.permission.READ_MEDIA_VIDEO, targetSdk = 23)
assertAllPermissionState(false)
}
}