Merge "[vts-core] add VtsHalUsbV1_1TargetTest to vts-core"
am: 6c9fea5040
Change-Id: Icd2feaaa864437baf661ca351757bed8edfe8177
This commit is contained in:
commit
8aa2fcf9b4
2 changed files with 12 additions and 29 deletions
|
@ -22,6 +22,6 @@ cc_test {
|
||||||
"android.hardware.usb@1.0",
|
"android.hardware.usb@1.0",
|
||||||
"android.hardware.usb@1.1",
|
"android.hardware.usb@1.1",
|
||||||
],
|
],
|
||||||
test_suites: ["general-tests"],
|
test_suites: ["general-tests", "vts-core"],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,8 +23,9 @@
|
||||||
#include <android/hardware/usb/1.1/types.h>
|
#include <android/hardware/usb/1.1/types.h>
|
||||||
|
|
||||||
#include <VtsHalHidlTargetCallbackBase.h>
|
#include <VtsHalHidlTargetCallbackBase.h>
|
||||||
#include <VtsHalHidlTargetTestBase.h>
|
#include <gtest/gtest.h>
|
||||||
#include <VtsHalHidlTargetTestEnvBase.h>
|
#include <hidl/GtestPrinter.h>
|
||||||
|
#include <hidl/ServiceManagement.h>
|
||||||
#include <log/log.h>
|
#include <log/log.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
@ -114,25 +115,12 @@ class UsbCallback : public ::testing::VtsHalHidlTargetCallbackBase<UsbClientCall
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
// Test environment for Usb HIDL HAL.
|
|
||||||
class UsbHidlEnvironment : public ::testing::VtsHalHidlTargetTestEnvBase {
|
|
||||||
public:
|
|
||||||
// get the test environment singleton
|
|
||||||
static UsbHidlEnvironment* Instance() {
|
|
||||||
static UsbHidlEnvironment* instance = new UsbHidlEnvironment;
|
|
||||||
return instance;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual void registerTestServices() override { registerTestService<IUsb>(); }
|
|
||||||
};
|
|
||||||
|
|
||||||
// The main test class for the USB hidl HAL
|
// The main test class for the USB hidl HAL
|
||||||
class UsbHidlTest : public ::testing::VtsHalHidlTargetTestBase {
|
class UsbHidlTest : public ::testing::TestWithParam<std::string> {
|
||||||
public:
|
public:
|
||||||
virtual void SetUp() override {
|
virtual void SetUp() override {
|
||||||
ALOGI(__FUNCTION__);
|
ALOGI(__FUNCTION__);
|
||||||
usb = ::testing::VtsHalHidlTargetTestBase::getService<IUsb>(
|
usb = IUsb::getService(GetParam());
|
||||||
UsbHidlEnvironment::Instance()->getServiceName<IUsb>());
|
|
||||||
ASSERT_NE(usb, nullptr);
|
ASSERT_NE(usb, nullptr);
|
||||||
|
|
||||||
usb_cb_2 = new UsbCallback(2);
|
usb_cb_2 = new UsbCallback(2);
|
||||||
|
@ -158,7 +146,7 @@ class UsbHidlTest : public ::testing::VtsHalHidlTargetTestBase {
|
||||||
* Callback oject is created and registered.
|
* Callback oject is created and registered.
|
||||||
* Check to see if the hidl transaction succeeded.
|
* Check to see if the hidl transaction succeeded.
|
||||||
*/
|
*/
|
||||||
TEST_F(UsbHidlTest, setCallback) {
|
TEST_P(UsbHidlTest, setCallback) {
|
||||||
usb_cb_1 = new UsbCallback(1);
|
usb_cb_1 = new UsbCallback(1);
|
||||||
ASSERT_NE(usb_cb_1, nullptr);
|
ASSERT_NE(usb_cb_1, nullptr);
|
||||||
Return<void> ret = usb->setCallback(usb_cb_1);
|
Return<void> ret = usb->setCallback(usb_cb_1);
|
||||||
|
@ -171,7 +159,7 @@ TEST_F(UsbHidlTest, setCallback) {
|
||||||
* HAL service should call notifyPortStatusChange_1_1
|
* HAL service should call notifyPortStatusChange_1_1
|
||||||
* instead of notifyPortStatusChange of V1_0 interface
|
* instead of notifyPortStatusChange of V1_0 interface
|
||||||
*/
|
*/
|
||||||
TEST_F(UsbHidlTest, queryPortStatus) {
|
TEST_P(UsbHidlTest, queryPortStatus) {
|
||||||
Return<void> ret = usb->queryPortStatus();
|
Return<void> ret = usb->queryPortStatus();
|
||||||
ASSERT_TRUE(ret.isOk());
|
ASSERT_TRUE(ret.isOk());
|
||||||
auto res = usb_cb_2->WaitForCallback(kCallbackNameNotifyPortStatusChange_1_1);
|
auto res = usb_cb_2->WaitForCallback(kCallbackNameNotifyPortStatusChange_1_1);
|
||||||
|
@ -181,12 +169,7 @@ TEST_F(UsbHidlTest, queryPortStatus) {
|
||||||
EXPECT_EQ(PortMode::NONE, res.args->usb_last_port_status.status.supportedModes);
|
EXPECT_EQ(PortMode::NONE, res.args->usb_last_port_status.status.supportedModes);
|
||||||
EXPECT_EQ(Status::SUCCESS, res.args->usb_last_status);
|
EXPECT_EQ(Status::SUCCESS, res.args->usb_last_status);
|
||||||
}
|
}
|
||||||
|
INSTANTIATE_TEST_SUITE_P(
|
||||||
int main(int argc, char** argv) {
|
PerInstance, UsbHidlTest,
|
||||||
::testing::AddGlobalTestEnvironment(UsbHidlEnvironment::Instance());
|
testing::ValuesIn(android::hardware::getAllHalInstanceNames(IUsb::descriptor)),
|
||||||
::testing::InitGoogleTest(&argc, argv);
|
android::hardware::PrintInstanceNameToString);
|
||||||
UsbHidlEnvironment::Instance()->init(&argc, argv);
|
|
||||||
int status = RUN_ALL_TESTS();
|
|
||||||
ALOGI("Test result = %d", status);
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue