summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFarshid Monhaseri <monhaseri.f@gmail.com>2020-11-07 12:22:36 +0330
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-11-10 15:04:38 +0000
commit0def5c78e35fa88d71b22d46023e84b549bab4e2 (patch)
tree8d9329c9028e453c1109ab08c1aca7e95b67b9b5
parent980b0dbc25e1b423562b87bc402c09329c039212 (diff)
-Fix the previous tests for subscribe/unsubscribe verbs. Now the calls for these verbs should contain at least 'event':'target-event'('monitor-devices' in this case) to be considered successful. -Add new test for new verb 'scan' with no filter & mask. Signed-off-by: Farshid Monhaseri <monhaseri.f@gmail.com> Change-Id: I6b0b28b4a2221b774ce7476d947482745ce01ddf
-rw-r--r--test/afb-test/tests/aft-BasicAPITests.lua13
1 files changed, 9 insertions, 4 deletions
diff --git a/test/afb-test/tests/aft-BasicAPITests.lua b/test/afb-test/tests/aft-BasicAPITests.lua
index b2d4bdd..77b645a 100644
--- a/test/afb-test/tests/aft-BasicAPITests.lua
+++ b/test/afb-test/tests/aft-BasicAPITests.lua
@@ -52,6 +52,8 @@ _AFT.setBeforeAll(function()
end
end)
+local ev_mon_arg = "monitor-devices"
+
-- This tests the 'get' verb of the platform-info API
_AFT.testVerbStatusSuccess(testPrefix.."get", "platform-info", "get", ".layers.agl-manifest")
@@ -61,8 +63,11 @@ _AFT.testVerbStatusSuccess(testPrefix.."get", "platform-info", "get", {})
-- This tests the 'set' verb of the platform-info API
_AFT.testVerbStatusSuccess(testPrefix.."set", "platform-info", "set", {arg=".build.layers.agl-manifest.revision", value="test"})
--- This tests the 'subscribe' verb of the platform-info API
-_AFT.testVerbStatusSuccess(testPrefix.."subscribe", "platform-info", "subscribe", {})
+-- This tests the 'subscribe' verb of the platform-info API for monitoring devices
+_AFT.testVerbStatusSuccess(testPrefix.."subscribe", "platform-info", "subscribe", {event=ev_mon_arg})
+
+-- This tests the 'unsubscribe' verb of the platform-info API for monitoring devices
+_AFT.testVerbStatusSuccess(testPrefix.."unsubscribe", "platform-info", "unsubscribe", {event=ev_mon_arg})
--- This tests the 'unsubscribe' verb of the platform-info API
-_AFT.testVerbStatusSuccess(testPrefix.."unsubscribe", "platform-info", "unsubscribe", {}) \ No newline at end of file
+-- This tests the 'scan' verb of the platform-info API
+_AFT.testVerbStatusSuccess(testPrefix.."scan", "platform-info", "scan", {}) \ No newline at end of file