2016-06-13 02:03:09 +08:00
|
|
|
# Copyright (c) 2013-2016, Roland Bock, Alexey Elymanov
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
# are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# Redistributions of source code must retain the above copyright notice, this
|
|
|
|
# list of conditions and the following disclaimer.
|
|
|
|
#
|
|
|
|
# Redistributions in binary form must reproduce the above copyright notice, this
|
|
|
|
# list of conditions and the following disclaimer in the documentation and/or
|
|
|
|
# other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
|
|
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2019-10-14 18:09:18 +08:00
|
|
|
include(FindPython3)
|
2016-07-07 23:50:44 +08:00
|
|
|
|
2019-10-14 18:09:18 +08:00
|
|
|
if (${Python3_Interpreter_FOUND})
|
2016-06-13 02:03:09 +08:00
|
|
|
execute_process(
|
2019-10-14 18:09:18 +08:00
|
|
|
COMMAND ${Python3_EXECUTABLE} -c "import pyparsing"
|
2021-10-11 16:15:16 +08:00
|
|
|
RESULT_VARIABLE PythonRESULT
|
|
|
|
OUTPUT_VARIABLE PythonOUTPUT
|
2016-06-13 02:03:09 +08:00
|
|
|
ERROR_VARIABLE PythonERROR
|
|
|
|
)
|
|
|
|
|
2021-10-11 16:15:16 +08:00
|
|
|
if (${PythonRESULT})
|
2016-07-07 23:50:44 +08:00
|
|
|
message(WARNING "Pyparsing is not installed. Disabling ddl2cpp tests")
|
2016-06-13 02:03:09 +08:00
|
|
|
|
2021-10-11 16:15:16 +08:00
|
|
|
else()
|
2016-07-07 23:50:44 +08:00
|
|
|
message(STATUS "Pyparsing is installed: Enabling ddl2cpp tests.")
|
2016-06-13 02:03:09 +08:00
|
|
|
|
2021-10-11 16:15:16 +08:00
|
|
|
add_test(NAME sqlpp11.scripts.ddl2cpp.bad_will_fail
|
2022-03-11 12:13:38 +08:00
|
|
|
COMMAND "${Python3_EXECUTABLE}" "${CMAKE_CURRENT_LIST_DIR}/../../scripts/ddl2cpp"
|
2021-10-11 16:15:16 +08:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/ddl2cpp_sample_bad.sql"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/fail"
|
|
|
|
test)
|
|
|
|
set_tests_properties(sqlpp11.scripts.ddl2cpp.bad_will_fail PROPERTIES WILL_FAIL 1)
|
2016-06-13 02:03:09 +08:00
|
|
|
|
2021-10-11 16:15:16 +08:00
|
|
|
add_test(NAME sqlpp11.scripts.ddl2cpp.bad_has_parse_error
|
2022-03-11 12:13:38 +08:00
|
|
|
COMMAND "${Python3_EXECUTABLE}" "${CMAKE_CURRENT_LIST_DIR}/../../scripts/ddl2cpp"
|
2021-10-11 16:15:16 +08:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/ddl2cpp_sample_bad.sql"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/fail"
|
|
|
|
test)
|
2022-03-11 12:13:38 +08:00
|
|
|
set_tests_properties(sqlpp11.scripts.ddl2cpp.bad_has_parse_error PROPERTIES PASS_REGULAR_EXPRESSION "ERROR: Could not parse.*")
|
2016-06-13 02:03:09 +08:00
|
|
|
|
2021-10-11 16:15:16 +08:00
|
|
|
add_test(NAME sqlpp11.scripts.ddl2cpp.good_succeeds
|
2022-03-11 12:13:38 +08:00
|
|
|
COMMAND "${Python3_EXECUTABLE}" "${CMAKE_CURRENT_LIST_DIR}/../../scripts/ddl2cpp"
|
2021-10-11 16:15:16 +08:00
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/ddl2cpp_sample_good.sql"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/fail"
|
|
|
|
test)
|
2016-06-13 02:03:09 +08:00
|
|
|
|
2018-02-08 19:02:17 +08:00
|
|
|
foreach(sample_name sample sample_identity_naming)
|
2021-10-11 16:15:16 +08:00
|
|
|
set(sqlpp.scripts.generated.sample.include "${CMAKE_CURRENT_BINARY_DIR}/${sample_name}")
|
2018-02-08 19:02:17 +08:00
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
set(use_identity_naming)
|
|
|
|
if(sample_name STREQUAL "sample_identity_naming")
|
|
|
|
set(use_identity_naming -identity-naming)
|
|
|
|
endif()
|
|
|
|
add_custom_command(
|
2021-10-11 16:15:16 +08:00
|
|
|
OUTPUT "${sqlpp.scripts.generated.sample.include}.h"
|
|
|
|
COMMAND "${Python3_EXECUTABLE}" "${CMAKE_CURRENT_LIST_DIR}/../../scripts/ddl2cpp"
|
2018-02-08 19:02:17 +08:00
|
|
|
${use_identity_naming}
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}/ddl2cpp_sample_good.sql"
|
2021-10-11 16:15:16 +08:00
|
|
|
"${sqlpp.scripts.generated.sample.include}"
|
2018-02-08 19:02:17 +08:00
|
|
|
test
|
|
|
|
DEPENDS "${CMAKE_CURRENT_LIST_DIR}/ddl2cpp_sample_good.sql"
|
|
|
|
VERBATIM)
|
2016-07-10 01:48:24 +08:00
|
|
|
|
2021-10-11 16:15:16 +08:00
|
|
|
add_executable(sqlpp.scripts.compiled.${sample_name} ${sample_name}.cpp "${sqlpp.scripts.generated.sample.include}.h")
|
|
|
|
target_link_libraries(sqlpp.scripts.compiled.${sample_name} PRIVATE sqlpp11)
|
2018-02-08 19:02:17 +08:00
|
|
|
endforeach()
|
2016-07-10 01:48:24 +08:00
|
|
|
|
2016-07-07 23:50:44 +08:00
|
|
|
endif()
|
|
|
|
endif()
|
2016-06-13 02:03:09 +08:00
|
|
|
|