summaryrefslogtreecommitdiffstats
path: root/test/afb-test/tests/low-can_BasicAPITest.lua
diff options
context:
space:
mode:
author8000ff <clementmallejac@gmail.com>2018-07-20 10:47:28 +0200
committer8000ff <clementmallejac@gmail.com>2018-07-20 11:26:52 +0200
commite8eba1c53e1bbccc8c3ae21958e885586bb3c260 (patch)
tree0a4a0077f7fe716a01de3cb4eb23174b9ed8bb19 /test/afb-test/tests/low-can_BasicAPITest.lua
parent2b11138a150dd2e27cbf49231157f4560d536196 (diff)
Improved testing procedures
- Deleted deprecated low-can-tests.lua - Renamed low-can-coverage.lua as it does not describe its purpose - Added 2 new canreplay files - Added new test file for testing subscription filters - Edited the test configuration to play the new test file Change-Id: I11315581a5fac7428ed17d3ef299a9f0e96ce7f4 Signed-off-by: 8000ff <clementmallejac@gmail.com>
Diffstat (limited to 'test/afb-test/tests/low-can_BasicAPITest.lua')
-rw-r--r--test/afb-test/tests/low-can_BasicAPITest.lua78
1 files changed, 78 insertions, 0 deletions
diff --git a/test/afb-test/tests/low-can_BasicAPITest.lua b/test/afb-test/tests/low-can_BasicAPITest.lua
new file mode 100644
index 00000000..5dddb55e
--- /dev/null
+++ b/test/afb-test/tests/low-can_BasicAPITest.lua
@@ -0,0 +1,78 @@
+
+--[[
+ Copyright (C) 2018 "IoT.bzh"
+ Author Romain Forlot <romain.forlot@iot.bzh>
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+
+ NOTE: strict mode: every global variables should be prefixed by '_'
+--]]
+
+_AFT.setBeforeAll(function()
+ local can = io.open("/sys/class/net/can0")
+ if can == nil then
+ print("# You do not have 'can0' device set. Please run the following command:\n### sudo modprobe vcan; sudo ip link add can0 type vcan; sudo ip link set can0 up ")
+ return -1
+ end
+ return 0
+end)
+
+_AFT.setAfterEach(function()
+ os.execute("pkill canplayer")
+ os.execute("pkill linuxcan-canpla")
+end)
+
+_AFT.testVerbStatusSuccess("low-can_list", "low-can", "list", {})
+_AFT.testVerbStatusSuccess("low-can_get", "low-can", "get", { event = "engine.speed"})
+
+_AFT.describe("Diagnostic_engine_speed_simulation", function()
+
+ local api = "low-can"
+ local evt = "diagnostic_messages.engine.speed"
+ _AFT.assertVerbStatusSuccess(api,"subscribe", { event = evt })
+
+ _AFT.addEventToMonitor(api .. "/" .. evt ,function(eventName, data)
+ _AFT.assertIsTrue(data.name == "diagnostic_messages.engine.speed")
+ end)
+
+ local ret = os.execute("./var/replay_launcher.sh ./var/test1.canreplay")
+ _AFT.assertIsTrue(ret)
+
+ _AFT.assertEvtReceived(api .. "/" .. evt, 1000000)
+
+ _AFT.assertVerbStatusSuccess("low-can","unsubscribe", { event = "diagnostic_messages.engine.speed" })
+
+end)
+
+_AFT.describe("Subscribe_all", function()
+ local api = "low-can"
+ local evt = "messages.vehicle.average.speed"
+
+
+ _AFT.addEventToMonitor(api .. "/" .. evt, function(eventName, data)
+ _AFT.assertEquals(data.name,"messages.vehicle.average.speed")
+ end)
+
+ _AFT.assertVerbStatusSuccess(api,"subscribe", { event = "*" })
+
+ local ret = os.execute("./var/replay_launcher.sh ./var/test2-3.canreplay")
+ _AFT.assertIsTrue(ret)
+
+ _AFT.assertEvtReceived(api .. "/" .. evt, 5000000);
+
+ _AFT.assertVerbStatusSuccess(api,"unsubscribe", { event = "*" })
+
+end)
+
+_AFT.exitAtEnd()