Add test for ReviewOngoingUsageFragment

Bug: 161007415
Test: atest PermissionControllerInProcessTests
Change-Id: I308b7fc53806096764fa8afc3193928f6c24eb17
diff --git a/tests/inprocess/src/com/android/permissioncontroller/permission/debug/ReviewOngoingUsageFragmentTest.kt b/tests/inprocess/src/com/android/permissioncontroller/permission/debug/ReviewOngoingUsageFragmentTest.kt
new file mode 100644
index 0000000..d315f50
--- /dev/null
+++ b/tests/inprocess/src/com/android/permissioncontroller/permission/debug/ReviewOngoingUsageFragmentTest.kt
@@ -0,0 +1,64 @@
+/*
+ * Copyright (C) 2020 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.permissioncontroller.permission.debug
+
+import android.Manifest.permission.CAMERA
+import android.permission.cts.PermissionUtils.grantPermission
+import android.permission.cts.PermissionUtils.install
+import android.permission.cts.PermissionUtils.uninstallApp
+import androidx.test.espresso.Espresso.onView
+import androidx.test.espresso.action.ViewActions.click
+import androidx.test.espresso.matcher.RootMatchers.isDialog
+import androidx.test.espresso.matcher.ViewMatchers.withText
+import androidx.test.rule.ActivityTestRule
+import org.junit.After
+import org.junit.Rule
+import org.junit.Test
+
+/**
+ * Simple tests for {@link ReviewOngoingUsageFragment}
+ */
+class ReviewOngoingUsageFragmentTest : PermissionHub2Test() {
+    private val APK =
+            "/data/local/tmp/permissioncontroller/tests/inprocess/AppThatUsesCameraPermission.apk"
+    private val APP = "com.android.permissioncontroller.tests.appthatrequestpermission"
+    private val APP_LABEL = "CameraRequestApp"
+
+    @get:Rule
+    val managePermissionsActivity = object : ActivityTestRule<ReviewOngoingUsageActivity>(
+            ReviewOngoingUsageActivity::class.java) {
+        override fun beforeActivityLaunched() {
+            install(APK)
+            grantPermission(APP, CAMERA)
+
+            accessCamera()
+        }
+    }
+
+    @Test
+    fun cameraAccessShouldBeShown() {
+        // Click on app entry
+        onView(withText(APP_LABEL))
+                .inRoot(isDialog())
+                .perform(click())
+    }
+
+    @After
+    fun uninstallTestApp() {
+        uninstallApp(APP)
+    }
+}
\ No newline at end of file