def test_to_request_function_on(): req = pyipmi.msgs.picmg.SetFruLedStateReq() led = LedState(fru_id=1, led_id=2, color=LedState.COLOR_RED) led.override_function = led.FUNCTION_ON led.to_request(req) eq_(req.color, LedState.COLOR_RED) eq_(req.led_function, 0xff) eq_(req.on_duration, 0)
def test_to_request_function_off(): req = SetFruLedStateReq() led = LedState(fru_id=1, led_id=2, color=LedState.COLOR_RED) led.override_function = led.FUNCTION_OFF led.to_request(req) eq_(req.color, LedState.COLOR_RED) eq_(req.led_function, 0) eq_(req.on_duration, 0)
def test_to_request_function_lamp_test(): req = SetFruLedStateReq() led = LedState(fru_id=1, led_id=2, color=LedState.COLOR_RED) led.override_function = led.FUNCTION_LAMP_TEST led.lamp_test_duration = 3 led.to_request(req) eq_(req.color, LedState.COLOR_RED) eq_(req.led_function, 0xfb) eq_(req.on_duration, 3)
def test_to_request(): req = SetFruLedStateReq() led = LedState(fru_id=1, led_id=2, color=LedState.COLOR_GREEN, function=LedState.FUNCTION_ON) led.to_request(req) eq_(req.fru_id, 1) eq_(req.led_id, 2) eq_(req.color, led.COLOR_GREEN) eq_(req.led_function, 0xff) eq_(req.on_duration, 0)
def test_to_request_function_blinking(): req = SetFruLedStateReq() led = LedState(fru_id=1, led_id=2, color=LedState.COLOR_RED) led.override_function = led.FUNCTION_BLINKING led.override_off_duration = 3 led.override_on_duration = 4 led.to_request(req) eq_(req.color, LedState.COLOR_RED) eq_(req.led_function, 3) eq_(req.on_duration, 4)