aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorentin Le Gall <corentinlgs@gmail.com>2018-07-11 15:56:16 +0200
committerCorentin Le Gall <corentinlgs@gmail.com>2018-07-17 14:03:43 +0200
commitde3438a1e6522c6eb239b5642116a8652df3de23 (patch)
treec21ae29a356e1ce6e2fa03dc616523c5187d8272
parente0a71da9fe0242a50a2d940597c46bb488c5ca84 (diff)
README + helloworld: New test functions + doc
Fixed, tested and documented setBefore and setAfter functions. Improved doc for updated functions in aft.lua. Change-Id: Idc7ffc06e98ef7f6af1e06d9e6cda0dcbd4f97b8 Signed-off-by: Corentin Le Gall <corentinlgs@gmail.com>
-rw-r--r--README.md881
-rw-r--r--conf.d/cmake/config.cmake2
-rw-r--r--conf.d/controller/etc/aft-test.json4
-rw-r--r--conf.d/controller/lua.d/aft.lua18
-rw-r--r--conf.d/controller/lua.d/aftTest.lua132
-rw-r--r--conf.d/controller/lua.d/helloworld.lua12
6 files changed, 794 insertions, 255 deletions
diff --git a/README.md b/README.md
index 2c162f8..aec8b18 100644
--- a/README.md
+++ b/README.md
@@ -38,181 +38,263 @@ cmake .. && make
## Launch the example
-To launch the binding use the command-line provided at the end of the build.
+To launch the binding use the command-line provided at the end of the build, and the afb-daemon-demo just like in the exemple below.
This will launch the test of an Helloworld binding example. The code of the test
-is available from the LUA file `conf.d/project/lua.d/helloworld.lua`.
+is available from the LUA files `conf.d/controller/lua.d/helloworld.lua` and `conf.d/controller/lua.d/aftTest.lua`.
The example will run some basics tests on API verb calls and events received.
-```lua
-function _callback(responseJ)
- _AFT.assertStrContains(responseJ.response, "Some String")
-end
-
-function _callbackError(responseJ)
- _AFT.assertStrContains(responseJ.request.info, "Ping Binder Daemon fails")
-end
-
-function _callbackEvent(eventName, eventData)
- _AFT.assertEquals(eventData, {data = { key = 'weird others data', another_key = 123.456 }})
-end
-
-_AFT.addEventToMonitor("hello/anEvent")
-_AFT.addEventToMonitor("hello/anotherEvent", _callbackEvent)
-_AFT.addLogToMonitor("hello", "warning", "verbose called for My Warning message!")
-
-_AFT.testVerbStatusSuccess('testPingSuccess','hello', 'ping', {})
-_AFT.testVerbResponseEquals('testPingSuccess','hello', 'ping', {}, "Some String")
-_AFT.testVerbResponseEquals('testPingSuccess','hello', 'ping', {}, "Unexpected String")
-_AFT.testVerbCb('testPingSuccess','hello', 'ping', {}, _callback)
-_AFT.testVerbStatusError('testPingError', 'hello', 'pingfail', {})
-_AFT.testVerbResponseEqualsError('testPingError', 'hello', 'pingfail', {}, "Ping Binder Daemon fails")
-_AFT.testVerbResponseEqualsError('testPingError', 'hello', 'pingfail', {}, "Ping Binder Daemon succeed")
-_AFT.testVerbCbError('testPingError', 'hello', 'pingfail', {}, _callbackError)
-
-_AFT.testVerbStatusSuccess('testEventAdd', 'hello', 'eventadd', {tag = 'event', name = 'anEvent'})
-_AFT.testVerbStatusSuccess('testEventSub', 'hello', 'eventsub', {tag = 'event'})
-_AFT.testVerbStatusSuccess('testEventPush', 'hello', 'eventpush', {tag = 'event', data = { key = 'some data', another_key = 123}})
+<details> <summary><b>helloworld.lua code</b></summary>
-_AFT.testVerbStatusSuccess('testEventAdd', 'hello', 'eventadd', {tag = 'evt', name = 'anotherEvent'})
-_AFT.testVerbStatusSuccess('testEventSub', 'hello', 'eventsub', {tag = 'evt'})
-_AFT.testVerbStatusSuccess('testEventPush', 'hello', 'eventpush', {tag = 'evt', data = { key = 'weird others data', another_key = 123.456}})
-
-_AFT.testVerbStatusSuccess('testGenerateWarning', 'hello', 'verbose', {level = 4, message = 'My Warning message!'})
+```lua
+ function _callback(responseJ)
+ _AFT.assertStrContains(responseJ.response, "Some String")
+ end
+
+ function _callbackError(responseJ)
+ _AFT.assertStrContains(responseJ.request.info, "Ping Binder Daemon fails")
+ end
+
+ function _callbackEvent(eventName, eventData)
+ _AFT.assertEquals(eventData, {data = { key = 'weird others data', another_key = 123.456 }})
+ end
+
+ _AFT.addEventToMonitor("hello/anEvent")
+ _AFT.addEventToMonitor("hello/anotherEvent", _callbackEvent)
+
+ _AFT.testVerbStatusSuccess('testPingSuccess','hello', 'ping', {})
+ _AFT.testVerbResponseEquals('testPingSuccess','hello', 'ping', {}, "Some String")
+ _AFT.testVerbResponseEquals('testPingSuccess','hello', 'ping', {}, "Unexpected String")
+ _AFT.testVerbCb('testPingSuccess','hello', 'ping', {}, _callback)
+ _AFT.testVerbStatusError('testPingError', 'hello', 'pingfail', {})
+ _AFT.testVerbResponseEqualsError('testPingError', 'hello', 'pingfail', {}, "Ping Binder Daemon fails")
+ _AFT.testVerbResponseEqualsError('testPingError', 'hello', 'pingfail', {}, "Ping Binder Daemon succeed")
+ _AFT.testVerbCbError('testPingError', 'hello', 'pingfail', {}, _callbackError)
+
+ _AFT.testVerbStatusSuccess('testEventAdd', 'hello', 'eventadd', {tag = 'event', name = 'anEvent'})
+ _AFT.testVerbStatusSuccess('testEventSub', 'hello', 'eventsub', {tag = 'event'})
+ _AFT.testVerbStatusSuccess('testEventPush', 'hello', 'eventpush', {tag = 'event', data = { key = 'some data', another_key = 123}})
+
+ _AFT.testVerbStatusSuccess('testEventAdd', 'hello', 'eventadd', {tag = 'evt', name = 'anotherEvent'})
+ _AFT.testVerbStatusSuccess('testEventSub', 'hello', 'eventsub', {tag = 'evt'})
+ _AFT.testVerbStatusSuccess('testEventPush', 'hello', 'eventpush', {tag = 'evt', data = { key = 'weird others data', another_key = 123.456}})
+
+ _AFT.testVerbStatusSuccess('testGenerateWarning', 'hello', 'verbose', {level = 4, message = 'My Warning message!'})
+
+ _AFT.testEvtReceived("testEvent", "hello/anEvent",3000000)
+ _AFT.testEvtReceived("testEventCb", "hello/anotherEvent",3000000)
+
+ _AFT.testCustom("mytest", function()
+ _AFT.assertEquals(false, false)
+ end)
+```
+</details>
-_AFT.testEvtReceived("testEvent", "hello/anEvent")
-_AFT.testEvtReceived("testEventCb", "hello/anotherEvent")
+<details><summary><b>aftTest.lua code</b></summary>
-_AFT.testLogReceived("LogReceived", "verbose called for My Warning message!")
+```lua
-_AFT.testCustom("mytest", function()
- _AFT.assertEquals(false, false)
-end)
+_AFT.setBeforeEach(function() print("~~~~~ Begin Test ~~~~~") end)
+_AFT.setAfterEach(function() print("~~~~~ End Test ~~~~~") end)
+
+_AFT.setBeforeAll(function() print("~~~~~~~~~~ BEGIN ALL TESTS ~~~~~~~~~~") return 0 end)
+_AFT.setAfterAll(function() print("~~~~~~~~~~ END ALL TESTS ~~~~~~~~~~") return 0 end)
+
+
+local corout = coroutine.create( print )
+
+_AFT.describe("testAssertEquals", function() _AFT.assertEquals(false, false) end,
+ function() print("~~~~~ Begin Test Assert Equals ~~~~~") end,
+ function() print("~~~~~ End Test Assert Equals ~~~~~") end)
+
+_AFT.describe("testAssertNotEquals", function() _AFT.assertNotEquals(true,false) end)
+_AFT.describe("testAssertItemsEquals", function() _AFT.assertItemsEquals({1,2,3},{3,1,2}) end)
+_AFT.describe("testAssertAlmostEquals", function() _AFT.assertAlmostEquals(1.25 ,1.5,0.5) end)
+_AFT.describe("testAssertNotAlmostEquals", function() _AFT.assertNotAlmostEquals(1.25,1.5,0.125) end)
+_AFT.describe("testAssertEvalToTrue", function() _AFT.assertEvalToTrue(true) end)
+_AFT.describe("testAssertEvalToFalse", function() _AFT.assertEvalToFalse(false) end)
+
+_AFT.describe("testAssertStrContains", function() _AFT.assertStrContains("Hello I'm a string","string") end)
+_AFT.describe("testAssertStrContains", function() _AFT.assertStrContains("Hello I'm a second string","second",5) end)
+
+_AFT.describe("testAssertStrIContains", function() _AFT.assertStrIContains("Hello I'm another string","I'm") end)
+
+_AFT.describe("testAssertNotStrContains", function() _AFT.assertNotStrContains("Hello it's me again, the other string","banana") end)
+_AFT.describe("testAssertNotStrContains", function() _AFT.assertNotStrContains("Hello it's me again, the other string","banana",8) end)
+
+_AFT.describe("testAssertNotStrIContains", function() _AFT.assertNotStrIContains("Hello it's not me this time !","trebuchet") end)
+
+_AFT.describe("testAssertStrMatches", function() _AFT.assertStrMatches("Automotive Grade Linux","Automotive Grade Linux") end)
+_AFT.describe("testAssertStrMatches", function() _AFT.assertStrMatches("Automotive Grade Linux from IoT.bzh","Automotive Grade Linux",1,22) end)
+_AFT.describe("testAssertError", function() _AFT.assertError(_AFT.assertEquals(true,true)) end)
+
+_AFT.describe("testAssertErrorMsgEquals", function() _AFT.assertErrorMsgEquals("attempt to call a nil value",
+ _AFT.assertStrMatches("test assertErrorMsgEquals","test",1,4)) end)
+_AFT.describe("testAssertErrorMsgContains", function() _AFT.assertErrorMsgContains("attempt to call",
+ _AFT.assertStrMatches("test assertErrorMsgEquals","test",1,4)) end)
+_AFT.describe("testAssertErrorMsgMatches", function() _AFT.assertErrorMsgMatches('attempt to call a nil value',
+ _AFT.assertStrMatches("test assertErrorMsgEquals","test",1,4)) end)
+
+_AFT.describe("testAssertIs", function() _AFT.assertIs('toto','to'..'to') end)
+_AFT.describe("testAssertNotIs", function() _AFT.assertNotIs({1,2},{1,2}) end)
+
+_AFT.describe("testAssertIsNumber", function() _AFT.assertIsNumber(23) end)
+_AFT.describe("testAssertIsString", function() _AFT.assertIsString("Lapin bihan") end)
+_AFT.describe("testAssertIsTable", function() _AFT.assertIsTable({1,2,3,4}) end)
+_AFT.describe("testAssertIsBoolean", function() _AFT.assertIsBoolean(true) end)
+_AFT.describe("testAssertIsNil", function() _AFT.assertIsNil(nil) end)
+_AFT.describe("testAssertIsTrue", function() _AFT.assertIsTrue(true) end)
+_AFT.describe("testAssertIsFalse", function() _AFT.assertIsFalse(false) end)
+_AFT.describe("testAssertIsNaN", function() _AFT.assertIsNaN(0/0) end)
+_AFT.describe("testAssertIsInf", function() _AFT.assertIsInf(1/0) end)
+_AFT.describe("testAssertIsPlusInf", function() _AFT.assertIsPlusInf(1/0) end)
+_AFT.describe("testAssertIsMinusInf", function() _AFT.assertIsMinusInf(-1/0) end)
+_AFT.describe("testAssertIsPlusZero", function() _AFT.assertIsPlusZero(1/(1/0)) end)
+_AFT.describe("testAssertIsMinusZero", function() _AFT.assertIsMinusZero(-1/(1/0)) end)
+_AFT.describe("testAssertIsFunction", function() _AFT.assertIsFunction(print) end)
+_AFT.describe("testAssertIsThread", function() _AFT.assertIsThread(corout) end)
+_AFT.describe("testAssertIsUserdata", function() _AFT.assertIsUserdata(_AFT.context) end)
+
+_AFT.describe("testAssertNotIsNumber", function() _AFT.assertNotIsNumber('a') end)
+_AFT.describe("testAssertNotIsString", function() _AFT.assertNotIsString(2) end)
+_AFT.describe("testAssertNotIsTable", function() _AFT.assertNotIsTable(2) end)
+_AFT.describe("testAssertNotIsBoolean", function() _AFT.assertNotIsBoolean(2) end)
+_AFT.describe("testAssertNotIsNil", function() _AFT.assertNotIsNil(2) end)
+_AFT.describe("testAssertNotIsTrue", function() _AFT.assertNotIsTrue(false) end)
+_AFT.describe("testAssertNotIsFalse", function() _AFT.assertNotIsFalse(true) end)
+_AFT.describe("testAssertNotIsNaN", function() _AFT.assertNotIsNaN(1) end)
+_AFT.describe("testAssertNotIsInf", function() _AFT.assertNotIsInf(2) end)
+_AFT.describe("testAssertNotIsPlusInf", function() _AFT.assertNotIsPlusInf(2) end)
+_AFT.describe("testAssertNotIsMinusInf", function() _AFT.assertNotIsMinusInf(2) end)
+_AFT.describe("testAssertNotIsPlusZero", function() _AFT.assertNotIsPlusZero(2) end)
+_AFT.describe("testAssertNotIsMinusZero", function() _AFT.assertNotIsMinusZero(2) end)
+_AFT.describe("testAssertNotIsFunction", function() _AFT.assertNotIsFunction(2) end)
+_AFT.describe("testAssertNotIsThread", function() _AFT.assertNotIsThread(2) end)
+_AFT.describe("testAssertNotIsUserdata", function() _AFT.assertNotIsUserdata(2) end)
+
+
+function _callback(responseJ) _AFT.assertStrContains(responseJ.response, "Some String") end
+function _callbackError(responseJ) _AFT.assertStrContains(responseJ.request.info, "Ping Binder Daemon fails") end
+
+_AFT.describe("testAssertVerbStatusSuccess",function() _AFT.assertVerbStatusSuccess('hello', 'ping', {}) end)
+_AFT.describe("testAssertVerbResponseEquals",function() _AFT.assertVerbResponseEquals('hello', 'ping', {},"Some String") end)
+_AFT.describe("testAssertVerbCb",function() _AFT.assertVerbCb('hello', 'ping', {},_callback) end)
+_AFT.describe("testAssertVerbStatusError",function() _AFT.assertVerbStatusError('hello', 'pingfail', {}) end)
+_AFT.describe("testAssertVerbResponseEqualsError",function() _AFT.assertVerbResponseEqualsError('hello', 'pingfail', {},"Ping Binder Daemon fails") end)
+_AFT.describe("testAssertVerbCbError",function() _AFT.assertVerbCbError('hello', 'pingfail', {},_callbackError) end)
```
+</details>
> **NOTE**: I suggest you to take this lua file example to make your own test
> then read the following the chapter if needed to write more complicated tests.
```bash
-$ afb-daemon --name afbd-test --port=1234 --workdir=package --ldpaths=/opt/AGL/lib64/afb:lib --token= --tracereq=common --verbose
-NOTICE: Can't connect supervision socket to @urn:AGL:afs:supervision:socket: Connection refused
+afb-daemon --name afbd-test --port=1234 --workdir=package --ldpaths=/opt/AGL/lib64/afb:lib --token= -vvv --tracereq=common
+```
+
+<details><summary><b>On afb-daemon startup you should have:</b></summary>
+
+```bash
+---BEGIN-OF-CONFIG---
+-- console: ./AFB-console.out
+-- rootdir: .
+-- roothttp:
+-- rootbase: /opa
+-- rootapi: /api
+-- workdir: .
+-- uploaddir: .
+-- token: 1
+-- name: afbd-test
+-- aliases:
+-- dbus_clients:
+-- dbus_servers:
+-- ws_clients:
+-- ws_servers:
+-- so_bindings:
+-- ldpaths: /opt/AGL/lib64/afb:lib
+-- weak_ldpaths:
+-- calls:
+-- exec:
+-- httpdPort: 1234
+-- cacheTimeout: 100000
+-- apiTimeout: 20
+-- cntxTimeout: 32000000
+-- nbSessionMax: 10
+-- mode: local
+-- tracereq: common
+-- traceditf: no
+-- tracesvc: no
+-- traceevt: no
+-- no_ldpaths: no
+-- noHttpd: no
+-- background: no
+-- monitoring: no
+-- random_token: no
+---END-OF-CONFIG---
+INFO: entering foreground mode
+INFO: running with pid 20430
+INFO: API monitor added
+INFO: binding monitor added to set main
+INFO: Scanning dir=[/opt/AGL/lib64/afb] for bindings
+INFO: binding [/opt/AGL/lib64/afb/demoContext.so] is a valid AFB binding V1
+INFO: binding [/opt/AGL/lib64/afb/demoContext.so] calling registering function afbBindingV1Register
+INFO: API context added
+INFO: binding /opt/AGL/lib64/afb/demoContext.so loaded with API prefix context
+INFO: binding [/opt/AGL/lib64/afb/helloWorld.so] looks like an AFB binding V2
+INFO: binding hello calling preinit function
NOTICE: [API hello] hello binding comes to live
+INFO: API hello added
+INFO: binding hello added to set main
+INFO: binding [/opt/AGL/lib64/afb/tic-tac-toe.so] looks like an AFB binding V2
+INFO: API tictactoe added
+INFO: binding tictactoe added to set main
+INFO: binding [/opt/AGL/lib64/afb/demoPost.so] is a valid AFB binding V1
+INFO: binding [/opt/AGL/lib64/afb/demoPost.so] calling registering function afbBindingV1Register
+INFO: API post added
+INFO: binding /opt/AGL/lib64/afb/demoPost.so loaded with API prefix post
+INFO: binding [/opt/AGL/lib64/afb/ave.so] looks like an AFB binding Vdyn
+INFO: binding [/opt/AGL/lib64/afb/ave.so] calling dynamic initialisation afbBindingVdyn
+INFO: Starting creation of dynamic API ave
NOTICE: [API ave] dynamic binding AVE(ave) comes to live
+INFO: API ave added
+INFO: binding ave added to set main
+INFO: Starting creation of dynamic API hi
NOTICE: [API hi] dynamic binding AVE(hi) comes to live
+INFO: API hi added
+INFO: binding hi added to set main
+INFO: Starting creation of dynamic API salut
NOTICE: [API salut] dynamic binding AVE(salut) comes to live
-NOTICE: [API lib/test-binding.so] Controller in afbBindingVdyn
-NOTICE: [API lib/test-binding.so] Controller API='test' info='Binding made to tests other bindings'
-NOTICE: API monitor started
-HOOK: [xreq-000001:monitor/set] BEGIN
-HOOK: [xreq-000001:monitor/set] json() -> { "verbosity": "debug" }
-HOOK: [xreq-000001:monitor/set] success(null, (null))
-HOOK: [xreq-000001:monitor/set] END
-HOOK: [xreq-000002:monitor/trace] BEGIN
-HOOK: [xreq-000002:monitor/trace] json() -> { "add": { "event": "push_after" } }
-HOOK: [xreq-000002:monitor/trace] subscribe(monitor/trace:1) -> 0
-HOOK: [xreq-000002:monitor/trace] success(null, (null))
-HOOK: [xreq-000002:monitor/trace] END
-HOOK: [xreq-000003:monitor/set] BEGIN
-HOOK: [xreq-000003:monitor/set] json() -> { "verbosity": "debug" }
-HOOK: [xreq-000003:monitor/set] success(null, (null))
-HOOK: [xreq-000003:monitor/set] END
-HOOK: [xreq-000004:monitor/trace] BEGIN
-HOOK: [xreq-000004:monitor/trace] json() -> { "add": { "event": "push_after" } }
-HOOK: [xreq-000004:monitor/trace] subscribe(monitor/trace:1) -> 0
-HOOK: [xreq-000004:monitor/trace] success(null, (null))
-HOOK: [xreq-000004:monitor/trace] END
-# XML output to var/jUnitResults.xml
-# Started on Thu Jun 14 18:12:33 2018
-# Starting test: testPingSuccess
+INFO: API salut added
+INFO: binding salut added to set main
+INFO: Scanning dir=[/opt/AGL/lib64/afb/monitoring] for bindings
+INFO: binding [/opt/AGL/lib64/afb/afb-dbus-binding.so] is a valid AFB binding V1
+INFO: binding [/opt/AGL/lib64/afb/afb-dbus-binding.so] calling registering function afbBindingV1Register
+INFO: API dbus added
+INFO: binding /opt/AGL/lib64/afb/afb-dbus-binding.so loaded with API prefix dbus
+INFO: binding [/opt/AGL/lib64/afb/authLogin.so] is a valid AFB binding V1
+INFO: binding [/opt/AGL/lib64/afb/authLogin.so] calling registering function afbBindingV1Register
+INFO: API auth added
+INFO: binding /opt/AGL/lib64/afb/authLogin.so loaded with API prefix auth
+INFO: Scanning dir=[lib] for bindings
+INFO: binding [lib/aft.so] looks like an AFB binding Vdyn
+INFO: binding [lib/aft.so] calling dynamic initialisation afbBindingVdyn
+NOTICE: [API lib/aft.so] Controller in afbBindingVdyn
+DEBUG: [API lib/aft.so] CONFIG-SCANNING dir=/opt/AGL/lib64/afb/test/etc not readable
+WARNING: [API lib/aft.so] CTL-INIT JSON file found but not used : /home/Nyt/Documents/afb-test/build/package/etc/aft-test.json [/home/Nyt/Documents/afb-test/app-controller-submodule/ctl-lib/ctl-config.c:89,ConfigSearch]
+INFO: [API lib/aft.so] CTL-LOAD-CONFIG: loading config filepath=./etc/aft-test.json
+NOTICE: [API lib/aft.so] Controller API='afTest' info='Binding made to tests other bindings'
+INFO: Starting creation of dynamic API afTest
+DEBUG: [API lib/aft.so] CONFIG-SCANNING dir=/opt/AGL/lib64/afb/test/lib/plugins not readable
+DEBUG: [API lib/aft.so] CONFIG-SCANNING dir=/home/Nyt/Documents/afb-test/build/package/lib/plugins not readable
+WARNING: [API afTest] Plugin multiple instances in searchpath will use ./var/aft.lua [/home/Nyt/Documents/afb-test/app-controller-submodule/ctl-lib/ctl-plugin.c:238,LoadFoundPlugins]
+INFO: API afTest added
+INFO: binding afTest added to set main
+DEBUG: Init config done
+INFO: API afTest starting...
INFO: API hello starting...
NOTICE: [API hello] hello binding starting
NOTICE: API hello started
-HOOK: [xreq-000005:hello/ping] BEGIN
-HOOK: [xreq-000005:hello/ping] json() -> null
-HOOK: [xreq-000005:hello/ping] success("Some String", Ping Binder Daemon tag=pingSample count=1 query=null)
-HOOK: [xreq-000005:hello/ping] END
-# Starting test: testPingSuccess
-HOOK: [xreq-000006:hello/ping] BEGIN
-HOOK: [xreq-000006:hello/ping] json() -> null
-HOOK: [xreq-000006:hello/ping] success("Some String", Ping Binder Daemon tag=pingSample count=2 query=null)
-HOOK: [xreq-000006:hello/ping] END
-# Starting test: testPingSuccess
-HOOK: [xreq-000007:hello/ping] BEGIN
-HOOK: [xreq-000007:hello/ping] json() -> null
-HOOK: [xreq-000007:hello/ping] success("Some String", Ping Binder Daemon tag=pingSample count=3 query=null)
-HOOK: [xreq-000007:hello/ping] END
-# Failure: var//aft.lua:127: expected: "Unexpected String"
-# actual: "Some String"
-# Starting test: testPingSuccess
-HOOK: [xreq-000008:hello/ping] BEGIN
-HOOK: [xreq-000008:hello/ping] json() -> null
-HOOK: [xreq-000008:hello/ping] success("Some String", Ping Binder Daemon tag=pingSample count=4 query=null)
-HOOK: [xreq-000008:hello/ping] END
-# Starting test: testPingError
-HOOK: [xreq-000009:hello/pingfail] BEGIN
-HOOK: [xreq-000009:hello/pingfail] fail(failed, Ping Binder Daemon fails)
-HOOK: [xreq-000009:hello/pingfail] END
-# Starting test: testPingError
-HOOK: [xreq-000010:hello/pingfail] BEGIN
-HOOK: [xreq-000010:hello/pingfail] fail(failed, Ping Binder Daemon fails)
-HOOK: [xreq-000010:hello/pingfail] END
-# Failure: var//aft.lua:145: Received the not expected value: "Ping Binder Daemon fails"
-# Starting test: testPingError
-HOOK: [xreq-000011:hello/pingfail] BEGIN
-HOOK: [xreq-000011:hello/pingfail] fail(failed, Ping Binder Daemon fails)
-HOOK: [xreq-000011:hello/pingfail] END
-# Starting test: testPingError
-HOOK: [xreq-000012:hello/pingfail] BEGIN
-HOOK: [xreq-000012:hello/pingfail] fail(failed, Ping Binder Daemon fails)
-HOOK: [xreq-000012:hello/pingfail] END
-# Starting test: testEventAdd
-HOOK: [xreq-000013:hello/eventadd] BEGIN
-HOOK: [xreq-000013:hello/eventadd] get(tag) -> { name: tag, value: event, path: (null) }
-HOOK: [xreq-000013:hello/eventadd] get(name) -> { name: name, value: anEvent, path: (null) }
-HOOK: [xreq-000013:hello/eventadd] success(null, (null))
-HOOK: [xreq-000013:hello/eventadd] END
-# Starting test: testEventSub
-HOOK: [xreq-000014:hello/eventsub] BEGIN
-HOOK: [xreq-000014:hello/eventsub] get(tag) -> { name: tag, value: event, path: (null) }
-HOOK: [xreq-000014:hello/eventsub] subscribe(hello/anEvent:2) -> 0
-HOOK: [xreq-000014:hello/eventsub] success(null, (null))
-HOOK: [xreq-000014:hello/eventsub] END
-# Starting test: testEventPush
-HOOK: [xreq-000015:hello/eventpush] BEGIN
-HOOK: [xreq-000015:hello/eventpush] get(tag) -> { name: tag, value: event, path: (null) }
-HOOK: [xreq-000015:hello/eventpush] get(data) -> { name: data, value: { "another_key": 123, "key": "some data" }, path: (null) }
-DEBUG: [API test] Received event=hello/anEvent, query={ "another_key": 123, "key": "some data" }
-WARNING: [API test] CtlDispatchEvent: fail to find uid=hello/anEvent in action event section [/home/claneys/Workspace/Sources/IOTbzh/afb-test/app-controller-submodule/ctl-lib/ctl-event.c:46,CtrlDispatchApiEvent]
-DEBUG: [API test] Received event=monitor/trace, query={ "time": "10944.010648", "tag": "trace", "type": "event", "id": 106, "event": { "id": 2, "name": "hello\/anEvent", "action": "push_after" }, "data": { "data": { "another_key": 123, "key": "some data" }, "result": 1 } }
-DEBUG: [API test] Received event=monitor/trace, query={ "time": "10944.010648", "tag": "trace", "type": "event", "id": 106, "event": { "id": 2, "name": "hello\/anEvent", "action": "push_after" }, "data": { "data": { "another_key": 123, "key": "some data" }, "result": 1 } }
-HOOK: [xreq-000015:hello/eventpush] success(null, (null))
-HOOK: [xreq-000015:hello/eventpush] END
-# Starting test: testEventAdd
-HOOK: [xreq-000016:hello/eventadd] BEGIN
-HOOK: [xreq-000016:hello/eventadd] get(tag) -> { name: tag, value: evt, path: (null) }
-HOOK: [xreq-000016:hello/eventadd] get(name) -> { name: name, value: anotherEvent, path: (null) }
-HOOK: [xreq-000016:hello/eventadd] success(null, (null))
-HOOK: [xreq-000016:hello/eventadd] END
-# Starting test: testEventSub
-HOOK: [xreq-000017:hello/eventsub] BEGIN
-HOOK: [xreq-000017:hello/eventsub] get(tag) -> { name: tag, value: evt, path: (null) }
-HOOK: [xreq-000017:hello/eventsub] subscribe(hello/anotherEvent:3) -> 0
-HOOK: [xreq-000017:hello/eventsub] success(null, (null))
-HOOK: [xreq-000017:hello/eventsub] END
-# Starting test: testEventPush
-HOOK: [xreq-000018:hello/eventpush] BEGIN
-HOOK: [xreq-000018:hello/eventpush] get(tag) -> { name: tag, value: evt, path: (null) }
-HOOK: [xreq-000018:hello/eventpush] get(data) -> { name: data, value: { "another_key": 123.456, "key": "weird others data" }, path: (null) }
-DEBUG: [API test] Received event=hello/anotherEvent, query={ "another_key": 123.456, "key": "weird others data" }
-WARNING: [API test] CtlDispatchEvent: fail to find uid=hello/anotherEvent in action event section [/home/claneys/Workspace/Sources/IOTbzh/afb-test/app-controller-submodule/ctl-lib/ctl-event.c:46,CtrlDispatchApiEvent]
-DEBUG: [API test] Received event=monitor/trace, query={ "time": "10944.011045", "tag": "trace", "type": "event", "id": 128, "event": { "id": 3, "name": "hello\/anotherEvent", "action": "push_after" }, "data": { "data": { "another_key": 123.456, "key": "weird others data" }, "result": 1 } }
-DEBUG: [API test] Received event=monitor/trace, query={ "time": "10944.011045", "tag": "trace", "type": "event", "id": 128, "event": { "id": 3, "name": "hello\/anotherEvent", "action": "push_after" }, "data": { "data": { "another_key": 123.456, "key": "weird others data" }, "result": 1 } }
-HOOK: [xreq-000018:hello/eventpush] success(null, (null))
-HOOK: [xreq-000018:hello/eventpush] END
-# Starting test: testEvent
-# Starting test: testEventCb
-# Ran 16 tests in 0.003 seconds, 14 successes, 2 failures
-DEBUG: Init config done
+NOTICE: API afTest started
INFO: API auth starting...
NOTICE: API auth started
INFO: API ave starting...
@@ -225,18 +307,427 @@ NOTICE: API dbus started
INFO: API hi starting...
NOTICE: [API hi] dynamic binding AVE(hi) starting
NOTICE: API hi started
+INFO: API monitor starting...
+NOTICE: API monitor started
INFO: API post starting...
NOTICE: API post started
INFO: API salut starting...
NOTICE: [API salut] dynamic binding AVE(salut) starting
NOTICE: API salut started
-INFO: API test starting...
-NOTICE: API test started
INFO: API tictactoe starting...
NOTICE: API tictactoe started
NOTICE: Waiting port=1234 rootdir=.
NOTICE: Browser URL= http://localhost:1234
```
+</details>
+
+Then in a new terminal
+
+``` bash
+afb-client-demo ws://localhost:1234/api?token=1
+afTest launch_all_tests
+```
+
+You should get something like:
+
+``` bash
+{"response":{"info":"Launching tests"},"jtype":"afb-reply","request":{"status":"success","uuid":"3fa17ce6-0029-4ef9-8e0d-38dba2a9cf38"}}
+{"event":"afTest\/results","data":{"info":"Success : 71 Failures : 5"},"jtype":"afb-event"}
+```
+And on your afb-daemon terminal
+
+<details><summary><b>Show</b></summary>
+
+```bash
+DEBUG: received websocket request for afTest/launch_all_tests: null
+HOOK: [xreq-000001:afTest/launch_all_tests] BEGIN
+HOOK: [xreq-000001:afTest/launch_all_tests] json() -> "null"
+HOOK: [xreq-000002:monitor/set] BEGIN
+HOOK: [xreq-000002:monitor/set] reply[denied](null, invalid token's identity)
+HOOK: [xreq-000002:monitor/set] END
+HOOK: [xreq-000003:monitor/trace] BEGIN
+HOOK: [xreq-000003:monitor/trace] reply[denied](null, invalid token's identity)
+HOOK: [xreq-000003:monitor/trace] END
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~ Begin Test ~~~~~
+~~~~~ End Test ~~~~~
+~~~~~~~~~~ BEGIN ALL TESTS ~~~~~~~~~~
+HOOK: [xreq-000001:afTest/launch_all_tests] reply[success]({ "info": "Launching tests" }, (null))
+# XML output to var/jUnitResults.xml
+# Started on Wed Jul 11 15:42:44 2018
+# Starting class: testPingSuccess
+# Starting test: testPingSuccess.testFunction
+~~~~~ Begin testPingSuccess ~~~~~
+HOOK: [xreq-000004:hello/ping] BEGIN
+HOOK: [xreq-000004:hello/ping] json() -> null
+HOOK: [xreq-000004:hello/ping] reply[success]("Some String", Ping Binder Daemon tag=pingSample count=1 query=null)
+HOOK: [xreq-000004:hello/ping] END
+~~~~~ End testPingSuccess ~~~~~
+# Starting class: testPingSuccessAndResponse
+# Starting test: testPingSuccessAndResponse.testFunction
+HOOK: [xreq-000005:hello/ping] BEGIN
+HOOK: [xreq-000005:hello/ping] json() -> null
+HOOK: [xreq-000005:hello/ping] reply[success]("Some String", Ping Binder Daemon tag=pingSample count=2 query=null)
+HOOK: [xreq-000005:hello/ping] END
+# Starting class: testPingSuccessResponseFail
+# Starting test: testPingSuccessResponseFail.testFunction
+HOOK: [xreq-000006:hello/ping] BEGIN
+HOOK: [xreq-000006:hello/ping] json() -> null
+HOOK: [xreq-000006:hello/ping] reply[success]("Some String", Ping Binder Daemon tag=pingSample count=3 query=null)
+HOOK: [xreq-000006:hello/ping] END
+# Failure: ./var/aft.lua:224: expected: "Unexpected String"
+# actual: "Some String"
+# Starting class: testPingSuccessCallback
+# Starting test: testPingSuccessCallback.testFunction
+HOOK: [xreq-000007:hello/ping] BEGIN
+HOOK: [xreq-000007:hello/ping] json() -> null
+HOOK: [xreq-000007:hello/ping] reply[success]("Some String", Ping Binder Daemon tag=pingSample count=4 query=null)
+HOOK: [xreq-000007:hello/ping] END
+# Starting class: testPingError
+# Starting test: testPingError.testFunction
+HOOK: [xreq-000008:hello/pingfail] BEGIN
+HOOK: [xreq-000008:hello/pingfail] reply[failed](null, Ping Binder Daemon fails)
+HOOK: [xreq-000008:hello/pingfail] END
+# Starting class: testPingErrorAndResponse
+# Starting test: testPingErrorAndResponse.testFunction
+HOOK: [xreq-000009:hello/pingfail] BEGIN
+HOOK: [xreq-000009:hello/pingfail] reply[failed](null, Ping Binder Daemon fails)
+HOOK: [xreq-000009:hello/pingfail] END
+# Failure: ./var/aft.lua:242: Received the not expected value: "Ping Binder Daemon fails"
+# Starting class: testPingErrorResponseFail
+# Starting test: testPingErrorResponseFail.testFunction
+HOOK: [xreq-000010:hello/pingfail] BEGIN
+HOOK: [xreq-000010:hello/pingfail] reply[failed](null, Ping Binder Daemon fails)
+HOOK: [xreq-000010:hello/pingfail] END
+# Starting class: testPingErrorCallback
+# Starting test: testPingErrorCallback.testFunction
+HOOK: [xreq-000011:hello/pingfail] BEGIN
+HOOK: [xreq-000011:hello/pingfail] reply[failed](null, Ping Binder Daemon fails)
+HOOK: [xreq-000011:hello/pingfail] END
+# Starting class: testEventAddanEvent
+# Starting test: testEventAddanEvent.testFunction
+HOOK: [xreq-000012:hello/eventadd] BEGIN
+HOOK: [xreq-000012:hello/eventadd] get(tag) -> { name: tag, value: event, path: (null) }
+HOOK: [xreq-000012:hello/eventadd] get(name) -> { name: name, value: anEvent, path: (null) }
+HOOK: [xreq-000012:hello/eventadd] reply[success](null, (null))
+HOOK: [xreq-000012:hello/eventadd] END
+# Starting class: testEventSubanEvent
+# Starting test: testEventSubanEvent.testFunction
+HOOK: [xreq-000013:hello/eventsub] BEGIN
+HOOK: [xreq-000013:hello/eventsub] get(tag) -> { name: tag, value: event, path: (null) }
+HOOK: [xreq-000013:hello/eventsub] subscribe(hello/anEvent:1) -> 0
+HOOK: [xreq-000013:hello/eventsub] reply[success](null, (null))
+HOOK: [xreq-000013:hello/eventsub] END
+# Starting class: testEventPushanEvent
+# Starting test: testEventPushanEvent.testFunction
+HOOK: [xreq-000014:hello/eventpush] BEGIN
+HOOK: [xreq-000014:hello/eventpush] get(tag) -> { name: tag, value: event, path: (null) }
+HOOK: [xreq-000014:hello/eventpush] get(data) -> { name: data, value: { "another_key": 123, "key": "some data" }, path: (null) }
+DEBUG: [API afTest] Received event=hello/anEvent, query={ "another_key": 123, "key": "some data" }
+WARNING: [API afTest] CtlDispatchEvent: fail to find uid=hello/anEvent in action event section [/home/Nyt/Documents/tests/app-afb-test/app-controller-submodule/ctl-lib/ctl-event.c:46,CtrlDispatchApiEvent]
+HOOK: [xreq-000014:hello/eventpush] reply[success](null, (null))
+HOOK: [xreq-000014:hello/eventpush] END
+# Starting class: testEventAddanotherEvent
+# Starting test: testEventAddanotherEvent.testFunction
+HOOK: [xreq-000015:hello/eventadd] BEGIN
+HOOK: [xreq-000015:hello/eventadd] get(tag) -> { name: tag, value: evt, path: (null) }
+HOOK: [xreq-000015:hello/eventadd] get(name) -> { name: name, value: anotherEvent, path: (null) }
+HOOK: [xreq-000015:hello/eventadd] reply[success](null, (null))
+HOOK: [xreq-000015:hello/eventadd] END
+# Starting class: testEventSubanotherEvent
+# Starting test: testEventSubanotherEvent.testFunction
+HOOK: [xreq-000016:hello/eventsub] BEGIN
+HOOK: [xreq-000016:hello/eventsub] get(tag) -> { name: tag, value: evt, path: (null) }
+HOOK: [xreq-000016:hello/eventsub] subscribe(hello/anotherEvent:2) -> 0
+HOOK: [xreq-000016:hello/eventsub] reply[success](null, (null))
+HOOK: [xreq-000016:hello/eventsub] END
+# Starting class: testEventPushanotherEvent
+# Starting test: testEventPushanotherEvent.testFunction
+HOOK: [xreq-000017:hello/eventpush] BEGIN
+HOOK: [xreq-000017:hello/eventpush] get(tag) -> { name: tag, value: evt, path: (null) }
+HOOK: [xreq-000017:hello/eventpush] get(data) -> { name: data, value: { "another_key": 123.456, "key": "weird others data" }, path: (null) }
+DEBUG: [API afTest] Received event=hello/anotherEvent, query={ "another_key": 123.456, "key": "weird others data" }
+WARNING: [API afTest] CtlDispatchEvent: fail to find uid=hello/anotherEvent in action event section [/home/Nyt/Documents/tests/app-afb-test/app-controller-submodule/ctl-lib/ctl-event.c:46,CtrlDispatchApiEvent]
+HOOK: [xreq-000017:hello/eventpush] reply[success](null, (null))
+HOOK: [xreq-000017:hello/eventpush] END
+# Starting class: testGenerateWarning
+# Starting test: testGenerateWarning.testFunction
+HOOK: [xreq-000018:hello/verbose] BEGIN
+HOOK: [xreq-000018:hello/verbose] json() -> { "message": "My Warning message!", "level": 4 }
+WARNING: [REQ/API hello] verbose called for My Warning message! [/home/abuild/rpmbuild/BUILD/app-framework-binder-5.99/bindings/samples/HelloWorld.c:330,verbose]
+HOOK: [xreq-000018:hello/verbose] vverbose(4:warning, /home/abuild/rpmbuild/BUILD/app-framework-binder-5.99/bindings/samples/HelloWorld.c, 330, verbose) -> verbose called for My Warning message!
+HOOK: [xreq-000018:hello/verbose] reply[success](null, (null))
+HOOK: [xreq-000018:hello/verbose] END
+# Starting test: testanEventReceived
+~~~~~ Begin Test ~~~~~
+# Failure: ./var/aft.lua:176: No event 'hello/anEvent' received
+# expected: true, actual: false
+# Starting test: testanotherEventReceived
+~~~~~ Begin Test ~~~~~
+# Failure: ./var/aft.lua:176: No event 'hello/anotherEvent' received
+# expected: true, actual: false
+# Starting class: testAssertEquals
+# Starting test: testAssertEquals.testFunction
+~~~~~ Begin Test Assert Equals ~~~~~
+~~~~~ End Test Assert Equals ~~~~~
+# Starting class: testAssertNotEquals
+# Starting test: testAssertNotEquals.testFunction
+# Starting class: testAssertItemsEquals
+# Starting test: testAssertItemsEquals.testFunction
+# Starting class: testAssertAlmostEquals
+# Starting test: testAssertAlmostEquals.testFunction
+# Starting class: testAssertNotAlmostEquals
+# Starting test: testAssertNotAlmostEquals.testFunction
+# Starting class: testAssertEvalToTrue
+# Starting test: testAssertEvalToTrue.testFunction
+# Starting class: testAssertEvalToFalse
+# Starting test: testAssertEvalToFalse.testFunction
+# Starting class: testAssertStrContains
+# Starting test: testAssertStrContains.testFunction
+# Starting test: testAssertStrContains.testFunction
+# Starting class: testAssertStrIContains
+# Starting test: testAssertStrIContains.testFunction
+# Starting class: testAssertNotStrContains
+# Starting test: testAssertNotStrContains.testFunction
+# Starting test: testAssertNotStrContains.testFunction
+# Starting class: testAssertNotStrIContains
+# Starting test: testAssertNotStrIContains.testFunction
+# Starting class: testAssertStrMatches
+# Starting test: testAssertStrMatches.testFunction
+# Starting test: testAssertStrMatches.testFunction
+# Starting class: testAssertError
+# Starting test: testAssertError.testFunction
+# Starting class: testAssertErrorMsgEquals
+# Starting test: testAssertErrorMsgEquals.testFunction
+# Starting class: testAssertErrorMsgContains
+# Starting test: testAssertErrorMsgContains.testFunction
+# Starting class: testAssertErrorMsgMatches
+# Starting test: testAssertErrorMsgMatches.testFunction
+# Starting class: testAssertIs
+# Starting test: testAssertIs.testFunction
+# Starting class: testAssertNotIs
+# Starting test: testAssertNotIs.testFunction
+# Starting class: testAssertIsNumber
+# Starting test: testAssertIsNumber.testFunction
+# Starting class: testAssertIsString
+# Starting test: testAssertIsString.testFunction
+# Starting class: testAssertIsTable
+# Starting test: testAssertIsTable.testFunction
+# Starting class: testAssertIsBoolean
+# Starting test: testAssertIsBoolean.testFunction
+# Starting class: testAssertIsNil
+# Starting test: testAssertIsNil.testFunction
+# Starting class: testAssertIsTrue
+# Starting test: testAssertIsTrue.testFunction
+# Starting class: testAssertIsFalse
+# Starting test: testAssertIsFalse.testFunction
+# Starting class: testAssertIsNaN
+# Starting test: testAssertIsNaN.testFunction
+# Starting class: testAssertIsInf
+# Starting test: testAssertIsInf.testFunction
+# Starting class: testAssertIsPlusInf
+# Starting test: testAssertIsPlusInf.testFunction
+# Starting class: testAssertIsMinusInf
+# Starting test: testAssertIsMinusInf.testFunction
+# Starting class: testAssertIsPlusZero
+# Starting test: testAssertIsPlusZero.testFunction
+# Starting class: testAssertIsMinusZero
+# Starting test: testAssertIsMinusZero.testFunction
+# Starting class: testAssertIsFunction
+# Starting test: testAssertIsFunction.testFunction
+# Starting class: testAssertIsThread
+# Starting test: testAssertIsThread.testFunction
+# Starting class: testAssertIsUserdata
+# Starting test: testAssertIsUserdata.testFunction
+# Starting class: testAssertNotIsNumber
+# Starting test: testAssertNotIsNumber.testFunction
+# Starting class: testAssertNotIsString
+# Starting test: testAssertNotIsString.testFunction
+# Starting class: testAssertNotIsTable
+# Starting test: testAssertNotIsTable.testFunction
+# Starting class: testAssertNotIsBoolean
+# Starting test: testAssertNotIsBoolean.testFunction
+# Starting class: testAssertNotIsNil
+# Starting test: testAssertNotIsNil.testFunction
+# Starting class: testAssertNotIsTrue
+# Starting test: testAssertNotIsTrue.testFunction
+# Starting class: testAssertNotIsFalse
+# Starting test: testAssertNotIsFalse.testFunction
+# Starting class: testAssertNotIsNaN
+# Starting test: testAssertNotIsNaN.testFunction
+# Starting class: testAssertNotIsInf
+# Starting test: testAssertNotIsInf.testFunction
+# Starting class: testAssertNotIsPlusInf
+# Starting test: testAssertNotIsPlusInf.testFunction
+# Starting class: testAssertNotIsMinusInf
+# Starting test: testAssertNotIsMinusInf.testFunction
+# Starting class: testAssertNotIsPlusZero
+# Starting test: testAssertNotIsPlusZero.testFunction
+# Starting class: testAssertNotIsMinusZero
+# Starting test: testAssertNotIsMinusZero.testFunction
+# Starting class: testAssertNotIsFunction
+# Starting test: testAssertNotIsFunction.testFunction
+# Starting class: testAssertNotIsThread
+# Starting test: testAssertNotIsThread.testFunction
+# Starting class: testAssertNotIsUserdata
+# Starting test: testAssertNotIsUserdata.testFunction
+# Starting class: testAssertVerbStatusSuccess
+# Starting test: testAssertVerbStatusSuccess.testFunction
+HOOK: [xreq-000019:hello/ping] BEGIN
+HOOK: [xreq-000019:hello/ping] json() -> null
+HOOK: [xreq-000019:hello/ping] reply[success]("Some String", Ping Binder Daemon tag=pingSample count=5 query=null)
+HOOK: [xreq-000019:hello/ping] END
+# Starting class: testAssertVerbResponseEquals
+# Starting test: testAssertVerbResponseEquals.testFunction
+HOOK: [xreq-000020:hello/ping] BEGIN
+HOOK: [xreq-000020:hello/ping] json() -> null
+HOOK: [xreq-000020:hello/ping] reply[success]("Some String", Ping Binder Daemon tag=pingSample count=6 query=null)
+HOOK: [xreq-000020:hello/ping] END
+# Starting class: testAssertVerbCb
+# Starting test: testAssertVerbCb.testFunction
+HOOK: [xreq-000021:hello/ping] BEGIN
+HOOK: [xreq-000021:hello/ping] json() -> null
+HOOK: [xreq-000021:hello/ping] reply[success]("Some String", Ping Binder Daemon tag=pingSample count=7 query=null)
+HOOK: [xreq-000021:hello/ping] END
+# Starting class: testAssertVerbStatusError
+# Starting test: testAssertVerbStatusError.testFunction
+HOOK: [xreq-000022:hello/pingfail] BEGIN
+HOOK: [xreq-000022:hello/pingfail] reply[failed](null, Ping Binder Daemon fails)
+HOOK: [xreq-000022:hello/pingfail] END
+# Starting class: testAssertVerbResponseEqualsError
+# Starting test: testAssertVerbResponseEqualsError.testFunction
+HOOK: [xreq-000023:hello/pingfail] BEGIN
+HOOK: [xreq-000023:hello/pingfail] reply[failed](null, Ping Binder Daemon fails)
+HOOK: [xreq-000023:hello/pingfail] END
+# Failure: ./var/aft.lua:242: Received the not expected value: "Ping Binder Daemon fails"
+# Starting class: testAssertVerbCbError
+# Starting test: testAssertVerbCbError.testFunction
+HOOK: [xreq-000024:hello/pingfail] BEGIN
+HOOK: [xreq-000024:hello/pingfail] reply[failed](null, Ping Binder Daemon fails)
+HOOK: [xreq-000024:hello/pingfail] END
+# Ran 76 tests in 0.010 seconds, 71 successes, 5 failures
+HOOK: [xreq-000001:afTest/launch_all_tests] subscribe(afTest/results:3) -> 0
+~~~~~~~~~~ END ALL TESTS ~~~~~~~~~~
+HOOK: [xreq-000001:afTest/launch_all_tests] END
+
+```
+
+</details>
## Write your own tests
@@ -301,24 +792,32 @@ callback let you add assertions and enrich the test.
#### Binding Test functions
-* **_AFT.testVerbStatusSuccess(testName, api, verb, args)**
+* **_AFT.testVerbStatusSuccess(testName, api, verb, args, setUp, tearDown)**
Simply test that the call of a verb successfully returns.
-* **_AFT.testVerbStatusError(testName, api, verb, args)**
+ *setUp* and *tearDown* are functions that can be added to your context, it works just like **_AFT.beforeEach()** and **_AFT.afterEach()**, *setUp* will be ran before your *testFunction* and **_AFT.beforeEach()** (if set) functions, *tearDown* will be ran after your *testFunction* and **_AFT.afterEach()** (if set) functions.
+
+* **_AFT.testVerbStatusError(testName, api, verb, args, setUp, tearDown)**
The inverse than above.
-* **_AFT.testVerbResponseEquals(testName, api, verb, args, expectedResponse)**
+ *setUp* and *tearDown* are functions that can be added to your context, it works just like **_AFT.beforeEach()** and **_AFT.afterEach()**, *setUp* will be ran before your *testFunction* and **_AFT.beforeEach()** (if set) functions, *tearDown* will be ran after your *testFunction* and **_AFT.afterEach()** (if set) functions.
+
+* **_AFT.testVerbResponseEquals(testName, api, verb, args, expectedResponse, setUp, tearDown)**
Test that the call of a verb successfully returns and that verb's response
is equals to the *expectedResponse*.
-* **_AFT.testVerbResponseEqualsError(testName, api, verb, args, expectedResponse)**
+ *setUp* and *tearDown* are functions that can be added to your context, it works just like **_AFT.beforeEach()** and **_AFT.afterEach()**, *setUp* will be ran before your *testFunction* and **_AFT.beforeEach()** (if set) functions, *tearDown* will be ran after your *testFunction* and **_AFT.afterEach()** (if set) functions.
+
+* **_AFT.testVerbResponseEqualsError(testName, api, verb, args, expectedResponse, setUp, tearDown)**
The inverse than above.
-* **_AFT.testVerbCb(testName, api, verb, args, expectedResponse, callback)**
+ *setUp* and *tearDown* are functions that can be added to your context, it works just like **_AFT.beforeEach()** and **_AFT.afterEach()**, *setUp* will be ran before your *testFunction* and **_AFT.beforeEach()** (if set) functions, *tearDown* will be ran after your *testFunction* and **_AFT.afterEach()** (if set) functions.
+
+* **_AFT.testVerbCb(testName, api, verb, args, expectedResponse, callback, setUp, tearDown)**
Test the call of a verb with a custom callback. From this callback you
will need to make some assertions on what you need (verb JSON return object
@@ -326,28 +825,30 @@ callback let you add assertions and enrich the test.
If you don't need to test the response simply specify an empty LUA table.
-* **_AFT.testVerbCbError(testName, api, verb, args, expectedResponse, callback)**
+ *setUp* and *tearDown* are functions that can be added to your context, it works just like **_AFT.beforeEach()** and **_AFT.afterEach()**, *setUp* will be ran before your *testFunction* and **_AFT.beforeEach()** (if set) functions, *tearDown* will be ran after your *testFunction* and **_AFT.afterEach()** (if set) functions.
+
+* **_AFT.testVerbCbError(testName, api, verb, args, expectedResponse, callback, setUp, tearDown)**
Should return success on failure.
+ *setUp* and *tearDown* are functions that can be added to your context, it works just like **_AFT.beforeEach()** and **_AFT.afterEach()**, *setUp* will be ran before your *testFunction* and **_AFT.beforeEach()** (if set) functions, *tearDown* will be ran after your *testFunction* and **_AFT.afterEach()** (if set) functions.
+
* **_AFT.testEvtReceived(testName, eventName, timeout)**
Prior to be able to check that an event has been received, you have to
register the event with the test framework using **_AFT.addEventToMonitor**
function.
- Check if an event has been correctly received. An event name use the
+ Check if an event has been correctly received in time (timeout in µs). An event name use the
application framework naming scheme: **api/event_name**.
-
-
* **_AFT.testEvtNotReceived(testName, eventName, timeout)**
Prior to be able to check that an event has been received, you have to
register the event with the test framework using **_AFT.addEventToMonitor**
function.
- Check if an event has been correctly received in time. An event name use the
+ Check if an event has been correctly received in time (timeout in µs). An event name use the
application framework naming scheme: **api/event_name**.
#### Binding Assert functions
@@ -387,7 +888,7 @@ callback let you add assertions and enrich the test.
register the event with the test framework using **_AFT.addEventToMonitor**
function.
- Check if an event has been correctly received. An event name use the
+ Check if an event has been correctly received in time (timeout in µs). An event name use the
application framework naming scheme: **api/event_name**.
* **_AFT.assertEvtNotReceived(eventName, timeout)**
@@ -396,7 +897,7 @@ callback let you add assertions and enrich the test.
register the event with the test framework using **_AFT.addEventToMonitor**
function.
- Check if an event has been correctly received. An event name use the
+ Check if an event has been correctly received in time (timeout in µs). An event name use the
application framework naming scheme: **api/event_name**.
#### Test Framework functions
@@ -409,18 +910,48 @@ callback let you add assertions and enrich the test.
callback will happens after the assertion that it has been received so you
can work on data that the event eventually carry.
-* **_AFT.addLogToMonitor(api, type, message, callback)**
-
- Add a message log in the test framework to be able to assert its reception.
- The behavior is the same than for the api *events* except that in addition
- it also check that the message is coming from a specified *api* and has the
- specified type *error*, *warning*, *notice*, *info* or *debug*.
-
* **_AFT.setJunitFile(filePath)**
Set the *JUnit* file path. When *JUnit* is set as the output type for the
test framework.
+* **_AFT.setBeforeEach(function)**
+
+ Set the **_AFT.beforeEach()** function which is used to run the *function* before each tests.
+
+* **_AFT.setAfterEach(function)**
+
+ Set the **_AFT.afterEach()** function which is used to run the *function* after each tests.
+
+* **_AFT.setBeforeAll(function)**
+
+ Set the **_AFT.beforeAll()** function which is used to run the *function* before all tests. If the given function is successful it has to return 0 else it will return an error.
+
+* **_AFT.setAfterAll(function)**
+
+ Set the **_AFT.afterAll()** function which is used to run the *function* after all tests. If the given function is successful it has to return 0 else it will return an error.
+
+* **_AFT.describe(testName, testFunction, setUp, tearDown)**
+
+ Give a context to a custom test. *testFunction* will be given the name provided by *testName* and will be tested.
+
+ *setUp* and *tearDown* are functions that can be added to your context, it works just like **_AFT.beforeEach()** and **_AFT.afterEach()**, *setUp* will be ran before your *testFunction* and **_AFT.beforeEach()** (if set) functions, *tearDown* will be ran after your *testFunction* and **_AFT.afterEach()** (if set) functions.
+
+* **_AFT.setBefore(testName, beforeTestFunction)**
+ Set a function to be ran at the beginning of the given *testName* function.
+
+ <details><summary><b>Exemple</b></summary>
+
+ ```lua
+ _AFT.testVerbStatusSuccess('testPingSuccess','hello', 'ping', {})
+ _AFT.setBefore("testPingSuccess",function() print("~~~~~ Begin testPingSuccess ~~~~~") end)
+ _AFT.setAfter("testPingSuccess",function() print("~~~~~ End testPingSuccess ~~~~~") end)
+ ```
+ </details>
+
+* **_AFT.setBefore(testName, beforeTestFunction)**
+ Set a function to be ran at the end of the given *testName* function.
+
#### LuaUnit Assertion functions
##### General Assertions
diff --git a/conf.d/cmake/config.cmake b/conf.d/cmake/config.cmake
index 1fb97be..a7f932e 100644
--- a/conf.d/cmake/config.cmake
+++ b/conf.d/cmake/config.cmake
@@ -193,7 +193,7 @@ set(AFB_REMPORT "1234" CACHE PATH "Default binder listening port")
# Print a helper message when every thing is finished
# ----------------------------------------------------
-set(CLOSING_MESSAGE "Typical binding launch: afb-daemon --name afbd-${PROJECT_NAME} --port=${AFB_REMPORT} --workdir=package --ldpaths=/opt/AGL/lib64/afb:lib --token=\"${AFB_TOKEN}\"")
+set(CLOSING_MESSAGE "Typical binding launch: afb-daemon --name ${PROJECT_NAME} --port=${AFB_REMPORT} --workdir=package --ldpaths=/opt/AGL/lib64/afb:lib --token=\"${AFB_TOKEN}\"")
set(PACKAGE_MESSAGE "Install widget file using in the target : afm-util install ${PROJECT_NAME}.wgt")
# Optional schema validator about now only XML, LUA and JSON
diff --git a/conf.d/controller/etc/aft-test.json b/conf.d/controller/etc/aft-test.json
index b3da676..3df6ba1 100644
--- a/conf.d/controller/etc/aft-test.json
+++ b/conf.d/controller/etc/aft-test.json
@@ -4,13 +4,13 @@
"metadata": {
"uid": "Test",
"version": "1.0",
- "api": "test",
+ "api": "afTest",
"info": "Binding made to tests other bindings",
"require": [
"hello"
]
},
- "onload": {
+ "testVerb": {
"uid": "launch_all_tests",
"info": "Launch all the tests",
"action": "lua://AFT#_launch_test",
diff --git a/conf.d/controller/lua.d/aft.lua b/conf.d/controller/lua.d/aft.lua
index e1b3d20..73a9c78 100644
--- a/conf.d/controller/lua.d/aft.lua
+++ b/conf.d/controller/lua.d/aft.lua
@@ -284,11 +284,12 @@ end
function _AFT.setBefore(testName, beforeTestFunction)
if type(beforeTestFunction) == "function" then
- for _,item in pairs(_AFT.test_list) do
- if item[0] == testName then
- item[1].setUp = function()
+ for _,item in pairs(_AFT.tests_list) do
+ if item[1] == testName then
+ local setUp_old = item[2].setup
+ item[2].setUp = function()
beforeTestFunction()
- item[1].setUp()
+ if setUp_old then setUp_old() end
end
end
end
@@ -299,10 +300,11 @@ end
function _AFT.setAfter(testName, afterTestFunction)
if type(afterTestFunction) == "function" then
- for _,item in pairs(_AFT.test_list) do
- if item[0] == testName then
- item[1].setUp = function()
- item[1].tearDown()
+ for _,item in pairs(_AFT.tests_list) do
+ if item[1] == testName then
+ local tearDown_old = item[2].tearDown
+ item[2].tearDown = function()
+ if tearDown_old then tearDown_old() end
afterTestFunction()
end
end
diff --git a/conf.d/controller/lua.d/aftTest.lua b/conf.d/controller/lua.d/aftTest.lua
index 8e58543..ed3ece3 100644
--- a/conf.d/controller/lua.d/aftTest.lua
+++ b/conf.d/controller/lua.d/aftTest.lua
@@ -18,82 +18,90 @@
NOTE: strict mode: every global variables should be prefixed by '_'
--]]
+_AFT.setBeforeEach(function() print("~~~~~ Begin Test ~~~~~") end)
+_AFT.setAfterEach(function() print("~~~~~ End Test ~~~~~") end)
+
+_AFT.setBeforeAll(function() print("~~~~~~~~~~ BEGIN ALL TESTS ~~~~~~~~~~") return 0 end)
+_AFT.setAfterAll(function() print("~~~~~~~~~~ END ALL TESTS ~~~~~~~~~~") return 0 end)
+
+_AFT.setBefore("testAssertNotEquals",function() print("~~~~~ Begin Test AssertNotEquals ~~~~~") end)
+_AFT.setAfter("testAssertNotEquals",function() print("~~~~~ End Test AssertNotEquals ~~~~~") end)
+
local corout = coroutine.create( print )
-_AFT.testCustom("testAssertEquals", function() _AFT.assertEquals(false, false) end)
-_AFT.testCustom("testAssertNotEquals", function() _AFT.assertNotEquals(true,false) end)
-_AFT.testCustom("testAssertItemsEquals", function() _AFT.assertItemsEquals({1,2,3},{3,1,2}) end)
-_AFT.testCustom("testAssertAlmostEquals", function() _AFT.assertAlmostEquals(1.25 ,1.5,0.5) end)
-_AFT.testCustom("testAssertNotAlmostEquals", function() _AFT.assertNotAlmostEquals(1.25,1.5,0.125) end)
-_AFT.testCustom("testAssertEvalToTrue", function() _AFT.assertEvalToTrue(true) end)
-_AFT.testCustom("testAssertEvalToFalse", function() _AFT.assertEvalToFalse(false) end)
+_AFT.describe("testAssertEquals", function() _AFT.assertEquals(false, false) end,function() print("~~~~~ Begin Test Assert Equals ~~~~~") end,function() print("~~~~~ End Test Assert Equals ~~~~~") end)
+_AFT.describe("testAssertNotEquals", function() _AFT.assertNotEquals(true,false) end)
+_AFT.describe("testAssertItemsEquals", function() _AFT.assertItemsEquals({1,2,3},{3,1,2}) end)
+_AFT.describe("testAssertAlmostEquals", function() _AFT.assertAlmostEquals(1.25 ,1.5,0.5) end)
+_AFT.describe("testAssertNotAlmostEquals", function() _AFT.assertNotAlmostEquals(1.25,1.5,0.125) end)
+_AFT.describe("testAssertEvalToTrue", function() _AFT.assertEvalToTrue(true) end)
+_AFT.describe("testAssertEvalToFalse", function() _AFT.assertEvalToFalse(false) end)
-_AFT.testCustom("testAssertStrContains", function() _AFT.assertStrContains("Hello I'm a string","string") end)
-_AFT.testCustom("testAssertStrContains", function() _AFT.assertStrContains("Hello I'm a second string","second",5) end)
+_AFT.describe("testAssertStrContains", function() _AFT.assertStrContains("Hello I'm a string","string") end)
+_AFT.describe("testAssertStrContains", function() _AFT.assertStrContains("Hello I'm a second string","second",5) end)
-_AFT.testCustom("testAssertStrIContains", function() _AFT.assertStrIContains("Hello I'm another string","I'm") end)
+_AFT.describe("testAssertStrIContains", function() _AFT.assertStrIContains("Hello I'm another string","I'm") end)
-_AFT.testCustom("testAssertNotStrContains", function() _AFT.assertNotStrContains("Hello it's me again, the other string","banana") end)
-_AFT.testCustom("testAssertNotStrContains", function() _AFT.assertNotStrContains("Hello it's me again, the other string","banana",8) end)
+_AFT.describe("testAssertNotStrContains", function() _AFT.assertNotStrContains("Hello it's me again, the other string","banana") end)
+_AFT.describe("testAssertNotStrContains", function() _AFT.assertNotStrContains("Hello it's me again, the other string","banana",8) end)
-_AFT.testCustom("testAssertNotStrIContains", function() _AFT.assertNotStrIContains("Hello it's not me this time !","trebuchet") end)
+_AFT.describe("testAssertNotStrIContains", function() _AFT.assertNotStrIContains("Hello it's not me this time !","trebuchet") end)
-_AFT.testCustom("testAssertStrMatches", function() _AFT.assertStrMatches("Automotive Grade Linux","Automotive Grade Linux") end)
-_AFT.testCustom("testAssertStrMatches", function() _AFT.assertStrMatches("Automotive Grade Linux from IoT.bzh","Automotive Grade Linux",1,22) end)
-_AFT.testCustom("testAssertError", function() _AFT.assertError(_AFT.assertEquals(true,true)) end)
+_AFT.describe("testAssertStrMatches", function() _AFT.assertStrMatches("Automotive Grade Linux","Automotive Grade Linux") end)
+_AFT.describe("testAssertStrMatches", function() _AFT.assertStrMatches("Automotive Grade Linux from IoT.bzh","Automotive Grade Linux",1,22) end)
+_AFT.describe("testAssertError", function() _AFT.assertError(_AFT.assertEquals(true,true)) end)
-_AFT.testCustom("testAssertErrorMsgEquals", function() _AFT.assertErrorMsgEquals("attempt to call a nil value",
+_AFT.describe("testAssertErrorMsgEquals", function() _AFT.assertErrorMsgEquals("attempt to call a nil value",
_AFT.assertStrMatches("test assertErrorMsgEquals","test",1,4)) end)
-_AFT.testCustom("testAssertErrorMsgContains", function() _AFT.assertErrorMsgContains("attempt to call",
+_AFT.describe("testAssertErrorMsgContains", function() _AFT.assertErrorMsgContains("attempt to call",
_AFT.assertStrMatches("test assertErrorMsgEquals","test",1,4)) end)
-_AFT.testCustom("testAssertErrorMsgMatches", function() _AFT.assertErrorMsgMatches('attempt to call a nil value',
+_AFT.describe("testAssertErrorMsgMatches", function() _AFT.assertErrorMsgMatches('attempt to call a nil value',
_AFT.assertStrMatches("test assertErrorMsgEquals","test",1,4)) end)
-_AFT.testCustom("testAssertIs", function() _AFT.assertIs('toto','to'..'to') end)
-_AFT.testCustom("testAssertNotIs", function() _AFT.assertNotIs({1,2},{1,2}) end)
-
-_AFT.testCustom("testAssertIsNumber", function() _AFT.assertIsNumber(23) end)
-_AFT.testCustom("testAssertIsString", function() _AFT.assertIsString("Lapin bihan") end)
-_AFT.testCustom("testAssertIsTable", function() _AFT.assertIsTable({1,2,3,4}) end)
-_AFT.testCustom("testAssertIsBoolean", function() _AFT.assertIsBoolean(true) end)
-_AFT.testCustom("testAssertIsNil", function() _AFT.assertIsNil(nil) end)
-_AFT.testCustom("testAssertIsTrue", function() _AFT.assertIsTrue(true) end)
-_AFT.testCustom("testAssertIsFalse", function() _AFT.assertIsFalse(false) end)
-_AFT.testCustom("testAssertIsNaN", function() _AFT.assertIsNaN(0/0) end)
-_AFT.testCustom("testAssertIsInf", function() _AFT.assertIsInf(1/0) end)
-_AFT.testCustom("testAssertIsPlusInf", function() _AFT.assertIsPlusInf(1/0) end)
-_AFT.testCustom("testAssertIsMinusInf", function() _AFT.assertIsMinusInf(-1/0) end)
-_AFT.testCustom("testAssertIsPlusZero", function() _AFT.assertIsPlusZero(1/(1/0)) end)
-_AFT.testCustom("testAssertIsMinusZero", function() _AFT.assertIsMinusZero(-1/(1/0)) end)
-_AFT.testCustom("testAssertIsFunction", function() _AFT.assertIsFunction(print) end)
-_AFT.testCustom("testAssertIsThread", function() _AFT.assertIsThread(corout) end)
-_AFT.testCustom("testAssertIsUserdata", function() _AFT.assertIsUserdata(_AFT.context) end)
-
-_AFT.testCustom("testAssertNotIsNumber", function() _AFT.assertNotIsNumber('a') end)
-_AFT.testCustom("testAssertNotIsString", function() _AFT.assertNotIsString(2) end)
-_AFT.testCustom("testAssertNotIsTable", function() _AFT.assertNotIsTable(2) end)
-_AFT.testCustom("testAssertNotIsBoolean", function() _AFT.assertNotIsBoolean(2) end)
-_AFT.testCustom("testAssertNotIsNil", function() _AFT.assertNotIsNil(2) end)
-_AFT.testCustom("testAssertNotIsTrue", function() _AFT.assertNotIsTrue(false) end)
-_AFT.testCustom("testAssertNotIsFalse", function() _AFT.assertNotIsFalse(true) end)
-_AFT.testCustom("testAssertNotIsNaN", function() _AFT.assertNotIsNaN(1) end)
-_AFT.testCustom("testAssertNotIsInf", function() _AFT.assertNotIsInf(2) end)
-_AFT.testCustom("testAssertNotIsPlusInf", function() _AFT.assertNotIsPlusInf(2) end)
-_AFT.testCustom("testAssertNotIsMinusInf", function() _AFT.assertNotIsMinusInf(2) end)
-_AFT.testCustom("testAssertNotIsPlusZero", function() _AFT.assertNotIsPlusZero(2) end)
-_AFT.testCustom("testAssertNotIsMinusZero", function() _AFT.assertNotIsMinusZero(2) end)
-_AFT.testCustom("testAssertNotIsFunction", function() _AFT.assertNotIsFunction(2) end)
-_AFT.testCustom("testAssertNotIsThread", function() _AFT.assertNotIsThread(2) end)
-_AFT.testCustom("testAssertNotIsUserdata", function() _AFT.assertNotIsUserdata(2) end)
-
+_AFT.describe("testAssertIs", function() _AFT.assertIs('toto','to'..'to') end)
+_AFT.describe("testAssertNotIs", function() _AFT.assertNotIs({1,2},{1,2}) end)
+
+_AFT.describe("testAssertIsNumber", function() _AFT.assertIsNumber(23) end)
+_AFT.describe("testAssertIsString", function() _AFT.assertIsString("Lapin bihan") end)
+_AFT.describe("testAssertIsTable", function() _AFT.assertIsTable({1,2,3,4}) end)
+_AFT.describe("testAssertIsBoolean", function() _AFT.assertIsBoolean(true) end)
+_AFT.describe("testAssertIsNil", function() _AFT.assertIsNil(nil) end)
+_AFT.describe("testAssertIsTrue", function() _AFT.assertIsTrue(true) end)
+_AFT.describe("testAssertIsFalse", function() _AFT.assertIsFalse(false) end)
+_AFT.describe("testAssertIsNaN", function() _AFT.assertIsNaN(0/0) end)
+_AFT.describe("testAssertIsInf", function() _AFT.assertIsInf(1/0) end)
+_AFT.describe("testAssertIsPlusInf", function() _AFT.assertIsPlusInf(1/0) end)
+_AFT.describe("testAssertIsMinusInf", function() _AFT.assertIsMinusInf(-1/0) end)
+_AFT.describe("testAssertIsPlusZero", function() _AFT.assertIsPlusZero(1/(1/0)) end)
+_AFT.describe("testAssertIsMinusZero", function() _AFT.assertIsMinusZero(-1/(1/0)) end)
+_AFT.describe("testAssertIsFunction", function() _AFT.assertIsFunction(print) end)
+_AFT.describe("testAssertIsThread", function() _AFT.assertIsThread(corout) end)
+_AFT.describe("testAssertIsUserdata", function() _AFT.assertIsUserdata(_AFT.context) end)
+
+_AFT.describe("testAssertNotIsNumber", function() _AFT.assertNotIsNumber('a') end)
+_AFT.describe("testAssertNotIsString", function() _AFT.assertNotIsString(2) end)
+_AFT.describe("testAssertNotIsTable", function() _AFT.assertNotIsTable(2) end)
+_AFT.describe("testAssertNotIsBoolean", function() _AFT.assertNotIsBoolean(2) end)
+_AFT.describe("testAssertNotIsNil", function() _AFT.assertNotIsNil(2) end)
+_AFT.describe("testAssertNotIsTrue", function() _AFT.assertNotIsTrue(false) end)
+_AFT.describe("testAssertNotIsFalse", function() _AFT.assertNotIsFalse(true) end)
+_AFT.describe("testAssertNotIsNaN", function() _AFT.assertNotIsNaN(1) end)
+_AFT.describe("testAssertNotIsInf", function() _AFT.assertNotIsInf(2) end)
+_AFT.describe("testAssertNotIsPlusInf", function() _AFT.assertNotIsPlusInf(2) end)
+_AFT.describe("testAssertNotIsMinusInf", function() _AFT.assertNotIsMinusInf(2) end)
+_AFT.describe("testAssertNotIsPlusZero", function() _AFT.assertNotIsPlusZero(2) end)
+_AFT.describe("testAssertNotIsMinusZero", function() _AFT.assertNotIsMinusZero(2) end)
+_AFT.describe("testAssertNotIsFunction", function() _AFT.assertNotIsFunction(2) end)
+_AFT.describe("testAssertNotIsThread", function() _AFT.assertNotIsThread(2) end)
+_AFT.describe("testAssertNotIsUserdata", function() _AFT.assertNotIsUserdata(2) end)
function _callback(responseJ) _AFT.assertStrContains(responseJ.response, "Some String") end
function _callbackError(responseJ) _AFT.assertStrContains(responseJ.request.info, "Ping Binder Daemon fails") end
-_AFT.testCustom("testAssertVerbStatusSuccess",function() _AFT.assertVerbStatusSuccess('hello', 'ping', {}) end)
-_AFT.testCustom("testAssertVerbResponseEquals",function() _AFT.assertVerbResponseEquals('hello', 'ping', {},"Some String") end)
-_AFT.testCustom("testAssertVerbCb",function() _AFT.assertVerbCb('hello', 'ping', {},_callback) end)
-_AFT.testCustom("testAssertVerbStatusError",function() _AFT.assertVerbStatusError('hello', 'pingfail', {}) end)
-_AFT.testCustom("testAssertVerbResponseEqualsError",function() _AFT.assertVerbResponseEqualsError('hello', 'pingfail', {},"Ping Binder Daemon fails") end)
-_AFT.testCustom("testAssertVerbCbError",function() _AFT.assertVerbCbError('hello', 'pingfail', {},_callbackError) end)
+_AFT.describe("testAssertVerbStatusSuccess",function() _AFT.assertVerbStatusSuccess('hello', 'ping', {}) end)
+_AFT.describe("testAssertVerbResponseEquals",function() _AFT.assertVerbResponseEquals('hello', 'ping', {},"Some String") end)
+_AFT.describe("testAssertVerbCb",function() _AFT.assertVerbCb('hello', 'ping', {},_callback) end)
+_AFT.describe("testAssertVerbStatusError",function() _AFT.assertVerbStatusError('hello', 'pingfail', {}) end)
+_AFT.describe("testAssertVerbResponseEqualsError",function() _AFT.assertVerbResponseEqualsError('hello', 'pingfail', {},"Ping Binder Daemon fails") end)
+_AFT.describe("testAssertVerbCbError",function() _AFT.assertVerbCbError('hello', 'pingfail', {},_callbackError) end)
diff --git a/conf.d/controller/lua.d/helloworld.lua b/conf.d/controller/lua.d/helloworld.lua
index 17cfa84..8fcf077 100644
--- a/conf.d/controller/lua.d/helloworld.lua
+++ b/conf.d/controller/lua.d/helloworld.lua
@@ -25,7 +25,6 @@ end
function _callbackError(responseJ)
_AFT.assertStrContains(responseJ.request.info, "Ping Binder Daemon fails")
end
-
function _callbackEvent(eventName, eventData)
_AFT.assertEquals(eventData, {data = { key = 'weird others data', another_key = 123.456 }})
end
@@ -34,6 +33,9 @@ _AFT.addEventToMonitor("hello/anEvent")
_AFT.addEventToMonitor("hello/anotherEvent", _callbackEvent)
_AFT.testVerbStatusSuccess('testPingSuccess','hello', 'ping', {})
+_AFT.setBefore("testPingSuccess",function() print("~~~~~ Begin testPingSuccess ~~~~~") end)
+_AFT.setAfter("testPingSuccess",function() print("~~~~~ End testPingSuccess ~~~~~") end)
+
_AFT.testVerbResponseEquals('testPingSuccessAndResponse','hello', 'ping', {}, "Some String")
_AFT.testVerbResponseEquals('testPingSuccessResponseFail','hello', 'ping', {}, "Unexpected String")
_AFT.testVerbCb('testPingSuccessCallback','hello', 'ping', {}, _callback)
@@ -53,9 +55,5 @@ _AFT.testVerbStatusSuccess('testEventPushanotherEvent', 'hello', 'eventpush', {t
_AFT.testVerbStatusSuccess('testGenerateWarning', 'hello', 'verbose', {level = 4, message = 'My Warning message!'})
-_AFT.testEvtReceived("testanEventReceived", "hello/anEvent")
-_AFT.testEvtReceived("testanotherEventReceived", "hello/anotherEvent")
-
-_AFT.describe("mytest", function()
- _AFT.assertEquals(false, false)
-end)
+_AFT.testEvtReceived("testanEventReceived", "hello/anEvent",3000000)
+_AFT.testEvtReceived("testanotherEventReceived", "hello/anotherEvent",3000000)