summaryrefslogtreecommitdiffstats
path: root/test/physical.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/physical.cpp')
-rw-r--r--test/physical.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/physical.cpp b/test/physical.cpp
index 9312598..f62caa2 100644
--- a/test/physical.cpp
+++ b/test/physical.cpp
@@ -66,6 +66,7 @@ class MockLed : public phosphor::led::SysfsLed
MOCK_METHOD1(setDelayOff, void(unsigned long ms));
};
+using ::testing::InSequence;
using ::testing::NiceMock;
using ::testing::Return;
using ::testing::Throw;
@@ -125,3 +126,20 @@ TEST(Physical, ctor_none_trigger_asserted_brightness)
EXPECT_CALL(led, getBrightness()).WillRepeatedly(Return(val));
phosphor::led::Physical phy(bus, LED_OBJ, led);
}
+
+TEST(Physical, on_to_off)
+{
+ InSequence s;
+
+ auto bus = sdbusplus::bus::new_default();
+ NiceMock<MockLed> led;
+ EXPECT_CALL(led, getTrigger()).Times(1).WillOnce(Return("none"));
+ constexpr auto deasserted = phosphor::led::DEASSERT;
+ EXPECT_CALL(led, getBrightness()).WillOnce(Return(deasserted));
+ constexpr auto asserted = phosphor::led::ASSERT;
+ EXPECT_CALL(led, setBrightness(asserted));
+ EXPECT_CALL(led, setBrightness(deasserted));
+ phosphor::led::Physical phy(bus, LED_OBJ, led);
+ phy.state(Action::On);
+ phy.state(Action::Off);
+}
OpenPOWER on IntegriCloud