/* * Copyright 2021 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. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using ::aidl::android::hardware::cas::BnCasListener; using android::Condition; using android::Mutex; using android::sp; using android::hardware::hidl_string; using android::hardware::hidl_vec; using android::hardware::Return; using android::hardware::Void; using android::hardware::cas::V1_2::Status; using android::hardware::cas::V1_2::StatusEvent; using ICasAidl = ::aidl::android::hardware::cas::ICas; using ICasHidl = android::hardware::cas::V1_2::ICas; using ICasListenerHidl = android::hardware::cas::V1_2::ICasListener; using IMediaCasServiceAidl = ::aidl::android::hardware::cas::IMediaCasService; using IMediaCasServiceHidl = android::hardware::cas::V1_2::IMediaCasService; using ScramblingModeAidl = ::aidl::android::hardware::cas::ScramblingMode; using ScramblingModeHidl = android::hardware::cas::V1_2::ScramblingMode; using SessionIntentAidl = ::aidl::android::hardware::cas::SessionIntent; using SessionIntentHidl = android::hardware::cas::V1_2::SessionIntent; using ::ndk::ScopedAStatus; using ::testing::AssertionResult; using namespace aidl::android::hardware::tv::tuner; const std::string MEDIA_CAS_AIDL_SERVICE_NAME = "android.hardware.cas.IMediaCasService/default"; class MediaCasListener : public ICasListenerHidl, public BnCasListener { public: virtual Return onEvent(int32_t /*event*/, int32_t /*arg*/, const hidl_vec& /*data*/) override { return Void(); } virtual Return onSessionEvent(const hidl_vec& /*sessionId*/, int32_t /*event*/, int32_t /*arg*/, const hidl_vec& /*data*/) override { return Void(); } virtual Return onStatusUpdate(StatusEvent /*event*/, int32_t /*arg*/) override { return Void(); } ScopedAStatus onEvent(int32_t /*in_event*/, int32_t /*in_arg*/, const std::vector& /*in_data*/) override { return ScopedAStatus::ok(); } ScopedAStatus onSessionEvent(const std::vector& /*in_sessionId*/, int32_t /*in_event*/, int32_t /*in_arg*/, const std::vector& /*in_data*/) override { return ScopedAStatus::ok(); } ScopedAStatus onStatusUpdate(::aidl::android::hardware::cas::StatusEvent /*in_event*/, int32_t /*in_number*/) override { return ScopedAStatus::ok(); } }; class DescramblerTests { public: void setService(std::shared_ptr tuner) { mService = tuner; } void setCasServiceHidl(sp casService) { mMediaCasServiceHidl = casService; } void setCasServiceAidl(std::shared_ptr casService) { mMediaCasServiceAidl = casService; } AssertionResult setKeyToken(std::vector& token); AssertionResult openDescrambler(int32_t demuxId); AssertionResult addPid(DemuxPid pid, std::shared_ptr optionalSourceFilter); AssertionResult removePid(DemuxPid pid, std::shared_ptr optionalSourceFilter); AssertionResult closeDescrambler(); AssertionResult getKeyToken(int32_t caSystemId, std::string& provisonStr, std::vector& hidlPvtData, std::vector& token); AssertionResult getDemuxPidFromFilterSettings(DemuxFilterType type, const DemuxFilterSettings& settings, DemuxPid& pid); protected: static AssertionResult failure() { return ::testing::AssertionFailure(); } static AssertionResult success() { return ::testing::AssertionSuccess(); } std::shared_ptr mService; std::shared_ptr mDescrambler; std::shared_ptr mCasAidl; android::sp mCasHidl; std::shared_ptr mMediaCasServiceAidl; android::sp mMediaCasServiceHidl; std::shared_ptr mCasListener; private: AssertionResult openCasSession(std::vector& sessionId, std::vector& pvtData); AssertionResult createCasPlugin(int32_t caSystemId); };