diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-10 16:27:19 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-10 17:12:14 +0200 |
commit | 6460512ea04190c0619e9744e085d52b66517a6c (patch) | |
tree | ff1426d0c62f9e5354b3b7174be5285f0711b3eb /conf.d/project/etc/test-fapi.json | |
parent | fe59b457d752c048afce8f48cd7ed9e97e603d51 (diff) |
Began Mock API implementation WIP
Change-Id: I30782e272cad5da75950d7983f9504dac6d24676
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'conf.d/project/etc/test-fapi.json')
-rw-r--r-- | conf.d/project/etc/test-fapi.json | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/conf.d/project/etc/test-fapi.json b/conf.d/project/etc/test-fapi.json new file mode 100644 index 0000000..283bceb --- /dev/null +++ b/conf.d/project/etc/test-fapi.json @@ -0,0 +1,59 @@ +{ + "id": "http://iot.bzh/download/public/schema/json/ctl-schema.json#", + "$schema": "http://iot.bzh/download/public/schema/json/ctl-schema.json#", + "metadata": { + "uid": "Test", + "version": "1.0", + "api": "test", + "info": "Configuration to test an emulated api", + "require": [ + "low-can" + ] + }, + "onload": { + "uid": "launch_all_tests", + "info": "Launch all the tests", + "action": "lua://AFT#_launch_test", + "args": { + "trace": "low-can", + "files": "fapi.lua" + } + }, + "fapis": [{ + "uid": "low-can", + "info": "Faked low-can API", + "libs": "low-can_fapi.lua", + "verbs": [ + { + "uid": "subscribe", + "info": "Subscribe to CAN signals events", + "action": "lua://low-can#_subscribe" + }, + { + "uid": "unsubscribe", + "info": "Unsubscribe previously suscribed signals.", + "action": "lua://low-can#_unsubscribe" + }, + { + "uid": "get", + "info": "get a current value of CAN message", + "action": "lua://low-can#_get" + }, + { + "uid": "list", + "info": "get a supported CAN message list", + "action": "lua://low-can#_list" + }, + { + "uid": "auth", + "info": "Authenticate session to be raise Level Of Assurance.", + "action": "lua://low-can#_auth" + }, + { + "uid": "write", + "info": "Write a CAN messages to the CAN bus.", + "action": "lua://low-can#_write" + } + ] + }] +} |