Testing Area/Behat Testing/Setup: Difference between revisions
From Mahara Wiki
< Testing Area | Behat Testing
(syntax highlight) |
No edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 14: | Line 14: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
// Behat config | // Behat config | ||
$cfg->behat_test = true; // Turn this off when you are not behat testing | |||
$cfg->behat_dbprefix = 'behat_'; // must not empty | $cfg->behat_dbprefix = 'behat_'; // must not empty | ||
$cfg->behat_dataroot = "/var/lib/maharadata/ | $cfg->behat_dataroot = "/var/lib/maharadata/main_behat"; // The Behat copy of maharadata. | ||
$cfg->behat_wwwroot = 'http://localhost:8000'; // Must be this | $cfg->behat_wwwroot = 'http://localhost:8000'; // Must be this | ||
$cfg->behat_selenium2 = "http://127.0.0.1:4444/wd/hub"; // Must be this | $cfg->behat_selenium2 = "http://127.0.0.1:4444/wd/hub"; // Must be this | ||
// If you want failed step screenshots appear directly on screen while the step fails (only Ubuntu) | |||
$cfg->behat_view_screenshots = true; | |||
</syntaxhighlight> | </syntaxhighlight> | ||
{{note|There should be a behat_dataroot for each Mahara instance that you set up. Here the one for the | {{note|There should be a behat_dataroot for each Mahara instance that you set up. Here the one for the main branch / this Mahara instance is created.}} | ||
{{note|If the directory for $cfg->behat_dataroot does not exist then it will need to be created.}} | {{note|If the directory for $cfg->behat_dataroot does not exist then it will need to be created.}} | ||
4. Make your Behat data directory (check this matches what you set in config.php): | 4. Make your Behat data directory (check this matches what you set in config.php): | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
$ sudo mkdir /var/lib/maharadata/ | $ sudo mkdir /var/lib/maharadata/main_behat | ||
</syntaxhighlight> | </syntaxhighlight> | ||
5. Make the directory and any subdirectories writeable by Mahara (check the directory is correct): | 5. Make the directory and any subdirectories writeable by Mahara (check the directory is correct): | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
$ sudo chmod 777 -R /var/lib/maharadata/ | $ sudo chmod 777 -R /var/lib/maharadata/main_behat | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<span id="chown"></span> | <span id="chown"></span> | ||
6. Change the directory and any subdirectories permissions to be owned by apache user (check the directory is correct): | 6. Change the directory and any subdirectories permissions to be owned by apache user (check the directory is correct): | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
$ sudo chown -R www-data:www-data /var/lib/maharadata/ | $ sudo chown -R www-data:www-data /var/lib/maharadata/main_behat | ||
</syntaxhighlight> | </syntaxhighlight> | ||
* For Ubuntu, apache runs with user www-data | *For Ubuntu, apache runs with user www-data | ||
* For Centos, apache runs with user apache | *For Centos, apache runs with user apache | ||
7. Run Behat tests (change into your Mahara code directory first) as the apache user: | 7. Run Behat tests (change into your Mahara code directory first) as the apache user: | ||
Line 71: | Line 75: | ||
[[Category:Behat]] | [[Category:Behat]] | ||
== Running Behat tests with html report and screenshots on failed steps == | ==Running Behat tests with html report and screenshots on failed steps== | ||
To run tests with html output, add the flag 'html' to your test run command, e.g: | To run tests with html output, add the flag 'html' to your test run command, e.g: | ||
Line 78: | Line 82: | ||
This will automatically open an html report of the test run in your browser. If there were failed steps, the the html report plugin takes a screenshot of the page that failed. | This will automatically open an html report of the test run in your browser. If there were failed steps, the the html report plugin takes a screenshot of the page that failed. | ||
You can find the screenshots in your behat dataroot (usually /var/lib/maharadata/ | You can find the screenshots in your behat dataroot (usually /var/lib/maharadata/main_behat) at the following path: | ||
behat/html_results/<feature title>/<scenario title>.png | behat/html_results/<feature title>/<scenario title>.png | ||
Ubuntu only (you need the image viewer '[https://packages.ubuntu.com/search?keywords=eog eog]'): If you set | |||
$cfg->behat_view_screenshots = true; | |||
in your config.php file then the images will be opened up in image browser. | |||
Hopefully we will rig up the report to link to the screenshot soon. | Hopefully we will rig up the report to link to the screenshot soon. | ||
== How to Run Mahara behat test on Chrome for versions older than 17.04== | ==How to Run Mahara behat test on Chrome for versions older than 17.04== | ||
{{note|Mahara behat is running on chrome driver by default in 17:04+}} | {{note|Mahara behat is running on chrome driver by default in 17:04+}} | ||
Line 97: | Line 107: | ||
3. Change the behat.yml file as follows, | 3. Change the behat.yml file as follows, | ||
Here is the file path var/lib/maharadata/ | Here is the file path var/lib/maharadata/main_behat/behat.yml | ||
when you open the beaht.yml file replace the following code with the lines that contain sessions to | when you open the beaht.yml file replace the following code with the lines that contain sessions to go | ||
javascript_session: selenium2 | javascript_session: selenium2 | ||
Line 110: | Line 120: | ||
for example ./test/behat/mahara_behat.sh run example.feature | for example ./test/behat/mahara_behat.sh run example.feature | ||
== Debugging == | ==Debugging== | ||
Go here for tips: https://wiki.mahara.org/wiki/Testing/Behat_Testing/Error_%26_Solutions | Go here for tips: https://wiki.mahara.org/wiki/Testing/Behat_Testing/Error_%26_Solutions |
Latest revision as of 12:21, 15 Haziran 2023
1. Set up your developer environment if you haven't already done so.
2. Install Behat's dependencies:
$ sudo apt-get install curl openjdk-8-jre-headless
3. Add the following config settings to the bottom of your Mahara config.php file inside the htdocs/ subdirectory of the Mahara codebase.
// Behat config
$cfg->behat_test = true; // Turn this off when you are not behat testing
$cfg->behat_dbprefix = 'behat_'; // must not empty
$cfg->behat_dataroot = "/var/lib/maharadata/main_behat"; // The Behat copy of maharadata.
$cfg->behat_wwwroot = 'http://localhost:8000'; // Must be this
$cfg->behat_selenium2 = "http://127.0.0.1:4444/wd/hub"; // Must be this
// If you want failed step screenshots appear directly on screen while the step fails (only Ubuntu)
$cfg->behat_view_screenshots = true;
4. Make your Behat data directory (check this matches what you set in config.php):
$ sudo mkdir /var/lib/maharadata/main_behat
5. Make the directory and any subdirectories writeable by Mahara (check the directory is correct):
$ sudo chmod 777 -R /var/lib/maharadata/main_behat
6. Change the directory and any subdirectories permissions to be owned by apache user (check the directory is correct):
$ sudo chown -R www-data:www-data /var/lib/maharadata/main_behat
- For Ubuntu, apache runs with user www-data
- For Centos, apache runs with user apache
7. Run Behat tests (change into your Mahara code directory first) as the apache user:
$ cd
$ cd code/mahara
./test/behat/mahara_behat.sh run
Or if you have sudo access:
$ cd
$ cd code/mahara
sudo -u www-data ./test/behat/mahara_behat.sh run
For the first time of running Behat, you need to wait for the Behat environment initialisation. This can take a while.
To run all tests:
./test/behat/mahara_behat.sh run
To run your specific tests marked with @yourtags:
./test/behat/mahara_behat.sh run @yourtags
To run a particular feature file:
./test/behat/mahara_behat.sh run my_file.feature
The run / runheadless / rundebug / rundebugheadless / runfresh are interchangable with run in above commands
Running Behat tests with html report and screenshots on failed steps
To run tests with html output, add the flag 'html' to your test run command, e.g:
./test/behat/mahara_behat.sh run create_page.feature html
This will automatically open an html report of the test run in your browser. If there were failed steps, the the html report plugin takes a screenshot of the page that failed. You can find the screenshots in your behat dataroot (usually /var/lib/maharadata/main_behat) at the following path: behat/html_results/<feature title>/<scenario title>.png
Ubuntu only (you need the image viewer 'eog'): If you set
$cfg->behat_view_screenshots = true;
in your config.php file then the images will be opened up in image browser.
Hopefully we will rig up the report to link to the screenshot soon.
How to Run Mahara behat test on Chrome for versions older than 17.04
This is steps for older versions of Mahara
1. Download chromedriver here http://www.seleniumhq.org/download/ ( download the latest release)
2. Start selenium Server with chrome driver
$ java -jar selenium-server-standalone-2.53.1.jar -Dwebdriver.chrome.driver=path of chromedriver
3. Change the behat.yml file as follows,
Here is the file path var/lib/maharadata/main_behat/behat.yml
when you open the beaht.yml file replace the following code with the lines that contain sessions to go
javascript_session: selenium2
selenium2: browser: chrome goutte: ~
4. Run the behat test without rundebug
for example ./test/behat/mahara_behat.sh run example.feature
Debugging
Go here for tips: https://wiki.mahara.org/wiki/Testing/Behat_Testing/Error_%26_Solutions