Loading media/omx/1.0/vts/functional/store/VtsHalMediaOmxV1_0TargetStoreTest.cpp +27 −0 Original line number Original line Diff line number Diff line Loading @@ -20,7 +20,9 @@ #endif #endif #include <android-base/logging.h> #include <android-base/logging.h> #include <android-base/properties.h> #include <android-base/strings.h> #include <android-base/strings.h> #include <android/api-level.h> #include <android/hardware/media/omx/1.0/IOmx.h> #include <android/hardware/media/omx/1.0/IOmx.h> #include <android/hardware/media/omx/1.0/IOmxNode.h> #include <android/hardware/media/omx/1.0/IOmxNode.h> Loading Loading @@ -371,6 +373,31 @@ TEST_P(StoreHidlTest, ListRoles) { } } } } static int getFirstApiLevel() { return android::base::GetIntProperty("ro.product.first_api_level", __ANDROID_API_T__); } // list components and roles. TEST_P(StoreHidlTest, OmxCodecAllowedTest) { hidl_vec<IOmx::ComponentInfo> componentInfos = getComponentInfoList(omx); for (IOmx::ComponentInfo info : componentInfos) { for (std::string role : info.mRoles) { if (role.find("video_decoder") != std::string::npos || role.find("video_encoder") != std::string::npos) { ASSERT_LT(getFirstApiLevel(), __ANDROID_API_S__) << " Component: " << info.mName.c_str() << " Role: " << role.c_str() << " not allowed for devices launching with Android S and above"; } if (role.find("audio_decoder") != std::string::npos || role.find("audio_encoder") != std::string::npos) { ASSERT_LT(getFirstApiLevel(), __ANDROID_API_T__) << " Component: " << info.mName.c_str() << " Role: " << role.c_str() << " not allowed for devices launching with Android T and above"; } } } } // list components and roles. // list components and roles. TEST_P(StoreHidlTest, ListNodes) { TEST_P(StoreHidlTest, ListNodes) { description("enumerate component and roles"); description("enumerate component and roles"); Loading Loading
media/omx/1.0/vts/functional/store/VtsHalMediaOmxV1_0TargetStoreTest.cpp +27 −0 Original line number Original line Diff line number Diff line Loading @@ -20,7 +20,9 @@ #endif #endif #include <android-base/logging.h> #include <android-base/logging.h> #include <android-base/properties.h> #include <android-base/strings.h> #include <android-base/strings.h> #include <android/api-level.h> #include <android/hardware/media/omx/1.0/IOmx.h> #include <android/hardware/media/omx/1.0/IOmx.h> #include <android/hardware/media/omx/1.0/IOmxNode.h> #include <android/hardware/media/omx/1.0/IOmxNode.h> Loading Loading @@ -371,6 +373,31 @@ TEST_P(StoreHidlTest, ListRoles) { } } } } static int getFirstApiLevel() { return android::base::GetIntProperty("ro.product.first_api_level", __ANDROID_API_T__); } // list components and roles. TEST_P(StoreHidlTest, OmxCodecAllowedTest) { hidl_vec<IOmx::ComponentInfo> componentInfos = getComponentInfoList(omx); for (IOmx::ComponentInfo info : componentInfos) { for (std::string role : info.mRoles) { if (role.find("video_decoder") != std::string::npos || role.find("video_encoder") != std::string::npos) { ASSERT_LT(getFirstApiLevel(), __ANDROID_API_S__) << " Component: " << info.mName.c_str() << " Role: " << role.c_str() << " not allowed for devices launching with Android S and above"; } if (role.find("audio_decoder") != std::string::npos || role.find("audio_encoder") != std::string::npos) { ASSERT_LT(getFirstApiLevel(), __ANDROID_API_T__) << " Component: " << info.mName.c_str() << " Role: " << role.c_str() << " not allowed for devices launching with Android T and above"; } } } } // list components and roles. // list components and roles. TEST_P(StoreHidlTest, ListNodes) { TEST_P(StoreHidlTest, ListNodes) { description("enumerate component and roles"); description("enumerate component and roles"); Loading