2009-04-22 17:19:06 +04:00
|
|
|
# This script drives creation of a git repository and checks
|
|
|
|
# that CTest can update from it.
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Test in a directory next to this script.
|
|
|
|
get_filename_component(TOP "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
|
|
set(TOP "${TOP}/@CTestUpdateGIT_DIR@")
|
2010-05-04 17:35:27 +04:00
|
|
|
set(UPDATE_EXTRA Updated{module})
|
2009-04-22 17:19:06 +04:00
|
|
|
|
|
|
|
# Include code common to all update tests.
|
|
|
|
include("@CMAKE_CURRENT_SOURCE_DIR@/CTestUpdateCommon.cmake")
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Report git tools in use.
|
|
|
|
message("Using GIT tools:")
|
|
|
|
set(GIT "@GIT_EXECUTABLE@")
|
|
|
|
message(" git = ${GIT}")
|
|
|
|
|
|
|
|
set(AUTHOR_CONFIG "[user]
|
|
|
|
\tname = Test Author
|
|
|
|
\temail = testauthor@cmake.org
|
|
|
|
")
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Initialize the testing directory.
|
|
|
|
message("Creating test directory...")
|
|
|
|
init_testing()
|
|
|
|
|
2010-02-09 21:31:40 +03:00
|
|
|
if(UNIX)
|
|
|
|
set(src "@CMAKE_CURRENT_SOURCE_DIR@")
|
|
|
|
configure_file(${src}/CTestUpdateGIT.sh.in ${TOP}/git.sh @ONLY)
|
|
|
|
set(GIT ${TOP}/git.sh)
|
|
|
|
endif()
|
|
|
|
|
2009-04-22 17:19:06 +04:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Create the repository.
|
|
|
|
message("Creating repository...")
|
|
|
|
file(MAKE_DIRECTORY ${TOP}/repo.git)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/repo.git
|
2009-04-23 17:10:07 +04:00
|
|
|
COMMAND ${GIT} --bare init
|
2009-04-22 17:19:06 +04:00
|
|
|
)
|
|
|
|
file(REMOVE_RECURSE ${TOP}/repo.git/hooks)
|
|
|
|
set(REPO file://${TOP}/repo.git)
|
|
|
|
|
2010-05-04 17:35:27 +04:00
|
|
|
# Create submodule repository.
|
|
|
|
message("Creating submodule...")
|
|
|
|
file(MAKE_DIRECTORY ${TOP}/module.git)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/module.git
|
|
|
|
COMMAND ${GIT} --bare init
|
|
|
|
)
|
|
|
|
file(REMOVE_RECURSE ${TOP}/module.git/hooks)
|
|
|
|
set(MOD_REPO file://${TOP}/module.git)
|
|
|
|
create_content(module)
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/module
|
|
|
|
COMMAND ${GIT} init
|
|
|
|
)
|
|
|
|
file(REMOVE_RECURSE ${TOP}/module/.git/hooks)
|
|
|
|
file(APPEND ${TOP}/module/.git/config "
|
|
|
|
[remote \"origin\"]
|
|
|
|
\turl = ${MOD_REPO}
|
|
|
|
\tfetch = +refs/heads/*:refs/remotes/origin/*
|
|
|
|
${AUTHOR_CONFIG}")
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/module
|
|
|
|
COMMAND ${GIT} add .
|
|
|
|
)
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/module
|
|
|
|
COMMAND ${GIT} commit -m "Initial content"
|
|
|
|
)
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/module
|
|
|
|
COMMAND ${GIT} push origin master:refs/heads/master
|
|
|
|
)
|
|
|
|
|
2009-04-22 17:19:06 +04:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Import initial content into the repository.
|
|
|
|
message("Importing content...")
|
|
|
|
create_content(import)
|
2013-02-28 20:52:30 +04:00
|
|
|
file(WRITE ${TOP}/import/HEAD "HEAD\n")
|
|
|
|
file(WRITE ${TOP}/import/master "master\n")
|
2009-04-22 17:19:06 +04:00
|
|
|
|
|
|
|
# Import the content into the repository.
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/import
|
|
|
|
COMMAND ${GIT} init
|
|
|
|
)
|
|
|
|
file(REMOVE_RECURSE ${TOP}/import/.git/hooks)
|
|
|
|
file(APPEND ${TOP}/import/.git/config "
|
|
|
|
[remote \"origin\"]
|
|
|
|
\turl = ${REPO}
|
|
|
|
\tfetch = +refs/heads/*:refs/remotes/origin/*
|
|
|
|
${AUTHOR_CONFIG}")
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/import
|
|
|
|
COMMAND ${GIT} add .
|
|
|
|
)
|
2012-06-20 18:14:23 +04:00
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/import
|
|
|
|
COMMAND ${GIT} config core.safecrlf false
|
|
|
|
)
|
2010-05-04 17:35:27 +04:00
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/import
|
|
|
|
COMMAND ${GIT} submodule add ${MOD_REPO} module
|
|
|
|
)
|
2009-04-22 17:19:06 +04:00
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/import
|
|
|
|
COMMAND ${GIT} commit -m "Initial content"
|
|
|
|
)
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/import
|
|
|
|
COMMAND ${GIT} push origin master:refs/heads/master
|
|
|
|
)
|
|
|
|
|
2010-05-04 17:35:27 +04:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Modify the submodule.
|
|
|
|
change_content(module)
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/module
|
|
|
|
COMMAND ${GIT} add -u
|
|
|
|
)
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/module
|
|
|
|
COMMAND ${GIT} commit -m "Changed content"
|
|
|
|
)
|
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/module
|
|
|
|
COMMAND ${GIT} push origin master:refs/heads/master
|
|
|
|
)
|
|
|
|
|
2009-04-22 17:19:06 +04:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Create a working tree.
|
|
|
|
message("Checking out revision 1...")
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}
|
|
|
|
COMMAND ${GIT} clone ${REPO} user-source
|
|
|
|
)
|
|
|
|
file(REMOVE_RECURSE ${TOP}/user-source/.git/hooks)
|
|
|
|
file(APPEND ${TOP}/user-source/.git/config "${AUTHOR_CONFIG}")
|
2010-05-04 17:35:27 +04:00
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} submodule init
|
|
|
|
)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} submodule update
|
|
|
|
)
|
2009-04-22 17:19:06 +04:00
|
|
|
|
2010-06-23 17:14:43 +04:00
|
|
|
# Save the first revision name.
|
|
|
|
execute_process(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} rev-parse HEAD
|
|
|
|
OUTPUT_VARIABLE revision1
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Create an empty commit.
|
|
|
|
message("Creating empty commit...")
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} commit --allow-empty -m "Empty commit"
|
|
|
|
)
|
|
|
|
|
2009-04-22 17:19:06 +04:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Make changes in the working tree.
|
|
|
|
message("Changing content...")
|
|
|
|
update_content(user-source files_added files_removed dirs_added)
|
|
|
|
if(dirs_added)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
2013-02-28 20:52:30 +04:00
|
|
|
COMMAND ${GIT} add -- ${dirs_added}
|
2009-04-22 17:19:06 +04:00
|
|
|
)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2009-04-22 17:19:06 +04:00
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
2013-02-28 20:52:30 +04:00
|
|
|
COMMAND ${GIT} add -- ${files_added}
|
2009-04-22 17:19:06 +04:00
|
|
|
)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
2013-02-28 20:52:30 +04:00
|
|
|
COMMAND ${GIT} rm -- ${files_removed}
|
2009-04-22 17:19:06 +04:00
|
|
|
)
|
2010-05-04 17:35:27 +04:00
|
|
|
run_child(WORKING_DIRECTORY ${TOP}/user-source/module
|
2013-02-28 20:52:30 +04:00
|
|
|
COMMAND ${GIT} checkout master --
|
2010-05-04 17:35:27 +04:00
|
|
|
)
|
2009-04-22 17:19:06 +04:00
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} add -u
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Commit the changes to the repository.
|
|
|
|
message("Committing revision 2...")
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} commit -m "Changed content"
|
|
|
|
)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} push origin
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Make changes in the working tree.
|
|
|
|
message("Changing content again...")
|
|
|
|
change_content(user-source)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} add -u
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Commit the changes to the repository.
|
|
|
|
message("Committing revision 3...")
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} commit -m "Changed content again"
|
|
|
|
)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} push origin
|
|
|
|
)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Go back to before the changes so we can test updating.
|
2010-06-09 00:12:28 +04:00
|
|
|
macro(rewind_source src_dir)
|
|
|
|
message("Backing up to revision 1...")
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/${src_dir}
|
2010-06-23 17:14:43 +04:00
|
|
|
COMMAND ${GIT} reset --hard ${revision1}
|
2010-06-09 00:12:28 +04:00
|
|
|
)
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/${src_dir}
|
|
|
|
COMMAND ${GIT} submodule update
|
|
|
|
)
|
2012-08-13 21:50:14 +04:00
|
|
|
endmacro()
|
2010-06-09 00:12:28 +04:00
|
|
|
rewind_source(user-source)
|
2009-04-22 17:19:06 +04:00
|
|
|
|
2009-09-01 23:41:43 +04:00
|
|
|
# Make sure pull does not try to rebase (which does not work with
|
|
|
|
# modified files) even if ~/.gitconfig sets "branch.master.rebase".
|
|
|
|
run_child(
|
|
|
|
WORKING_DIRECTORY ${TOP}/user-source
|
|
|
|
COMMAND ${GIT} config branch.master.rebase false
|
|
|
|
)
|
|
|
|
|
2009-04-22 17:19:06 +04:00
|
|
|
# Create a modified file.
|
|
|
|
modify_content(user-source)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Test updating the user work directory with the command-line interface.
|
|
|
|
message("Running CTest Dashboard Command Line...")
|
|
|
|
|
|
|
|
# Create the user build tree.
|
|
|
|
create_build_tree(user-source user-binary)
|
|
|
|
file(APPEND ${TOP}/user-binary/CTestConfiguration.ini
|
|
|
|
"# GIT command configuration
|
|
|
|
UpdateCommand: ${GIT}
|
|
|
|
")
|
|
|
|
|
|
|
|
# Run the dashboard command line interface.
|
2010-06-09 00:37:04 +04:00
|
|
|
set(UPDATE_NO_MODIFIED 1)
|
2009-04-22 17:19:06 +04:00
|
|
|
run_dashboard_command_line(user-binary)
|
2010-06-09 00:37:04 +04:00
|
|
|
set(UPDATE_NO_MODIFIED 0)
|
2009-04-22 17:19:06 +04:00
|
|
|
|
2010-06-09 00:12:28 +04:00
|
|
|
rewind_source(user-source)
|
|
|
|
modify_content(user-source)
|
|
|
|
|
|
|
|
message("Running CTest Dashboard Command Line (custom update)...")
|
|
|
|
|
|
|
|
# Create the user build tree.
|
|
|
|
create_build_tree(user-source user-binary-custom)
|
|
|
|
file(APPEND ${TOP}/user-binary-custom/CTestConfiguration.ini
|
|
|
|
"# GIT command configuration
|
|
|
|
UpdateCommand: ${GIT}
|
|
|
|
GITUpdateCustom: ${GIT};pull;origin;master
|
|
|
|
")
|
|
|
|
|
|
|
|
# Run the dashboard command line interface.
|
|
|
|
run_dashboard_command_line(user-binary-custom)
|
|
|
|
|
2009-04-22 17:19:06 +04:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Test initial checkout and update with a dashboard script.
|
|
|
|
message("Running CTest Dashboard Script...")
|
|
|
|
|
2010-06-08 23:58:39 +04:00
|
|
|
create_dashboard_script(dash-binary
|
2009-04-22 17:19:06 +04:00
|
|
|
"# git command configuration
|
|
|
|
set(CTEST_GIT_COMMAND \"${GIT}\")
|
|
|
|
set(CTEST_GIT_UPDATE_OPTIONS)
|
|
|
|
execute_process(
|
|
|
|
WORKING_DIRECTORY \"${TOP}\"
|
|
|
|
COMMAND \"${GIT}\" clone \"${REPO}\" dash-source
|
|
|
|
)
|
2010-07-26 19:40:20 +04:00
|
|
|
|
|
|
|
# Test .git file.
|
|
|
|
file(RENAME \"${TOP}/dash-source/.git\" \"${TOP}/dash-source/repo.git\")
|
|
|
|
file(WRITE \"${TOP}/dash-source/.git\" \"gitdir: repo.git\n\")
|
|
|
|
|
2009-04-22 17:19:06 +04:00
|
|
|
execute_process(
|
|
|
|
WORKING_DIRECTORY \"${TOP}/dash-source\"
|
2010-06-23 17:14:43 +04:00
|
|
|
COMMAND \"${GIT}\" reset --hard ${revision1}
|
2009-04-22 17:19:06 +04:00
|
|
|
)
|
2010-05-04 17:35:27 +04:00
|
|
|
execute_process(
|
|
|
|
WORKING_DIRECTORY \"${TOP}/dash-source\"
|
|
|
|
COMMAND \"${GIT}\" submodule init
|
|
|
|
)
|
|
|
|
execute_process(
|
|
|
|
WORKING_DIRECTORY \"${TOP}/dash-source\"
|
|
|
|
COMMAND \"${GIT}\" submodule update
|
|
|
|
)
|
2009-04-22 17:19:06 +04:00
|
|
|
")
|
|
|
|
|
|
|
|
# Run the dashboard script with CTest.
|
2010-06-08 23:58:39 +04:00
|
|
|
run_dashboard_script(dash-binary)
|
2010-06-09 00:12:28 +04:00
|
|
|
|
|
|
|
rewind_source(dash-source)
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Test custom update with a dashboard script.
|
|
|
|
message("Running CTest Dashboard Script (custom update)...")
|
|
|
|
|
|
|
|
create_dashboard_script(dash-binary-custom
|
|
|
|
"# git command configuration
|
|
|
|
set(CTEST_GIT_COMMAND \"${GIT}\")
|
|
|
|
set(CTEST_GIT_UPDATE_OPTIONS)
|
|
|
|
set(CTEST_GIT_UPDATE_CUSTOM \${CTEST_GIT_COMMAND} pull origin master)
|
|
|
|
")
|
|
|
|
|
|
|
|
# Run the dashboard script with CTest.
|
|
|
|
run_dashboard_script(dash-binary-custom)
|