Skip to content

Commit

Permalink
MDL-38949 behat: New test
Browse files Browse the repository at this point in the history
According to MDLQA-81, a teacher can
password protect a lesson and/or set
available from and deadline dates.
  • Loading branch information
David Monllao committed Apr 14, 2013
1 parent e541bc2 commit e2e4813
Show file tree
Hide file tree
Showing 2 changed files with 119 additions and 0 deletions.
73 changes: 73 additions & 0 deletions mod/lesson/tests/behat/date_availability.feature
@@ -0,0 +1,73 @@
@mod_lesson @mod
Feature: A teacher can set available from and deadline dates to access a lesson
In order to schedule lesson activities
As a moodle teacher
I need to set available from and deadline dates

Background:
Given the following "users" exists:
| username | firstname | lastname | email |
| teacher1 | Teacher | 1 | teacher1@asd.com |
| student1 | Student | 1 | student1@asd.com |
And the following "courses" exists:
| fullname | shortname | category |
| Course 1 | C1 | 0 |
And the following "course enrolments" exists:
| user | course | role |
| teacher1 | C1 | editingteacher |
| student1 | C1 | student |
And I log in as "teacher1"
And I follow "Course 1"
And I turn editing mode on

@javascript
Scenario: Forbidding lesson accesses until a specified date
Given I add a "Lesson" to section "1"
And I click on "id_available_enabled" "checkbox"
And I fill the moodle form with:
| Name | Test lesson |
| available[day] | 1 |
| available[month] | January |
| available[year] | 2020 |
| available[hour] | 08 |
| available[minute] | 00 |
And I press "Save and display"
And I follow "Test lesson"
And I follow "Add a content page"
And I fill the moodle form with:
| Page title | First page name |
| Page contents | First page contents |
| Description | The first one |
And I press "Save page"
And I log out
And I log in as "student1"
And I follow "Course 1"
When I follow "Test lesson"
Then I should see "This lesson will be open on Wednesday, 1 January 2020, 8:00 AM."
And I should not see "First page contents"

@javascript
Scenario: Forbidding lesson accesses until a specified date
Given I add a "Lesson" to section "1"
And I click on "id_deadline_enabled" "checkbox"
And I fill the moodle form with:
| Name | Test lesson |
| deadline[day] | 1 |
| deadline[month] | January |
| deadline[year] | 2000 |
| deadline[hour] | 08 |
| deadline[minute] | 00 |
And I press "Save and display"
And I follow "Test lesson"
And I follow "Add a content page"
And I fill the moodle form with:
| Page title | First page name |
| Page contents | First page contents |
| Description | The first one |
And I press "Save page"
And I log out
And I log in as "student1"
And I follow "Course 1"
When I follow "Test lesson"
Then I should see "This lesson closed on Saturday, 1 January 2000, 8:00 AM."
And I should not see "First page contents"
46 changes: 46 additions & 0 deletions mod/lesson/tests/behat/password_protection.feature
@@ -0,0 +1,46 @@
@mod_lesson @mod
Feature: A teacher can password protect a lesson
In order to avoid undesired accesses to lesson activities
As a moodle teacher
I need to set a password to access the lesson

@javascript
Scenario: Accessing as student to a protected lesson
Given the following "users" exists:
| username | firstname | lastname | email |
| teacher1 | Teacher | 1 | teacher1@asd.com |
| student1 | Student | 1 | student1@asd.com |
And the following "courses" exists:
| fullname | shortname | category |
| Course 1 | C1 | 0 |
And the following "course enrolments" exists:
| user | course | role |
| teacher1 | C1 | editingteacher |
| student1 | C1 | student |
And I log in as "teacher1"
And I follow "Course 1"
And I turn editing mode on
And I add a "Lesson" to section "1" and I fill the form with:
| Name | Test lesson |
| Password protected lesson | Yes |
| id_password | moodle_rules |
And I follow "Test lesson"
And I follow "Add a content page"
And I fill the moodle form with:
| Page title | First page name |
| Page contents | First page contents |
| Description | The first one |
And I press "Save page"
And I log out
And I log in as "student1"
And I follow "Course 1"
When I follow "Test lesson"
Then I should see "Test lesson is a password protected lesson"
And I should not see "First page contents"
And I fill in "userpassword" with "moodle"
And I press "Continue"
And I should see "Login failed, please try again..."
And I should see "Test lesson is a password protected lesson"
And I fill in "userpassword" with "moodle_rules"
And I press "Continue"
And I should see "First page contents"

0 comments on commit e2e4813

Please sign in to comment.