X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=doc%2Fafb-tests-overview.html;h=27231a088339f962826487ed6bdbf821b9b99b8a;hb=2a2a9835cfe31a495020c79b0eeadbddb70f52ae;hp=ce1cba44ccf941c0d55c4ef8ffb4aac3ed0723e3;hpb=8902bb356f6b67c31e54cb23c27cd375f2f4ccdb;p=src%2Fapp-framework-binder.git diff --git a/doc/afb-tests-overview.html b/doc/afb-tests-overview.html index ce1cba44..27231a08 100644 --- a/doc/afb-tests-overview.html +++ b/doc/afb-tests-overview.html @@ -1,106 +1,76 @@ + - - + + + + + + Overview of tests shipped with AFB-Daemon + + + - -

Overview of tests shipped with AFB-Daemon

- -
Version: 1
-Date:    30 mai 2016
-Author:  Manuel Bachmann
-
- - -

List of tests

- +
+

Overview of tests shipped with AFB-Daemon

+

Manuel Bachmann

+

José Bollo

+

24 juin 2016

+
+ +

Overview of tests shipped with AFB-Daemon

+

List of tests

Here are the tests shipped in the source tree:

- - - - -

Detail of tests

- - -

afb-client-demo (command-line WebSockets)

- -

This clients interactively calls plugins APIs from the command line, using the binder -WebSockets facility.

- +

Detail of tests

+

afb-client-demo (command-line WebSockets)

+

This clients interactively calls bindings APIs from the command line, using the binder WebSockets facility.

If afb-daemon has been launched with the following parameters:

- -
$ afb-daemon --port=1234 --token=123456 [...]
-
- +
$ afb-daemon --port=1234 --token=123456 [...]

Then run the client with :

- -
afb-client-demo ws://localhost:1234/api?token=123456 [<api> <verb> [<json-data>]]
-
- -

For instance, to initialize the Audio plugin from the command line :

- -
afb-client-demo ws://localhost:1234/api?token=123456
-
- -

The command doesn’t return. You should type requests of type [<json-data>]. -So, try:

- +
afb-client-demo ws://localhost:1234/api?token=123456 [<api> <verb> [<json-data>]]
+

For instance, to initialize the Audio binding from the command line :

+
afb-client-demo ws://localhost:1234/api?token=123456
+

The command doesn't return. You should type requests of type []. So, try:

auth connect
-hello pingjson true
-
- +hello pingjson true


- - -

token-websock.qml (Qt/QML WebSockets)

- +

token-websock.qml (Qt/QML WebSockets)

If afb-daemon has been launched with the following parameters:

- -
$ afb-daemon --port=1234 --token=123456 [...]
-
- +
$ afb-daemon --port=1234 --token=123456 [...]

and Qt5 is installed.

-

For installing Qt5 on Ubuntu 16.04:

- -
$ apt-get install qmlscene qml-module-qtwebsockets qml-module-qtquick-controls
-
- +
$ apt-get install qmlscene qml-module-qtwebsockets qml-module-qtquick-controls

For installing Qt5 on Fedora 23 :

- -
$ dnf install qt5-qtdeclarative-devel qt5-qtwebsockets-devel qt5-qtquickcontrols
-
- +
$ dnf install qt5-qtdeclarative-devel qt5-qtwebsockets-devel qt5-qtquickcontrols

Then run the client with :

- -
qmlscene test/token-websock.qml
-
- -

and interactively press the buttons, “Connect”, “Refresh”, “Logout”.

- +
qmlscene test/token-websock.qml
+

and interactively press the buttons, "Connect", "Refresh", "Logout".


- - -

*.html (HTML5/JS HTTP-REST & WebSockets)

- +

*.html (HTML5/JS HTTP-REST & WebSockets)

If afb-daemon has been launched with the following parameters:

- -
$ afb-daemon --port=1234 --rootdir=$PWD/test [...]
-
- -

(“$PWD/test” being the “test” subdirectory of the source tree)_

- +
$ afb-daemon --port=1234 --rootdir=$PWD/test [...]
+

("$PWD/test" being the "test" subdirectory of the source tree)_

Then open your preferred Web browser, connect to the following URL:

- -
http://localhost:1234
-
- +
http://localhost:1234

and interactively run the various tests.