From fe8f535a3544f3d828c6128d52591c5d194b693e Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Thu, 27 Sep 2018 11:25:14 +0200 Subject: Add tests on sources injection at runtime This adds some basic tests about adding dummy sources into the signal composer in addition of signals. Change-Id: I028faa612b749866a3ab986a2f46fe00dd2d7884 Signed-off-by: Romain Forlot --- test/afb-test/fixtures/source.json | 8 ++++++++ test/afb-test/fixtures/sources_invalid.json | 13 +++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 test/afb-test/fixtures/source.json create mode 100644 test/afb-test/fixtures/sources_invalid.json (limited to 'test/afb-test/fixtures') diff --git a/test/afb-test/fixtures/source.json b/test/afb-test/fixtures/source.json new file mode 100644 index 0000000..817874f --- /dev/null +++ b/test/afb-test/fixtures/source.json @@ -0,0 +1,8 @@ +{ + "$schema": "http://iot.bzh/download/public/schema/json/signal-composer-schema.json", + "sources": { + "uid": "Dummy_Source", + "api": "dummy", + "info": "A dummy source to be used as test source" + } + } diff --git a/test/afb-test/fixtures/sources_invalid.json b/test/afb-test/fixtures/sources_invalid.json new file mode 100644 index 0000000..e7388aa --- /dev/null +++ b/test/afb-test/fixtures/sources_invalid.json @@ -0,0 +1,13 @@ +{ + "$schema": "http://iot.bzh/download/public/schema/json/signal-composer-schema.json", + "sources": [ + { + "uid": "MissingFieldSource", + "info": "A dummy source to be used as test source", + },{ + "uid": "InvalidFieldSource", + "api": "anotherDummySource", + "retention": "A dummy source to be used as test source", + } + ] + } -- cgit 1.2.3-korg