mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 01:46:45 +02:00
77 lines
2.8 KiB
Gherkin
77 lines
2.8 KiB
Gherkin
@mod @mod_lesson
|
|
Feature: A teacher can set available from and deadline dates to access a lesson
|
|
In order to schedule lesson activities
|
|
As a teacher
|
|
I need to set available from and deadline dates
|
|
|
|
Background:
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname | email |
|
|
| teacher1 | Teacher | 1 | teacher1@asd.com |
|
|
| student1 | Student | 1 | student1@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 |
|
|
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 expand all fieldsets
|
|
And I click on "id_available_enabled" "checkbox"
|
|
And I set the following fields to these values:
|
|
| Name | Test lesson |
|
|
| Description | Test lesson description |
|
|
| 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 set the following fields to these values:
|
|
| 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"
|
|
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 expand all fieldsets
|
|
And I click on "id_deadline_enabled" "checkbox"
|
|
And I set the following fields to these values:
|
|
| Name | Test lesson |
|
|
| Description | Test lesson description |
|
|
| 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 set the following fields to these values:
|
|
| 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"
|
|
And I should not see "First page contents"
|