git/contrib/mw-to-git/t
Ævar Arnfjörð Bjarmason 128efae6dc remote-mediawiki tests: use a 10 character password
In more recent versions of MediaWiki this is a requirement, e.g. the
current stable version of 1.32.2.

The web installer now refuses our old 9 character password, the
command-line one (will be used in a subsequent change) will accept it,
but trying to use it in the web UI will emit an error asking the user
to reset the password. Let's use a password that'll just work and
allow us to log in as the admin user.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-09-21 12:37:38 -07:00
..
install-wiki Fix spelling errors in no-longer-updated-from-upstream modules 2019-11-10 16:00:55 +09:00
.gitignore git-remote-mediawiki: test environment of git-remote-mediawiki 2012-07-06 12:20:45 -07:00
install-wiki.sh git-remote-mediawiki: allow stop/start-ing the test server 2014-04-23 15:22:53 -07:00
Makefile git-remote-mediawiki: test environment of git-remote-mediawiki 2012-07-06 12:20:45 -07:00
push-pull-tests.sh git-remote-mediawiki: fix incorrect test usage in test 2012-07-17 11:51:45 -07:00
README remote-mediawiki doc: don't hardcode Debian PHP versions 2020-09-21 12:37:38 -07:00
t9360-mw-to-git-clone.sh Fix spelling errors in no-longer-updated-from-upstream modules 2019-11-10 16:00:55 +09:00
t9361-mw-to-git-push-pull.sh git-remote-mediawiki (t9361): test git-remote-mediawiki pull and push 2012-07-06 12:20:46 -07:00
t9362-mw-to-git-utf8.sh t9362-mw-to-git-utf8.sh: use the $( ... ) construct for command substitution 2014-04-17 11:15:01 -07:00
t9363-mw-to-git-export-import.sh remote-mediawiki tests: use the login/password variables 2020-09-21 12:37:38 -07:00
t9364-pull-by-rev.sh git-remote-mediawiki: more efficient 'pull' in the best case 2012-07-06 12:20:46 -07:00
t9365-continuing-queries.sh t9365-continuing-queries.sh: use the $( ... ) construct for command substitution 2014-04-23 15:17:01 -07:00
test-gitmw-lib.sh Fix spelling errors in no-longer-updated-from-upstream modules 2019-11-10 16:00:55 +09:00
test-gitmw.pl git-remote-mediawiki: support for uploading file in test environment 2012-07-06 12:20:46 -07:00
test.config remote-mediawiki tests: use a 10 character password 2020-09-21 12:37:38 -07:00

Tests for Mediawiki-to-Git
==========================

Introduction
------------
This manual describes how to install the git-remote-mediawiki test
environment on a machine with git installed on it.

Prerequisite
------------

In order to run this test environment correctly, you will need to
install the following packages (Debian/Ubuntu names, may need to be
adapted for another distribution):

* lighttpd
* php
* php-cgi
* php-cli
* php-curl
* php-sqlite

Principles and Technical Choices
--------------------------------

The test environment makes it easy to install and manipulate one or
several MediaWiki instances. To allow developers to run the testsuite
easily, the environment does not require root privilege (except to
install the required packages if needed). It starts a webserver
instance on the user's account (using lighttpd greatly helps for
that), and does not need a separate database daemon (thanks to the use
of sqlite).

Run the test environment
------------------------

Install a new wiki
~~~~~~~~~~~~~~~~~~

Once you have all the prerequisite, you need to install a MediaWiki
instance on your machine. If you already have one, it is still
strongly recommended to install one with the script provided. Here's
how to work it:

a. change directory to contrib/mw-to-git/t/
b. if needed, edit test.config to choose your installation parameters
c. run `./install-wiki.sh install`
d. check on your favourite web browser if your wiki is correctly
   installed.

Remove an existing wiki
~~~~~~~~~~~~~~~~~~~~~~~

Edit the file test.config to fit the wiki you want to delete, and then
execute the command `./install-wiki.sh delete` from the
contrib/mw-to-git/t directory.

Run the existing tests
~~~~~~~~~~~~~~~~~~~~~~

The provided tests are currently in the `contrib/mw-to-git/t` directory.
The files are all the t936[0-9]-*.sh shell scripts.

a. Run all tests:
To do so, run "make test" from the contrib/mw-to-git/ directory.

b. Run a specific test:
To run a given test <test_name>, run ./<test_name> from the
contrib/mw-to-git/t directory.

How to create new tests
-----------------------

Available functions
~~~~~~~~~~~~~~~~~~~

The test environment of git-remote-mediawiki provides some functions
useful to test its behaviour. for more details about the functions'
parameters, please refer to the `test-gitmw-lib.sh` and
`test-gitmw.pl` files.

** `test_check_wiki_precond`:
Check if the tests must be skipped or not. Please use this function
at the beginning of each new test file.

** `wiki_getpage`:
Fetch a given page from the wiki and puts its content in the
directory in parameter.

** `wiki_delete_page`:
Delete a given page from the wiki.

** `wiki_edit_page`:
Create or modify a given page in the wiki. You can specify several
parameters like a summary for the page edition, or add the page to a
given category.
See test-gitmw.pl for more details.

** `wiki_getallpage`:
Fetch all pages from the wiki into a given directory. The directory
is created if it does not exists.

** `test_diff_directories`:
Compare the content of two directories. The content must be the same.
Use this function to compare the content of a git directory and a wiki
one created by wiki_getallpage.

** `test_contains_N_files`:
Check if the given directory contains a given number of file.

** `wiki_page_exists`:
Tests if a given page exists on the wiki.

** `wiki_reset`:
Reset the wiki, i.e. flush the database. Use this function at the
beginning of each new test, except if the test re-uses the same wiki
(and history) as the previous test.

How to write a new test
~~~~~~~~~~~~~~~~~~~~~~~

Please, follow the standards given by git. See git/t/README.
New file should be named as t936[0-9]-*.sh.
Be sure to reset your wiki regularly with the function `wiki_reset`.