t9360: change the description of the test. Test git clone t9361: Test git pull (add page, edit page, delete page) and git push on simple test cases (add file, edit file, delete file). --- t/t9360-git-mediawiki.sh | 4 +- t/t9361-git-mediawiki.sh | 156 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 158 insertions(+), 2 deletions(-) create mode 100755 t/t9361-git-mediawiki.sh diff --git a/t/t9360-git-mediawiki.sh b/t/t9360-git-mediawiki.sh index 8de56c5..57e05d8 100755 --- a/t/t9360-git-mediawiki.sh +++ b/t/t9360-git-mediawiki.sh @@ -12,7 +12,7 @@ # tests for git-remote-mediawiki -test_description='Test the Git Mediawiki remote helper' +test_description='Test the Git Mediawiki remote helper: git clone' . ./test-gitmw-lib.sh . ./test-lib.sh @@ -36,7 +36,7 @@ then fi test_expect_success 'git clone works with page added' ' - cmd_reset && + wiki_reset && wiki_editpage foo "hello_world" false && wiki_editpage bar "hi everybody !" false && git clone mediawiki::http://localhost/wiki mw_dir && diff --git a/t/t9361-git-mediawiki.sh b/t/t9361-git-mediawiki.sh new file mode 100755 index 0000000..9dd7274 --- /dev/null +++ b/t/t9361-git-mediawiki.sh @@ -0,0 +1,156 @@ +#!/bin/sh +# +# Copyright (C) 2012 +# Charles Roussel <charles.roussel@xxxxxxxxxxxxxxx> +# Simon Cathebras <simon.cathebras@xxxxxxxxxxxxxxx> +# Julien Khayat <julien.khayat@xxxxxxxxxxxxxxx> +# Guillaume Sasdy <guillaume.sasdy@xxxxxxxxxxxxxxx> +# Simon Perrat <simon.perrat@xxxxxxxxxxxxxxx> +# Matthieu Moy <Matthieu.Moy@xxxxxxxxxxxxxxx> +# +# License: GPL v2 or later + +# tests for git-remote-mediawiki + +test_description='Test the Git Mediawiki remote helper: git push and git pull simple test cases' + +. ./test-gitmw-lib.sh +. ./test-lib.sh + +if ! test_have_prereq PERL +then + skip_all='skipping gateway git-mw tests, perl not available' + test_done +fi + +if [ ! -f /$GIT_BUILD_DIR/git-remote-mediawiki ]; +then + skip_all='skipping gateway git-mw tests, no remote mediawiki for git found' + test_done +fi + +if [ ! -d "$WIKI_DIR_INST/$WIKI_DIR_NAME" ] ; +then + skip_all='skipping gateway git-mw tests, no mediawiki found' + test_done +fi + +# Create a new file foo.mw in a freshly cloned wiki. Commit and push +# this file and then check that all files of the repository are similar to +# the wiki pages. +test_expect_success 'git push works after adding a file .mw' " + wiki_reset && + git clone mediawiki::http://$SERVER_ADDR/$WIKI_DIR_NAME mw_dir && + wiki_getallpage ref_page && + + cd mw_dir && + test ! -f foo.mw && # foo.mw should not exist after wiki_reset && + touch foo.mw && + echo \"hello world\" >> foo.mw && + git add foo.mw && + git commit -m \"foo\" && + git push && + cd .. && + + rm -rf ref_page && + wiki_getallpage ref_page && + git_content mw_dir ref_page && + rm -rf ref_page && + rm -rf mw_dir +" + +# Create a new page Foo in an empty wiki. Clone the wiki and edit +# the file foo.mw corresponding to the page Foo. Commit and push +# then check that all files of the repository are similar to the wiki +# pages. +test_expect_success 'git push works after editing a file .mw' " + # clone an empty wiki and add a Foo page + wiki_reset && + wiki_editpage \"foo\" \"page just created before the git clone\" false && + git clone mediawiki::http://$SERVER_ADDR/$WIKI_DIR_NAME mw_dir && + + cd mw_dir && + echo \"new line added in the file foo.mw\" >> Foo.mw && + git commit -am \"edit file foo.mw\" && + git push && + cd .. && + + rm -rf ref_page && + wiki_getallpage ref_page && + git_content mw_dir ref_page && + rm -rf ref_page && + rm -rf mw_dir +" + +# Clone a wiki with a page Foo. Remove the corresponding file from the +# repository. Check that the wiki page has been actually removed. +test_expect_failure 'git push works after deleting a file' " + wiki_reset && + wiki_editpage foo \"wiki page added before git clone\" false && + git clone mediawiki::http://$SERVER_ADDR/$WIKI_DIR_NAME mw_dir && + + cd mw_dir && + git rm Foo.mw && + git commit -am \"git rm delete the wiki page Foo.mw\" && + git push && + cd .. && + + rm -rf mw_dir && + test ! wiki_page_exist Foo +" + +# Clone an empty wiki. Add a page on the wiki and pull. Check +# all files of the repository are similar to the wiki pages. +test_expect_success 'git pull works after adding a new wiki page' " + wiki_reset && + git clone mediawiki::http://$SERVER_ADDR/$WIKI_DIR_NAME mw_dir && + wiki_editpage foo \"page just created after the git clone\" false && + + cd mw_dir && + git pull && + cd .. && + + rm -rf ref_page && + wiki_getallpage ref_page && + git_content mw_dir ref_page && + rm -rf ref_page && + rm -rf mw_dir +" + +# Clone a wiki with a page Foo. Edit the page foo on the wiki and pull. +# Check that all files of the repository are similar to the wiki pages. +test_expect_success 'git pull works after editing a wiki page' " + wiki_reset && + wiki_editpage foo \"page just created before the git clone\" false && + git clone mediawiki::http://$SERVER_ADDR/$WIKI_DIR_NAME mw_dir && + wiki_editpage foo \"new line added on the wiki\" true && + + cd mw_dir && + git pull && + cd .. && + + rm -rf ref_page && + wiki_getallpage ref_page && + git_content mw_dir ref_page && + rm -rf ref_page + rm -rf mw_dir +" + +# Clone a wiki with a page Foo. Remove the wiki page and pull. +# Check that the corresponding file in the repository has been actually removed. +test_expect_failure 'git pull works after deleting a wiki page' " + wiki_reset && + wiki_editpage foo \"wiki page added before git clone\" false && + git clone mediawiki::http://$SERVER_ADDR/$WIKI_DIR_NAME mw_dir && + + cd mw_dir && + wiki_delete_page foo + git pull && + test ! -f Foo.mw && + cd .. && + + rm -rf mw_dir +" + +test_done + -- 1.7.10.2.568.g4c26a3a -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html