Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit abc7986d authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix Sensors VTS asserts for sensor type strings" into rvc-dev

parents f7c55d5f 908e4479
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -367,11 +367,13 @@ TEST_P(SensorsHidlTest, SensorListValid) {
                         << s.sensorHandle << std::dec << " type=" << static_cast<int>(s.type)
                         << " name=" << s.name);

            // Test non-empty type string
            // Test type string non-empty only for private sensor types.
            if (s.type >= SensorTypeVersion::DEVICE_PRIVATE_BASE) {
                EXPECT_FALSE(s.typeAsString.empty());

            // Test defined type matches defined string type
            } 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());