Merge "sensors:2.0:vts fix functional test for typeAsString field"
This commit is contained in:
commit
e3fc570d6d
1 changed files with 7 additions and 5 deletions
|
@ -320,11 +320,13 @@ TEST_P(SensorsHidlTest, SensorListValid) {
|
|||
<< s.sensorHandle << std::dec << " type=" << static_cast<int>(s.type)
|
||||
<< " name=" << s.name);
|
||||
|
||||
// Test non-empty type string
|
||||
EXPECT_FALSE(s.typeAsString.empty());
|
||||
|
||||
// Test defined type matches defined string type
|
||||
EXPECT_NO_FATAL_FAILURE(assertTypeMatchStringType(s.type, s.typeAsString));
|
||||
// Test type string non-empty only for private sensor types.
|
||||
if (s.type >= SensorType::DEVICE_PRIVATE_BASE) {
|
||||
EXPECT_FALSE(s.typeAsString.empty());
|
||||
} else if (!s.typeAsString.empty()) {
|
||||
// Test type string matches framework string if specified for non-private types.
|
||||
EXPECT_NO_FATAL_FAILURE(assertTypeMatchStringType(s.type, s.typeAsString));
|
||||
}
|
||||
|
||||
// Test if all sensor has name and vendor
|
||||
EXPECT_FALSE(s.name.empty());
|
||||
|
|
Loading…
Reference in a new issue