summaryrefslogtreecommitdiffstats
path: root/test/run.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-02-14 19:23:19 (GMT)
committerBrad King <brad.king@kitware.com>2014-02-26 16:54:50 (GMT)
commit9ecf51353b56eadceff6d4d6ad22098dc24b3035 (patch)
treea6d48bb83277f70e2593c610b3f0538918751273 /test/run.cmake
parent775eb58020208e170e6ef9d1f43de0d5a0474a8d (diff)
downloadCastXML-9ecf51353b56eadceff6d4d6ad22098dc24b3035.zip
CastXML-9ecf51353b56eadceff6d4d6ad22098dc24b3035.tar.gz
CastXML-9ecf51353b56eadceff6d4d6ad22098dc24b3035.tar.bz2
Add test infrastructure to run castxml and validate results
Create a test/run.cmake test driver script that uses execute_process to run a castxml test command line and then compares the results to those we expect. Validate the process result (return code) and the content of stdout and stderr. In test/CMakeLists.txt create a castxml_test_cmd macro to add tests that use "run.cmake".
Diffstat (limited to 'test/run.cmake')
-rw-r--r--test/run.cmake61
1 files changed, 61 insertions, 0 deletions
diff --git a/test/run.cmake b/test/run.cmake
new file mode 100644
index 0000000..d8f2d01
--- /dev/null
+++ b/test/run.cmake
@@ -0,0 +1,61 @@
+#=============================================================================
+# Copyright Kitware, Inc.
+#
+# 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.
+#=============================================================================
+cmake_minimum_required(VERSION 2.8.5)
+
+execute_process(
+ COMMAND ${command}
+ OUTPUT_VARIABLE actual_stdout
+ ERROR_VARIABLE actual_stderr
+ RESULT_VARIABLE actual_result
+ )
+
+set(default_result 0)
+
+foreach(o result stdout stderr)
+ string(REGEX REPLACE "\n+$" "" actual_${o} "${actual_${o}}")
+ string(REGEX REPLACE "\n" "\n actual-${o}> " actual-${o} " actual-${o}> ${actual_${o}}")
+ set(actual-${o} "Actual ${o}:\n${actual-${o}}\n")
+
+ set(expect-${o} "")
+ if(EXISTS ${CMAKE_CURRENT_LIST_DIR}/expect/${test}-${o}.txt)
+ file(READ ${CMAKE_CURRENT_LIST_DIR}/expect/${test}-${o}.txt expect_${o})
+ elseif(DEFINED default_${o})
+ set(expect_${o} "${default_${o}}")
+ else()
+ unset(expect_${o})
+ endif()
+
+ if(DEFINED expect_${o})
+ string(REGEX REPLACE "\n+$" "" expect_${o} "${expect_${o}}")
+ if(NOT "${actual_${o}}" MATCHES "${expect_${o}}")
+ set(msg "${msg}${o} does not match that expected.\n")
+ string(REGEX REPLACE "\n" "\n expect-${o}> " expect-${o} " expect-${o}> ${expect_${o}}")
+ set(expect-${o} "Expected ${o} to match:\n${expect-${o}}\n")
+ endif()
+ endif()
+endforeach()
+
+if(msg)
+ message(SEND_ERROR
+ "${msg}"
+ "${expect-result}"
+ "${expect-stdout}"
+ "${expect-stderr}"
+ "${actual-result}"
+ "${actual-stdout}"
+ "${actual-stderr}"
+ )
+endif()