diff options
author | Frederic Marec <frederic.marec@iot.bzh> | 2019-07-12 11:03:41 +0200 |
---|---|---|
committer | Frederic Marec <frederic.marec@iot.bzh> | 2019-07-12 16:57:41 +0200 |
commit | d9af8879183501b5cec2fb3209dfe0f0a03ac3d1 (patch) | |
tree | 71fdc1a9ef70784c1dd5c576f3fab60235326761 | |
parent | 5a26df78726408a9df55725af40c0a731021b687 (diff) |
Add automatic test tree creation
Add test tree template
Add test path variable
Add test-tree target
Bug-AGL: SPEC-2040
Signed-off-by: Frederic Marec <frederic.marec@iot.bzh>
Change-Id: I836d6e7653b600e92c7a0de065a41054ea06005e
-rw-r--r-- | src/cmake/cmake.d/02-variables.cmake | 4 | ||||
-rw-r--r-- | src/cmake/cmake.d/04-extra_targets.cmake | 65 | ||||
-rw-r--r-- | src/template.d/test/CMakeLists.txt.in | 27 | ||||
-rw-r--r-- | src/template.d/test/afb-test/CMakeLists.txt.in | 22 | ||||
-rw-r--r-- | src/template.d/test/afb-test/etc/CMakeLists.txt.in | 31 | ||||
-rw-r--r-- | src/template.d/test/afb-test/etc/aft-agl-helloworld.json.in | 53 | ||||
-rw-r--r-- | src/template.d/test/afb-test/fixtures/CMakeLists.txt.in | 31 | ||||
-rw-r--r-- | src/template.d/test/afb-test/fixtures/mapi_helloworld.lua.in | 31 | ||||
-rw-r--r-- | src/template.d/test/afb-test/tests/CMakeLists.txt.in | 31 | ||||
-rw-r--r-- | src/template.d/test/afb-test/tests/helloworld.lua.in | 38 | ||||
-rw-r--r-- | src/template.d/test/afb-test/tests/mapi_tests.lua.in | 29 |
11 files changed, 362 insertions, 0 deletions
diff --git a/src/cmake/cmake.d/02-variables.cmake b/src/cmake/cmake.d/02-variables.cmake index be22d72..5c54db3 100644 --- a/src/cmake/cmake.d/02-variables.cmake +++ b/src/cmake/cmake.d/02-variables.cmake @@ -188,6 +188,10 @@ set(PROJECT_AGL_AUTOBUILD_DIR ${CMAKE_SOURCE_DIR}/autobuild/agl set(PROJECT_LINUX_AUTOBUILD_DIR ${CMAKE_SOURCE_DIR}/autobuild/linux CACHE PATH "Subpath to a directory where are stored autobuild script") +# Path to test template +set(PROJECT_TEST_DIR ${CMAKE_SOURCE_DIR}/test + CACHE PATH "Subpath to a directory where are stored test tree") + if(OSRELEASE MATCHES "debian" AND NOT DEFINED ENV{SDKTARGETSYSROOT} AND NOT DEFINED CMAKE_TOOLCHAIN_FILE) # build deb spec file from template set(PACKAGING_DEB_OUTPUT_DSC ${PROJECT_PKG_ENTRY_POINT}/${NPKG_PROJECT_NAME}.dsc) diff --git a/src/cmake/cmake.d/04-extra_targets.cmake b/src/cmake/cmake.d/04-extra_targets.cmake index 1cde843..40cd610 100644 --- a/src/cmake/cmake.d/04-extra_targets.cmake +++ b/src/cmake/cmake.d/04-extra_targets.cmake @@ -67,3 +67,68 @@ add_custom_command(OUTPUT ${PROJECT_AGL_AUTOBUILD_DIR}/autobuild ${PROJECT_LINUX add_custom_target(autobuild ALL DEPENDS ${PROJECT_AGL_AUTOBUILD_DIR}/autobuild ${PROJECT_LINUX_AUTOBUILD_DIR}/autobuild) + +# ---------------------------------------------------------------------------- +# Test target +# ---------------------------------------------------------------------------- + +add_custom_command(OUTPUT ${PROJECT_TEST_DIR} + DEPENDS ${TEMPLATE_DIR}/test/CMakeLists.txt.in + ${TEMPLATE_DIR}/test/afb-test/CMakeLists.txt.in + ${TEMPLATE_DIR}/test/afb-test/etc/CMakeLists.txt.in + ${TEMPLATE_DIR}/test/afb-test/etc/aft-agl-helloworld.json.in + ${TEMPLATE_DIR}/test/afb-test/fixtures/CMakeLists.txt.in + ${TEMPLATE_DIR}/test/afb-test/fixtures/mapi_helloworld.lua.in + ${TEMPLATE_DIR}/test/afb-test/tests/CMakeLists.txt.in + ${TEMPLATE_DIR}/test/afb-test/tests/helloworld.lua.in + ${TEMPLATE_DIR}/test/afb-test/tests/mapi_tests.lua.in + + + COMMAND [ ! -f "${PROJECT_TEST_DIR}/CMakeLists.txt" ] && + ${CMAKE_COMMAND} -DINFILE=${TEMPLATE_DIR}/test/CMakeLists.txt.in + -DOUTFILE=${PROJECT_TEST_DIR}/CMakeLists.txt + -DPROJECT_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} + -P ${PROJECT_APP_TEMPLATES_DIR}/cmake/configure_file.cmake + COMMAND [ ! -f "${PROJECT_TEST_DIR}/afb-test/CMakeLists.txt" ] && + ${CMAKE_COMMAND} -DINFILE=${TEMPLATE_DIR}/test/afb-test/CMakeLists.txt.in + -DOUTFILE=${PROJECT_TEST_DIR}/afb-test/CMakeLists.txt + -DPROJECT_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} + -P ${PROJECT_APP_TEMPLATES_DIR}/cmake/configure_file.cmake + COMMAND [ ! -f "${PROJECT_TEST_DIR}/afb-test/etc/CMakeLists.txt" ] && + ${CMAKE_COMMAND} -DINFILE=${TEMPLATE_DIR}/test/afb-test/etc/CMakeLists.txt.in + -DOUTFILE=${PROJECT_TEST_DIR}/afb-test/etc/CMakeLists.txt + -DPROJECT_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} + -P ${PROJECT_APP_TEMPLATES_DIR}/cmake/configure_file.cmake + COMMAND [ ! -f "${PROJECT_TEST_DIR}/afb-test/etc/aft-agl-${PROJECT_NAME}.json" ] && + ${CMAKE_COMMAND} -DINFILE=${TEMPLATE_DIR}/test/afb-test/etc/aft-agl-helloworld.json.in + -DOUTFILE=${PROJECT_TEST_DIR}/afb-test/etc/aft-agl-${PROJECT_NAME}.json + -DPROJECT_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} + -P ${PROJECT_APP_TEMPLATES_DIR}/cmake/configure_file.cmake + COMMAND [ ! -f "${PROJECT_TEST_DIR}/afb-test/fixtures/CMakeLists.txt" ] && + ${CMAKE_COMMAND} -DINFILE=${TEMPLATE_DIR}/test/afb-test/fixtures/CMakeLists.txt.in + -DOUTFILE=${PROJECT_TEST_DIR}/afb-test/fixtures/CMakeLists.txt + -DPROJECT_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} + -P ${PROJECT_APP_TEMPLATES_DIR}/cmake/configure_file.cmake + COMMAND [ ! -f "${PROJECT_TEST_DIR}/afb-test/fixtures/mapi_${PROJECT_NAME}.lua" ] && + ${CMAKE_COMMAND} -DINFILE=${TEMPLATE_DIR}/test/afb-test/fixtures/mapi_helloworld.lua.in + -DOUTFILE=${PROJECT_TEST_DIR}/afb-test/fixtures/mapi_${PROJECT_NAME}.lua + -DPROJECT_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} + -P ${PROJECT_APP_TEMPLATES_DIR}/cmake/configure_file.cmake + COMMAND [ ! -f "${PROJECT_TEST_DIR}/afb-test/tests/CMakeLists.txt" ] && + ${CMAKE_COMMAND} -DINFILE=${TEMPLATE_DIR}/test/afb-test/tests/CMakeLists.txt.in + -DOUTFILE=${PROJECT_TEST_DIR}/afb-test/tests/CMakeLists.txt + -DPROJECT_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} + -P ${PROJECT_APP_TEMPLATES_DIR}/cmake/configure_file.cmake + COMMAND [ ! -f "${PROJECT_TEST_DIR}/afb-test/tests/${PROJECT_NAME}.lua" ] && + ${CMAKE_COMMAND} -DINFILE=${TEMPLATE_DIR}/test/afb-test/tests/helloworld.lua.in + -DOUTFILE=${PROJECT_TEST_DIR}/afb-test/tests/${PROJECT_NAME}.lua + -DPROJECT_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} + -P ${PROJECT_APP_TEMPLATES_DIR}/cmake/configure_file.cmake + COMMAND [ ! -f "${PROJECT_TEST_DIR}/afb-test/tests/mapi_tests.lua" ] && + ${CMAKE_COMMAND} -DINFILE=${TEMPLATE_DIR}/test/afb-test/tests/mapi_tests.lua.in + -DOUTFILE=${PROJECT_TEST_DIR}/afb-test/tests/mapi_tests.lua + -DPROJECT_BINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} + -P ${PROJECT_APP_TEMPLATES_DIR}/cmake/configure_file.cmake +) + +add_custom_target(test-tree ALL DEPENDS ${PROJECT_TEST_DIR})
\ No newline at end of file diff --git a/src/template.d/test/CMakeLists.txt.in b/src/template.d/test/CMakeLists.txt.in new file mode 100644 index 0000000..3dad87b --- /dev/null +++ b/src/template.d/test/CMakeLists.txt.in @@ -0,0 +1,27 @@ +########################################################################### +# Copyright 2015 - 2019 IoT.bzh +# +# author: @PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@> +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +########################################################################### + + +# Include any directory not starting with _ +# ----------------------------------------------------- +PROJECT_SUBDIRS_ADD(${PROJECT_SRC_DIR_PATTERN}) + +ADD_TEST(NAME @PROJECT_NAME@_tests + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} + COMMAND afm-test "${CMAKE_BINARY_DIR}/package" "${CMAKE_BINARY_DIR}/package-test" SERVICE +) diff --git a/src/template.d/test/afb-test/CMakeLists.txt.in b/src/template.d/test/afb-test/CMakeLists.txt.in new file mode 100644 index 0000000..b4c5799 --- /dev/null +++ b/src/template.d/test/afb-test/CMakeLists.txt.in @@ -0,0 +1,22 @@ +########################################################################### +# Copyright 2015 - 2019 IoT.bzh +# +# author: @PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@> +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +########################################################################### + + +# Include any directory not starting with _ +# ----------------------------------------------------- +PROJECT_SUBDIRS_ADD(${PROJECT_SRC_DIR_PATTERN}) diff --git a/src/template.d/test/afb-test/etc/CMakeLists.txt.in b/src/template.d/test/afb-test/etc/CMakeLists.txt.in new file mode 100644 index 0000000..2c32567 --- /dev/null +++ b/src/template.d/test/afb-test/etc/CMakeLists.txt.in @@ -0,0 +1,31 @@ +########################################################################### +# Copyright 2015 - 2019 IoT.bzh +# +# author: @PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@> +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +########################################################################### + +################################################## +# @PROJECT_NAME@ test configuration files +################################################## +PROJECT_TARGET_ADD(@PROJECT_NAME@-config) + + file(GLOB CONF_FILES "*.json") + + add_input_files("${CONF_FILES}") + + SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES + LABELS "TEST-CONFIG" + OUTPUT_NAME ${TARGET_NAME} + ) diff --git a/src/template.d/test/afb-test/etc/aft-agl-helloworld.json.in b/src/template.d/test/afb-test/etc/aft-agl-helloworld.json.in new file mode 100644 index 0000000..d48ea13 --- /dev/null +++ b/src/template.d/test/afb-test/etc/aft-agl-helloworld.json.in @@ -0,0 +1,53 @@ +{ + "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": "aft-@PROJECT_NAME@", + "info": "@PROJECT_NAME@ binding", + "require": [ + "@PROJECT_NAME@" + ] + }, + "testVerb": [{ + "uid": "short", + "info": "Launch the short session of tests", + "action": "lua://AFT#_launch_test", + "args": { + "trace": "@PROJECT_NAME@", + "files": "@PROJECT_NAME@.lua" + } + }, + { + "uid": "long", + "info": "Launch the long session of tests", + "action": "lua://AFT#_launch_test", + "args": { + "trace": "@PROJECT_NAME@", + "files": [ "@PROJECT_NAME@.lua", "mapi_tests.lua" ] + } + }], + "mapis": [{ + "uid": "mapi-@PROJECT_NAME@", + "info": "Faked @PROJECT_NAME@ API", + "libs": "mapi_@PROJECT_NAME@.lua", + "verbs": [ + { + "uid": "subscribe", + "info": "Subscribe to events", + "action": "lua://mapi-@PROJECT_NAME@#_subscribe" + }, + { + "uid": "unsubscribe", + "info": "Unsubscribe previously suscribed events.", + "action": "lua://mapi-@PROJECT_NAME@#_unsubscribe" + }, + { + "uid": "list", + "info": "get message list", + "action": "lua://mapi-@PROJECT_NAME@#_list" + } + ] + }] +} diff --git a/src/template.d/test/afb-test/fixtures/CMakeLists.txt.in b/src/template.d/test/afb-test/fixtures/CMakeLists.txt.in new file mode 100644 index 0000000..fb85b3f --- /dev/null +++ b/src/template.d/test/afb-test/fixtures/CMakeLists.txt.in @@ -0,0 +1,31 @@ +########################################################################### +# Copyright 2015 - 2019 IoT.bzh +# +# author: @PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@> +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +########################################################################### + + +################################################## +# @PROJECT_NAME@ Lua Scripts +################################################## +PROJECT_TARGET_ADD(fixture-files) + + file(GLOB LUA_FILES "*.lua") + add_input_files("${LUA_FILES}") + + SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES + LABELS "TEST-DATA" + OUTPUT_NAME ${TARGET_NAME} + ) diff --git a/src/template.d/test/afb-test/fixtures/mapi_helloworld.lua.in b/src/template.d/test/afb-test/fixtures/mapi_helloworld.lua.in new file mode 100644 index 0000000..9f93074 --- /dev/null +++ b/src/template.d/test/afb-test/fixtures/mapi_helloworld.lua.in @@ -0,0 +1,31 @@ +--[[ + Copyright (C) 2019 "IoT.bzh" + Author @PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@> + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + NOTE: strict mode: every global variables should be prefixed by '_' +--]] + +function _subscribe(source, args) + AFB:success(source) +end + +function _unsubscribe(source, args) + AFB:success(source) +end + +function _list(source, args) + AFB:success(source) +end diff --git a/src/template.d/test/afb-test/tests/CMakeLists.txt.in b/src/template.d/test/afb-test/tests/CMakeLists.txt.in new file mode 100644 index 0000000..ad97f8b --- /dev/null +++ b/src/template.d/test/afb-test/tests/CMakeLists.txt.in @@ -0,0 +1,31 @@ +########################################################################### +# Copyright 2015 - 2019 IoT.bzh +# +# author: @PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@> +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +########################################################################### + + +################################################## +# @PROJECT_NAME@ Lua Scripts +################################################## +PROJECT_TARGET_ADD(test-files) + + file(GLOB LUA_FILES "*.lua") + add_input_files("${LUA_FILES}") + + SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES + LABELS "TEST-DATA" + OUTPUT_NAME ${TARGET_NAME} + ) diff --git a/src/template.d/test/afb-test/tests/helloworld.lua.in b/src/template.d/test/afb-test/tests/helloworld.lua.in new file mode 100644 index 0000000..aef6c75 --- /dev/null +++ b/src/template.d/test/afb-test/tests/helloworld.lua.in @@ -0,0 +1,38 @@ +--[[ + Copyright (C) 2019 "IoT.bzh" + Author @PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@> + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + NOTE: strict mode: every global variables should be prefixed by '_' +--]] + +function _callback(responseJ) + _AFT.assertStrContains(responseJ.request.status, "success") +end + +function _callbackError(responseJ) + _AFT.assertStrContains(responseJ.request.info, "verb pingfail unknown within api helloworld") +end + +_AFT.testVerbStatusSuccess('testPingSuccess','helloworld', 'ping', {}) +_AFT.setBefore("testPingSuccess",function() print("~~~~~ Begin testPingSuccess ~~~~~") end) +_AFT.setAfter("testPingSuccess",function() print("~~~~~ End testPingSuccess ~~~~~") end) + +_AFT.testVerbResponseEquals('testPingSuccessAndResponse','helloworld', 'ping', {}, "Ping count = %d") +_AFT.testVerbCb('testPingSuccessCallback','helloworld', 'ping', {}, _callback) + +_AFT.testVerbStatusError('testPingError', 'helloworld', 'pingfail', {}) +_AFT.testVerbResponseEqualsError('testPingErrorAndResponse', 'helloworld', 'pingfail', {}, "Ping Binder Daemon succeeds") +_AFT.testVerbCbError('testPingErrorCallback', 'helloworld', 'pingfail', {}, _callbackError)
\ No newline at end of file diff --git a/src/template.d/test/afb-test/tests/mapi_tests.lua.in b/src/template.d/test/afb-test/tests/mapi_tests.lua.in new file mode 100644 index 0000000..5d13296 --- /dev/null +++ b/src/template.d/test/afb-test/tests/mapi_tests.lua.in @@ -0,0 +1,29 @@ +--[[ + Copyright (C) 2019 "IoT.bzh" + Author @PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@> + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + + NOTE: strict mode: every global variables should be prefixed by '_' +--]] + +_AFT.testVerbStatusSuccess("TestListSuccess", "mapi-helloworld", "list", {}) + +_AFT.testVerbStatusSuccess("TestSubscribeSuccess", "mapi-helloworld", "subscribe", {}) + +_AFT.testVerbStatusSuccess("TestUnsubscribeSuccess", "mapi-helloworld", "unsubscribe", {}) + +_AFT.testVerbStatusError("TestWrongVerbError", "mapi-helloworld", "wrong_verb", {}) + +_AFT.testVerbStatusSkipped("TestSkippedVerb", "mapi-helloworld", "skipped_verb", {})
\ No newline at end of file |