This extension for Mediawiki adds extended expectations (a kind of assertions) to Lua modules provided by the Scribunto extension. An integral part is to report failures clearly and visible to facilitate interactive and collaborative fault fixing.
Extensive help is available at Expect: Assertion framework for Lua embedded within Mediawiki, with a programmers guide, a reference, and examples.
Expect depends on modules from the Scribunto extension.
-
Download from Github (zip) and place the file(s) in a directory called Expect in your extensions/ folder.
-
Add the following code at the bottom of your LocalSettings.php:
wfLoadExtension( 'Expect' );
-
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Expect uses Mediawiki-Vagrant, and a complete setup can be made quite easily.
-
Make sure you have Vagrant, etc, prepare a development directory, and move to that directory.
-
Clone Mediawiki
git clone --recursive https://gerrit.wikimedia.org/r/mediawiki/vagrant .
-
Add the role unless #535661 has been merged. (You need git-review to do this.)
git review -d 535661
-
Run setup.
./setup.sh
-
Enable role for Expect. This pulls in the role for Scribunto, which then pulls in additional roles.
vagrant roles enable expect
-
Start the instance.
vagrant up
-
Done.