PEL: LightPath: Assert LED groups

Fill in the functions to get the LED group D-Bus paths corresponding to
the called out location codes, and then set the Asserted property on
that path to turn on the LEDs.

If there are any problems looking up any of the LED groups, then do not
turn on any LEDs at all, even if others were OK.  In this case, the
system attention indicator will be turned on instead.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I7e3ee6259d972dd2c6939c5a1004c6d25c40e38a
diff --git a/test/openpower-pels/mocks.hpp b/test/openpower-pels/mocks.hpp
index 0e55ecf..e9d9fdf 100644
--- a/test/openpower-pels/mocks.hpp
+++ b/test/openpower-pels/mocks.hpp
@@ -41,6 +41,12 @@
     MOCK_METHOD(std::string, getInventoryFromLocCode,
                 (const std::string&, uint16_t, bool), (const override));
 
+    MOCK_METHOD(std::string, getFaultLEDGroup, (const std::string&),
+                (const override));
+
+    MOCK_METHOD(void, assertLEDGroup, (const std::string&, bool),
+                (const override));
+
     void changeHostState(bool newState)
     {
         setHostUp(newState);