mirror of
https://github.com/moodle/moodle.git
synced 2025-03-22 08:30:04 +01:00
MDL-77463 Behat: Coverage for assign submission notification to teacher
This commit is contained in:
parent
f49f934786
commit
598b18417d
47
mod/assign/tests/behat/submission_notifications.feature
Normal file
47
mod/assign/tests/behat/submission_notifications.feature
Normal file
@ -0,0 +1,47 @@
|
||||
@mod @mod_assign @javascript
|
||||
Feature: Manage assignment submission web notifications
|
||||
In order to receive assignment submission notifications
|
||||
As a teacher
|
||||
I need to be able to turn on web notifications for assignment submission
|
||||
|
||||
Background:
|
||||
Given the following "users" exist:
|
||||
| username | firstname | lastname | email |
|
||||
| student1 | Student | 1 | student1@example.com |
|
||||
| teacher1 | Teacher | 1 | teacher1@example.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 the following "activity" exists:
|
||||
| activity | assign |
|
||||
| course | C1 |
|
||||
| name | Assign 1 |
|
||||
| assignsubmission_onlinetext_enabled | 1 |
|
||||
| assignsubmission_file_enabled | 0 |
|
||||
| submissiondrafts | 0 |
|
||||
| sendnotifications | 1 |
|
||||
And the following "mod_assign > submissions" exist:
|
||||
| assign | user | onlinetext |
|
||||
| Assign 1 | student1 | I'm the student1 submission |
|
||||
|
||||
Scenario: Teacher can choose to receive assignment notification submissions
|
||||
Given I log in as "teacher1"
|
||||
When I open the notification popover
|
||||
Then I should see "You have no notifications"
|
||||
# Update assignment submission to generate a notification
|
||||
And I am on the "Assign 1" "assign activity" page logged in as student1
|
||||
And the following "user preferences" exist:
|
||||
| user | preference | value |
|
||||
| teacher1 | message_provider_mod_assign_assign_notification_enabled | popup |
|
||||
# This should generate a notification
|
||||
And I press "Edit submission"
|
||||
And I set the field "Online text" to "updated"
|
||||
And I press "Save changes"
|
||||
# Confirm that teacher received assignment submission notification
|
||||
And I log in as "teacher1"
|
||||
And I open the notification popover
|
||||
Then I should see "Student 1 has updated their submission for assignment Assign 1"
|
Loading…
x
Reference in New Issue
Block a user