/* * Copyright 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. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using android::Condition; using android::Mutex; using android::sp; using android::hardware::EventFlag; using android::hardware::hidl_handle; using android::hardware::hidl_string; using android::hardware::hidl_vec; using android::hardware::kSynchronizedReadWrite; using android::hardware::MessageQueue; using android::hardware::MQDescriptorSync; using android::hardware::Return; using android::hardware::Void; using android::hardware::cas::V1_2::ICas; using android::hardware::cas::V1_2::ICasListener; using android::hardware::cas::V1_2::IMediaCasService; using android::hardware::cas::V1_2::ScramblingMode; using android::hardware::cas::V1_2::SessionIntent; using android::hardware::cas::V1_2::Status; using android::hardware::cas::V1_2::StatusEvent; using android::hardware::tv::tuner::V1_0::DemuxFilterMainType; using android::hardware::tv::tuner::V1_0::DemuxFilterSettings; using android::hardware::tv::tuner::V1_0::DemuxFilterStatus; using android::hardware::tv::tuner::V1_0::DemuxFilterType; using android::hardware::tv::tuner::V1_0::DemuxMmtpFilterType; using android::hardware::tv::tuner::V1_0::DemuxPid; using android::hardware::tv::tuner::V1_0::DemuxTsFilterType; using android::hardware::tv::tuner::V1_0::IDescrambler; using android::hardware::tv::tuner::V1_0::IFilter; using android::hardware::tv::tuner::V1_0::ITuner; using android::hardware::tv::tuner::V1_0::Result; using android::hardware::tv::tuner::V1_0::TunerKeyToken; using ::testing::AssertionResult; using namespace std; class MediaCasListener : public ICasListener { 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(); } }; class DescramblerTests { public: void setService(sp tuner) { mService = tuner; } void setCasService(sp casService) { mMediaCasService = casService; } AssertionResult setKeyToken(TunerKeyToken token); AssertionResult openDescrambler(uint32_t demuxId); AssertionResult addPid(DemuxPid pid, sp optionalSourceFilter); AssertionResult removePid(DemuxPid pid, sp optionalSourceFilter); AssertionResult closeDescrambler(); AssertionResult getKeyToken(int32_t caSystemId, string provisonStr, hidl_vec hidlPvtData, TunerKeyToken& token); AssertionResult getDemuxPidFromFilterSettings(DemuxFilterType type, DemuxFilterSettings settings, DemuxPid& pid); protected: static AssertionResult failure() { return ::testing::AssertionFailure(); } static AssertionResult success() { return ::testing::AssertionSuccess(); } sp mService; sp mCas; sp mMediaCasService; sp mCasListener; sp mDescrambler; private: AssertionResult openCasSession(TunerKeyToken& sessionId, vector hidlPvtData); AssertionResult createCasPlugin(int32_t caSystemId); };