mirror of
https://github.com/moodle/moodle.git
synced 2025-03-13 20:26:32 +01:00
MDL-49642 mod_lesson: Behat tests for overrides
This commit is contained in:
parent
e0e1a83e2c
commit
4ce40083e2
109
mod/lesson/tests/behat/lesson_course_reset.feature
Normal file
109
mod/lesson/tests/behat/lesson_course_reset.feature
Normal file
@ -0,0 +1,109 @@
|
||||
@mod @mod_lesson
|
||||
Feature: Lesson reset
|
||||
In order to reuse past lessons
|
||||
As a teacher
|
||||
I need to remove all previous data.
|
||||
|
||||
Background:
|
||||
Given the following "users" exist:
|
||||
| username | firstname | lastname | email |
|
||||
| teacher1 | Tina | Teacher1 | teacher1@asd.com |
|
||||
| student1 | Sam1 | Student1 | student1@asd.com |
|
||||
| student2 | Sam2 | Student2 | student2@asd.com |
|
||||
And the following "courses" exist:
|
||||
| fullname | shortname | category |
|
||||
| Course 1 | C1 | 0 |
|
||||
And the following "course enrolments" exist:
|
||||
| user | course | role |
|
||||
| teacher1 | C1 | editingteacher |
|
||||
| student1 | C1 | student |
|
||||
| student2 | C1 | student |
|
||||
And the following "groups" exist:
|
||||
| name | course | idnumber |
|
||||
| Group 1 | C1 | G1 |
|
||||
| Group 2 | C1 | G2 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber |
|
||||
| lesson | Test lesson name | Test lesson description | C1 | lesson1 |
|
||||
And I log in as "teacher1"
|
||||
And I follow "Course 1"
|
||||
And I turn editing mode on
|
||||
And I follow "Test lesson name"
|
||||
And I follow "Add a question page"
|
||||
And I set the field "Select a question type" to "True/false"
|
||||
And I press "Add a question page"
|
||||
And I set the following fields to these values:
|
||||
| Page title | True/false question 1 |
|
||||
| Page contents | Cat is an amphibian |
|
||||
| id_answer_editor_0 | False |
|
||||
| id_response_editor_0 | Correct |
|
||||
| id_jumpto_0 | Next page |
|
||||
| id_answer_editor_1 | True |
|
||||
| id_response_editor_1 | Wrong |
|
||||
| id_jumpto_1 | This page |
|
||||
And I press "Save page"
|
||||
|
||||
Scenario: Use course reset to clear all attempt data
|
||||
When I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| False | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
||||
And I log out
|
||||
And I log in as "teacher1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I navigate to "Overview" node in "Reports"
|
||||
And I should see "Sam1 Student1"
|
||||
And I navigate to "Reset" node in "Course administration"
|
||||
And I set the following fields to these values:
|
||||
| Delete all lesson attempts | 1 |
|
||||
And I press "Reset course"
|
||||
And I press "Continue"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I navigate to "Overview" node in "Reports"
|
||||
Then I should see "No attempts have been made on this lesson"
|
||||
|
||||
Scenario: Use course reset to remove user overrides.
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "User overrides" node in "Lesson administration"
|
||||
And I press "Add user override"
|
||||
And I set the following fields to these values:
|
||||
| Override user | Student1 |
|
||||
| Re-takes allowed | 1 |
|
||||
And I press "Save"
|
||||
And I should see "Sam1 Student1"
|
||||
And I navigate to "Reset" node in "Course administration"
|
||||
And I set the following fields to these values:
|
||||
| Delete all user overrides | 1 |
|
||||
And I press "Reset course"
|
||||
And I press "Continue"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I navigate to "User overrides" node in "Lesson administration"
|
||||
Then I should not see "Sam1 Student1"
|
||||
|
||||
Scenario: Use course reset to remove group overrides.
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Group overrides" node in "Lesson administration"
|
||||
And I press "Add group override"
|
||||
And I set the following fields to these values:
|
||||
| Override group | Group 1 |
|
||||
| Re-takes allowed | 1 |
|
||||
And I press "Save"
|
||||
And I should see "Group 1"
|
||||
And I navigate to "Reset" node in "Course administration"
|
||||
And I set the following fields to these values:
|
||||
| Delete all group overrides | 1 |
|
||||
And I press "Reset course"
|
||||
And I press "Continue"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I navigate to "Group overrides" node in "Lesson administration"
|
||||
Then I should not see "Group 1"
|
340
mod/lesson/tests/behat/lesson_group_override.feature
Normal file
340
mod/lesson/tests/behat/lesson_group_override.feature
Normal file
@ -0,0 +1,340 @@
|
||||
@mod @mod_lesson
|
||||
Feature: Lesson user override
|
||||
In order to grant a student special access to a lesson
|
||||
As a teacher
|
||||
I need to create an override for that user.
|
||||
|
||||
Background:
|
||||
Given the following "users" exist:
|
||||
| username | firstname | lastname | email |
|
||||
| teacher1 | Tina | Teacher1 | teacher1@asd.com |
|
||||
| student1 | Sam1 | Student1 | student1@asd.com |
|
||||
| student2 | Sam2 | Student2 | student2@asd.com |
|
||||
| student3 | Sam3 | Student3 | student3@asd.com |
|
||||
And the following "courses" exist:
|
||||
| fullname | shortname | category |
|
||||
| Course 1 | C1 | 0 |
|
||||
And the following "course enrolments" exist:
|
||||
| user | course | role |
|
||||
| teacher1 | C1 | editingteacher |
|
||||
| student1 | C1 | student |
|
||||
| student2 | C1 | student |
|
||||
| student3 | C1 | student |
|
||||
And the following "groups" exist:
|
||||
| name | course | idnumber |
|
||||
| Group 1 | C1 | G1 |
|
||||
| Group 2 | C1 | G2 |
|
||||
Given the following "group members" exist:
|
||||
| user | group |
|
||||
| student1 | G1 |
|
||||
| student2 | G2 |
|
||||
| student3 | G1 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | groupmode | course | idnumber |
|
||||
| lesson | Test lesson name | Test lesson description | 1 | C1 | lesson1 |
|
||||
And I log in as "teacher1"
|
||||
And I follow "Course 1"
|
||||
And I turn editing mode on
|
||||
And I follow "Test lesson name"
|
||||
And I follow "Add a question page"
|
||||
And I set the field "Select a question type" to "True/false"
|
||||
And I press "Add a question page"
|
||||
And I set the following fields to these values:
|
||||
| Page title | True/false question 1 |
|
||||
| Page contents | Cat is an amphibian |
|
||||
| id_answer_editor_0 | False |
|
||||
| id_response_editor_0 | Correct |
|
||||
| id_jumpto_0 | Next page |
|
||||
| id_answer_editor_1 | True |
|
||||
| id_response_editor_1 | Wrong |
|
||||
| id_jumpto_1 | This page |
|
||||
And I press "Save page"
|
||||
|
||||
Scenario: Add, modify then delete a group override
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Group overrides" node in "Lesson administration"
|
||||
And I press "Add group override"
|
||||
And I set the following fields to these values:
|
||||
| Override group | Group 1 |
|
||||
| id_deadline_enabled | 1 |
|
||||
| deadline[day] | 1 |
|
||||
| deadline[month] | January |
|
||||
| deadline[year] | 2020 |
|
||||
| deadline[hour] | 08 |
|
||||
| deadline[minute] | 00 |
|
||||
And I press "Save"
|
||||
And I should see "Wednesday, 1 January 2020, 8:00 am"
|
||||
Then I click on "Edit" "link"
|
||||
And I set the following fields to these values:
|
||||
| deadline[year] | 2030 |
|
||||
And I press "Save"
|
||||
And I should see "Tuesday, 1 January 2030, 8:00 am"
|
||||
And I click on "Delete" "link"
|
||||
And I press "Continue"
|
||||
And I should not see "Group 1"
|
||||
|
||||
Scenario: Duplicate a user override
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Group overrides" node in "Lesson administration"
|
||||
And I press "Add group override"
|
||||
And I set the following fields to these values:
|
||||
| Override group | Group 1 |
|
||||
| id_deadline_enabled | 1 |
|
||||
| deadline[day] | 1 |
|
||||
| deadline[month] | January |
|
||||
| deadline[year] | 2020 |
|
||||
| deadline[hour] | 08 |
|
||||
| deadline[minute] | 00 |
|
||||
And I press "Save"
|
||||
And I should see "Wednesday, 1 January 2020, 8:00 am"
|
||||
Then I click on "copy" "link"
|
||||
And I set the following fields to these values:
|
||||
| Override group | Group 2 |
|
||||
| deadline[year] | 2030 |
|
||||
And I press "Save"
|
||||
And I should see "Tuesday, 1 January 2030, 8:00 am"
|
||||
And I should see "Group 2"
|
||||
|
||||
Scenario: Allow a single group to have re-take the lesson
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| Re-takes allowed | 0 |
|
||||
And I press "Save and display"
|
||||
And I navigate to "Group overrides" node in "Lesson administration"
|
||||
And I press "Add group override"
|
||||
And I set the following fields to these values:
|
||||
| Override group | Group 1 |
|
||||
| Re-takes allowed | 1 |
|
||||
And I press "Save"
|
||||
And I should see "Re-takes allowed"
|
||||
And I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| False | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
||||
And I follow "Test lesson name"
|
||||
Then I should not see "You are not allowed to retake this lesson."
|
||||
And I should see "Cat is an amphibian"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| False | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "You are not allowed to retake this lesson."
|
||||
|
||||
Scenario: Allow a single group to have a different password
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| Password protected lesson | Yes |
|
||||
| id_password | moodle_rules |
|
||||
And I press "Save and display"
|
||||
And I navigate to "Group overrides" node in "Lesson administration"
|
||||
And I press "Add group override"
|
||||
And I set the following fields to these values:
|
||||
| Override group | Group 1 |
|
||||
| Password protected lesson | 12345 |
|
||||
And I press "Save"
|
||||
And I should see "Password protected lesson"
|
||||
And I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
Then I should see "Test lesson name is a password protected lesson"
|
||||
And I should not see "Cat is an amphibian"
|
||||
And I set the field "userpassword" to "moodle_rules"
|
||||
And I press "Continue"
|
||||
And I should see "Login failed, please try again..."
|
||||
And I should see "Test lesson name is a password protected lesson"
|
||||
And I set the field "userpassword" to "12345"
|
||||
And I press "Continue"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| False | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Test lesson name is a password protected lesson"
|
||||
And I should not see "Cat is an amphibian"
|
||||
And I set the field "userpassword" to "12345"
|
||||
And I press "Continue"
|
||||
And I should see "Login failed, please try again..."
|
||||
And I should see "Test lesson name is a password protected lesson"
|
||||
And I set the field "userpassword" to "moodle_rules"
|
||||
And I press "Continue"
|
||||
|
||||
Scenario: Allow a group to have a different due date
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| id_deadline_enabled | 1 |
|
||||
| deadline[day] | 1 |
|
||||
| deadline[month] | January |
|
||||
| deadline[year] | 2000 |
|
||||
| deadline[hour] | 08 |
|
||||
| deadline[minute] | 00 |
|
||||
And I press "Save and display"
|
||||
And I navigate to "Group overrides" node in "Lesson administration"
|
||||
And I press "Add group override"
|
||||
And I set the following fields to these values:
|
||||
| Override group | Group 1 |
|
||||
| id_deadline_enabled | 1 |
|
||||
| deadline[day] | 1 |
|
||||
| deadline[month] | January |
|
||||
| deadline[year] | 2020 |
|
||||
| deadline[hour] | 08 |
|
||||
| deadline[minute] | 00 |
|
||||
And I press "Save"
|
||||
And I should see "Lesson closes"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
Then I should see "This lesson closed on Saturday, 1 January 2000, 8:00"
|
||||
And I should not see "Cat is an amphibian"
|
||||
And I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
And I should see "Cat is an amphibian"
|
||||
|
||||
Scenario: Allow a group to have a different start date
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| id_available_enabled | 1 |
|
||||
| available[day] | 1 |
|
||||
| available[month] | January |
|
||||
| available[year] | 2020 |
|
||||
| available[hour] | 08 |
|
||||
| available[minute] | 00 |
|
||||
And I press "Save and display"
|
||||
And I navigate to "Group overrides" node in "Lesson administration"
|
||||
And I press "Add group override"
|
||||
And I set the following fields to these values:
|
||||
| Override group | Group 1 |
|
||||
| id_available_enabled | 1 |
|
||||
| available[day] | 1 |
|
||||
| available[month] | January |
|
||||
| available[year] | 2015 |
|
||||
| available[hour] | 08 |
|
||||
| available[minute] | 00 |
|
||||
And I press "Save"
|
||||
And I should see "Lesson opens"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
Then I should see "This lesson will be open on Wednesday, 1 January 2020, 8:00"
|
||||
And I should not see "Cat is an amphibian"
|
||||
And I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
And I should see "Cat is an amphibian"
|
||||
|
||||
Scenario: Allow a single group to have multiple attempts at each question
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| Re-takes allowed | 1 |
|
||||
And I press "Save and display"
|
||||
And I navigate to "Group overrides" node in "Lesson administration"
|
||||
And I press "Add group override"
|
||||
And I set the following fields to these values:
|
||||
| Override group | Group 1 |
|
||||
| Maximum number of attempts | 2 |
|
||||
And I press "Save"
|
||||
And I should see "Maximum number of attempts"
|
||||
And I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| True | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| True | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| True | 1 |
|
||||
And I press "Submit"
|
||||
Then I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
||||
|
||||
Scenario: Add both a user and group override and verify that both are applied correctly
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| id_available_enabled | 1 |
|
||||
| available[day] | 1 |
|
||||
| available[month] | January |
|
||||
| available[year] | 2030 |
|
||||
| available[hour] | 08 |
|
||||
| available[minute] | 00 |
|
||||
And I press "Save and display"
|
||||
And I navigate to "Group overrides" node in "Lesson administration"
|
||||
And I press "Add group override"
|
||||
And I set the following fields to these values:
|
||||
| Override group | Group 1 |
|
||||
| id_available_enabled | 1 |
|
||||
| available[day] | 1 |
|
||||
| available[month] | January |
|
||||
| available[year] | 2020 |
|
||||
| available[hour] | 08 |
|
||||
| available[minute] | 00 |
|
||||
And I press "Save"
|
||||
And I should see "Wednesday, 1 January 2020, 8:00 am"
|
||||
And I navigate to "User overrides" node in "Lesson administration"
|
||||
And I press "Add user override"
|
||||
And I set the following fields to these values:
|
||||
| Override user | Student1 |
|
||||
| id_available_enabled | 1 |
|
||||
| available[day] | 1 |
|
||||
| available[month] | January |
|
||||
| available[year] | 2021 |
|
||||
| available[hour] | 08 |
|
||||
| available[minute] | 00 |
|
||||
And I press "Save"
|
||||
And I should see "Friday, 1 January 2021, 8:00 am"
|
||||
And I log out
|
||||
Then I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
And I should see "This lesson will be open on Friday, 1 January 2021, 8:00"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
And I should see "This lesson will be open on Tuesday, 1 January 2030, 8:00"
|
||||
And I log out
|
||||
And I log in as "student3"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
And I should see "This lesson will be open on Wednesday, 1 January 2020, 8:00"
|
282
mod/lesson/tests/behat/lesson_user_override.feature
Normal file
282
mod/lesson/tests/behat/lesson_user_override.feature
Normal file
@ -0,0 +1,282 @@
|
||||
@mod @mod_lesson
|
||||
Feature: Lesson user override
|
||||
In order to grant a student special access to a lesson
|
||||
As a teacher
|
||||
I need to create an override for that user.
|
||||
|
||||
Background:
|
||||
Given the following "users" exist:
|
||||
| username | firstname | lastname | email |
|
||||
| teacher1 | Tina | Teacher1 | teacher1@asd.com |
|
||||
| student1 | Sam1 | Student1 | student1@asd.com |
|
||||
| student2 | Sam2 | Student2 | student2@asd.com |
|
||||
And the following "courses" exist:
|
||||
| fullname | shortname | category |
|
||||
| Course 1 | C1 | 0 |
|
||||
And the following "course enrolments" exist:
|
||||
| user | course | role |
|
||||
| teacher1 | C1 | editingteacher |
|
||||
| student1 | C1 | student |
|
||||
| student2 | C1 | student |
|
||||
And the following "groups" exist:
|
||||
| name | course | idnumber |
|
||||
| Group 1 | C1 | G1 |
|
||||
| Group 2 | C1 | G2 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber |
|
||||
| lesson | Test lesson name | Test lesson description | C1 | lesson1 |
|
||||
And I log in as "teacher1"
|
||||
And I follow "Course 1"
|
||||
And I turn editing mode on
|
||||
And I follow "Test lesson name"
|
||||
And I follow "Add a question page"
|
||||
And I set the field "Select a question type" to "True/false"
|
||||
And I press "Add a question page"
|
||||
And I set the following fields to these values:
|
||||
| Page title | True/false question 1 |
|
||||
| Page contents | Cat is an amphibian |
|
||||
| id_answer_editor_0 | False |
|
||||
| id_response_editor_0 | Correct |
|
||||
| id_jumpto_0 | Next page |
|
||||
| id_answer_editor_1 | True |
|
||||
| id_response_editor_1 | Wrong |
|
||||
| id_jumpto_1 | This page |
|
||||
And I press "Save page"
|
||||
|
||||
Scenario: Add, modify then delete a user override
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "User overrides" node in "Lesson administration"
|
||||
And I press "Add user override"
|
||||
And I set the following fields to these values:
|
||||
| Override user | Student1 |
|
||||
| id_deadline_enabled | 1 |
|
||||
| deadline[day] | 1 |
|
||||
| deadline[month] | January |
|
||||
| deadline[year] | 2020 |
|
||||
| deadline[hour] | 08 |
|
||||
| deadline[minute] | 00 |
|
||||
And I press "Save"
|
||||
And I should see "Wednesday, 1 January 2020, 8:00 am"
|
||||
Then I click on "Edit" "link"
|
||||
And I set the following fields to these values:
|
||||
| deadline[year] | 2030 |
|
||||
And I press "Save"
|
||||
And I should see "Tuesday, 1 January 2030, 8:00 am"
|
||||
And I click on "Delete" "link"
|
||||
And I press "Continue"
|
||||
And I should not see "Sam1 Student1"
|
||||
|
||||
Scenario: Duplicate a user override
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "User overrides" node in "Lesson administration"
|
||||
And I press "Add user override"
|
||||
And I set the following fields to these values:
|
||||
| Override user | Student1 |
|
||||
| id_deadline_enabled | 1 |
|
||||
| deadline[day] | 1 |
|
||||
| deadline[month] | January |
|
||||
| deadline[year] | 2020 |
|
||||
| deadline[hour] | 08 |
|
||||
| deadline[minute] | 00 |
|
||||
And I press "Save"
|
||||
And I should see "Wednesday, 1 January 2020, 8:00 am"
|
||||
Then I click on "copy" "link"
|
||||
And I set the following fields to these values:
|
||||
| Override user | Student2 |
|
||||
| deadline[year] | 2030 |
|
||||
And I press "Save"
|
||||
And I should see "Tuesday, 1 January 2030, 8:00 am"
|
||||
And I should see "Sam2 Student2"
|
||||
|
||||
Scenario: Allow a single user to have re-take the lesson
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| Re-takes allowed | 0 |
|
||||
And I press "Save and display"
|
||||
And I navigate to "User overrides" node in "Lesson administration"
|
||||
And I press "Add user override"
|
||||
And I set the following fields to these values:
|
||||
| Override user | Student1 |
|
||||
| Re-takes allowed | 1 |
|
||||
And I press "Save"
|
||||
And I should see "Re-takes allowed"
|
||||
And I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| False | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
||||
And I follow "Test lesson name"
|
||||
Then I should not see "You are not allowed to retake this lesson."
|
||||
And I should see "Cat is an amphibian"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| False | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "You are not allowed to retake this lesson."
|
||||
|
||||
Scenario: Allow a single user to have a different password
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| Password protected lesson | Yes |
|
||||
| id_password | moodle_rules |
|
||||
And I press "Save and display"
|
||||
And I navigate to "User overrides" node in "Lesson administration"
|
||||
And I press "Add user override"
|
||||
And I set the following fields to these values:
|
||||
| Override user | Student1 |
|
||||
| Password protected lesson | 12345 |
|
||||
And I press "Save"
|
||||
And I should see "Password protected lesson"
|
||||
And I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
Then I should see "Test lesson name is a password protected lesson"
|
||||
And I should not see "Cat is an amphibian"
|
||||
And I set the field "userpassword" to "moodle_rules"
|
||||
And I press "Continue"
|
||||
And I should see "Login failed, please try again..."
|
||||
And I should see "Test lesson name is a password protected lesson"
|
||||
And I set the field "userpassword" to "12345"
|
||||
And I press "Continue"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| False | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Test lesson name is a password protected lesson"
|
||||
And I should not see "Cat is an amphibian"
|
||||
And I set the field "userpassword" to "12345"
|
||||
And I press "Continue"
|
||||
And I should see "Login failed, please try again..."
|
||||
And I should see "Test lesson name is a password protected lesson"
|
||||
And I set the field "userpassword" to "moodle_rules"
|
||||
And I press "Continue"
|
||||
|
||||
Scenario: Allow a user to have a different due date
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| id_deadline_enabled | 1 |
|
||||
| deadline[day] | 1 |
|
||||
| deadline[month] | January |
|
||||
| deadline[year] | 2000 |
|
||||
| deadline[hour] | 08 |
|
||||
| deadline[minute] | 00 |
|
||||
And I press "Save and display"
|
||||
And I navigate to "User overrides" node in "Lesson administration"
|
||||
And I press "Add user override"
|
||||
And I set the following fields to these values:
|
||||
| Override user | Student1 |
|
||||
| id_deadline_enabled | 1 |
|
||||
| deadline[day] | 1 |
|
||||
| deadline[month] | January |
|
||||
| deadline[year] | 2020 |
|
||||
| deadline[hour] | 08 |
|
||||
| deadline[minute] | 00 |
|
||||
And I press "Save"
|
||||
And I should see "Lesson closes"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
Then I should see "This lesson closed on Saturday, 1 January 2000, 8:00"
|
||||
And I should not see "Cat is an amphibian"
|
||||
And I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
And I should see "Cat is an amphibian"
|
||||
|
||||
Scenario: Allow a user to have a different start date
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| id_available_enabled | 1 |
|
||||
| available[day] | 1 |
|
||||
| available[month] | January |
|
||||
| available[year] | 2020 |
|
||||
| available[hour] | 08 |
|
||||
| available[minute] | 00 |
|
||||
And I press "Save and display"
|
||||
And I navigate to "User overrides" node in "Lesson administration"
|
||||
And I press "Add user override"
|
||||
And I set the following fields to these values:
|
||||
| Override user | Student1 |
|
||||
| id_available_enabled | 1 |
|
||||
| available[day] | 1 |
|
||||
| available[month] | January |
|
||||
| available[year] | 2015 |
|
||||
| available[hour] | 08 |
|
||||
| available[minute] | 00 |
|
||||
And I press "Save"
|
||||
And I should see "Lesson opens"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
Then I should see "This lesson will be open on Wednesday, 1 January 2020, 8:00"
|
||||
And I should not see "Cat is an amphibian"
|
||||
And I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson"
|
||||
And I should see "Cat is an amphibian"
|
||||
|
||||
Scenario: Allow a single user to have multiple attempts at each question
|
||||
When I follow "Test lesson name"
|
||||
And I navigate to "Edit settings" node in "Lesson administration"
|
||||
And I set the following fields to these values:
|
||||
| Re-takes allowed | 1 |
|
||||
And I press "Save and display"
|
||||
And I navigate to "User overrides" node in "Lesson administration"
|
||||
And I press "Add user override"
|
||||
And I set the following fields to these values:
|
||||
| Override user | Student1 |
|
||||
| Maximum number of attempts | 2 |
|
||||
And I press "Save"
|
||||
And I should see "Maximum number of attempts"
|
||||
And I log out
|
||||
And I log in as "student1"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| True | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| True | 1 |
|
||||
And I press "Submit"
|
||||
And I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
||||
And I log out
|
||||
And I log in as "student2"
|
||||
And I follow "Course 1"
|
||||
And I follow "Test lesson name"
|
||||
And I should see "Cat is an amphibian"
|
||||
And I set the following fields to these values:
|
||||
| True | 1 |
|
||||
And I press "Submit"
|
||||
Then I press "Continue"
|
||||
And I should see "Congratulations - end of lesson reached"
|
Loading…
x
Reference in New Issue
Block a user