summaryrefslogtreecommitdiffstats
path: root/conf.d/project/lua.d/low-can-tests.lua
diff options
context:
space:
mode:
Diffstat (limited to 'conf.d/project/lua.d/low-can-tests.lua')
-rw-r--r--conf.d/project/lua.d/low-can-tests.lua13
1 files changed, 11 insertions, 2 deletions
diff --git a/conf.d/project/lua.d/low-can-tests.lua b/conf.d/project/lua.d/low-can-tests.lua
index ce755e2..90828e7 100644
--- a/conf.d/project/lua.d/low-can-tests.lua
+++ b/conf.d/project/lua.d/low-can-tests.lua
@@ -23,15 +23,16 @@ _AFT.testCustom("Test_detection_is_off", function()
local logMsg = "signal: Engine is off, diagnostic_messages.engine.speed won't received responses until it's on"
_AFT.addLogToMonitor("low-can", "warning", logMsg)
- _AFT.assertVerb("low-can","subscribe", { event = "diagnostic_messages.engine.speed" })
+ _AFT.assertVerbStatusSuccess("low-can","subscribe", { event = "diagnostic_messages.engine.speed" })
_AFT.assertLogReceived(logMsg)
end)
_AFT.testCustom("Test_turning_on", function()
- _AFT.assertVerb("low-can","subscribe", { event = "diagnostic_messages.engine.speed" })
+ _AFT.assertVerbStatusSuccess("low-can","subscribe", { event = "diagnostic_messages.engine.speed" })
local evt = "low-can/diagnostic_messages"
_AFT.addEventToMonitor(evt)
+
local ret = os.execute("./var/replay_launcher.sh ./var/test1.canreplay")
_AFT.assertIsTrue(ret)
@@ -39,3 +40,11 @@ _AFT.testCustom("Test_turning_on", function()
_AFT.assertIsTrue(data.name == "diagnostic_messages.engine.speed")
end)
end)
+
+_AFT.testCustom("Test_detection_is_on", function()
+ local logMsg = "signal: Engine is off, diagnostic_messages.engine.speed won't received responses until it's on"
+ _AFT.addLogToMonitor("low-can", "warning", logMsg)
+
+ _AFT.assertVerbStatusSuccess("low-can","subscribe", { event = "diagnostic_messages.engine.speed" })
+ _AFT.assertLogNotReceived(logMsg)
+end)