blob: f2fa48c493ce6c5715c470b207974a1d158217e3 [file] [log] [blame]
Emilian Peeve20c6372018-08-14 18:45:53 +01001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_NDEBUG 0
18#define LOG_TAG "CameraCharacteristicsPermission"
19
20#include <gtest/gtest.h>
21
22#include <binder/ProcessState.h>
23#include <utils/Errors.h>
24#include <utils/Log.h>
25#include <camera/CameraMetadata.h>
26#include <camera/Camera.h>
27#include <android/hardware/ICameraService.h>
28
29using namespace android;
30using namespace android::hardware;
31
32class CameraCharacteristicsPermission : public ::testing::Test {
33protected:
34
35 CameraCharacteristicsPermission() : numCameras(0){}
36 //Gtest interface
37 void SetUp() override;
38 void TearDown() override;
39
40 int32_t numCameras;
41 sp<ICameraService> mCameraService;
42};
43
44void CameraCharacteristicsPermission::SetUp() {
45 ::android::binder::Status rc;
46 ProcessState::self()->startThreadPool();
47 sp<IServiceManager> sm = defaultServiceManager();
48 sp<IBinder> binder = sm->getService(String16("media.camera"));
49 mCameraService = interface_cast<ICameraService>(binder);
50 rc = mCameraService->getNumberOfCameras(
51 hardware::ICameraService::CAMERA_TYPE_ALL, &numCameras);
52 EXPECT_TRUE(rc.isOk());
53}
54
55void CameraCharacteristicsPermission::TearDown() {
56 mCameraService.clear();
57}
58
59// Revoking and acquiring permissions automatically might not be possible.
60// Test the functionality for removal of camera characteristics needing
61// a camera permission.
62TEST_F(CameraCharacteristicsPermission, TestCameraPermission) {
63 for (int32_t cameraId = 0; cameraId < numCameras; cameraId++) {
64
65 String16 cameraIdStr = String16(String8::format("%d", cameraId));
66 bool isSupported = false;
67 auto rc = mCameraService->supportsCameraApi(cameraIdStr,
68 hardware::ICameraService::API_VERSION_2, &isSupported);
69 EXPECT_TRUE(rc.isOk());
70 if (!isSupported) {
71 continue;
72 }
73
74 CameraMetadata metadata;
75 std::vector<int32_t> tagsNeedingPermission;
Shuzhen Wangd4abdf72021-05-28 11:22:50 -070076 rc = mCameraService->getCameraCharacteristics(cameraIdStr,
Austin Borger18b30a72022-10-27 12:20:29 -070077 /*targetSdkVersion*/__ANDROID_API_FUTURE__,
78 /*overrideToPortrait*/false, &metadata);
Emilian Peeve20c6372018-08-14 18:45:53 +010079 ASSERT_TRUE(rc.isOk());
80 EXPECT_FALSE(metadata.isEmpty());
81 EXPECT_EQ(metadata.removePermissionEntries(CAMERA_METADATA_INVALID_VENDOR_ID,
82 &tagsNeedingPermission), NO_ERROR);
83 camera_metadata_entry_t availableCharacteristics =
84 metadata.find(ANDROID_REQUEST_AVAILABLE_CHARACTERISTICS_KEYS);
85 EXPECT_TRUE(0 < availableCharacteristics.count);
86
87 std::vector<uint32_t> availableKeys;
88 availableKeys.reserve(availableCharacteristics.count);
89 availableKeys.insert(availableKeys.begin(), availableCharacteristics.data.i32,
90 availableCharacteristics.data.i32 + availableCharacteristics.count);
91
92 for (const auto &key : tagsNeedingPermission) {
93 ASSERT_FALSE(metadata.exists(key));
94 auto it = std::find(availableKeys.begin(), availableKeys.end(), key);
95 ASSERT_TRUE(it == availableKeys.end());
96 }
97 }
98}