Actions

Difference between revisions of "Testing Area/Behat Testing"

From Mahara Wiki

< Testing Area
m
(14 intermediate revisions by 4 users not shown)
Line 1: Line 1:
==<strong>Welcome to Behat testing with Mahara</strong>==
+
==Welcome to Behat testing with Mahara==
<br>Behat testing is writing an automated test that tests the developers code by automatically,
+
Behat testing is writing an automated test that tests the developers code by automatically, clicking around Mahara to check the devs submitted code doesn't break anything. This wiki section will teach you step by step how to write and submit your first Behat test.
<br>clicking around Mahara to check the devs submitted code doesn't break anything.
 
<br>This wiki section will teach you step by step how to write and submit your first Behat test.
 
<br>Follow the steps below:<br>
 
  
 +
Follow the steps below:
  
# [[Testing/Behat_Testing/Setup | Setting up your Mahara with Behat]]
+
# [[Testing_Area/Behat_Testing/Setup | Setting up your Mahara with Behat]]
# [[Testing/Behat_Testing/Running test |Running tests]]
+
# [[Testing_Area/Behat_Testing/Running test |Running tests]]
# [[Testing/Behat_Testing/Writing tests |Writing tests]]
+
# [[Testing_Area/Behat_Testing/Writing tests |Writing tests]]
# [[Testing/Behat_Testing/Steps |Steps]]
+
## [[Testing_Area/Behat_Testing/Basics |Basics]]
# [[Testing/Behat_Testing/Error |Errors]]
+
## [[Testing_Area/Behat_Testing/Characteristics of a good test |Characteristics of a good test ]]
# [[Testing/Behat_Testing/Submitting tests |Submitting tests]]
+
## [[Testing_Area/Behat_Testing/Selectors and Elements |Selectors and elements ]]
 +
# [[Testing_Area/Behat_Testing/Data set up | Data set up]]
 +
# [[Testing_Area/Behat_Testing/Steps |Steps]]
 +
# [[Testing_Area/Behat_Testing/Error & Solutions |Errors and solutions]]
 +
# [[Testing_Area/Behat_Testing/Submitting tests |Submitting tests]]
 +
# [[Testing_Area/Behat_Testing/Jenkins Maintenance |Jenkins maintenance]]
  
 +
==Behat code snippets==
  
 +
If you want to get a human-readable(ish) list of all the existing Behat test scenarios:
 +
 +
<source lang="bash" enclose="div">
 +
cd /var/www/mahara
 +
find test/behat -name "*.feature" -exec grep -i -P "(Scenario)|(Feature)" {} \;
 +
</source>
  
 
[[Category: Behat]]
 
[[Category: Behat]]

Revision as of 14:07, 8 June 2020

Welcome to Behat testing with Mahara

Behat testing is writing an automated test that tests the developers code by automatically, clicking around Mahara to check the devs submitted code doesn't break anything. This wiki section will teach you step by step how to write and submit your first Behat test.

Follow the steps below:

  1. Setting up your Mahara with Behat
  2. Running tests
  3. Writing tests
    1. Basics
    2. Characteristics of a good test
    3. Selectors and elements
  4. Data set up
  5. Steps
  6. Errors and solutions
  7. Submitting tests
  8. Jenkins maintenance

Behat code snippets

If you want to get a human-readable(ish) list of all the existing Behat test scenarios:

cd /var/www/mahara
find test/behat -name "*.feature" -exec grep -i -P "(Scenario)|(Feature)" {} \;