You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
6.4 KiB
138 lines
6.4 KiB
@mod @mod_forum
|
|
Feature: A user can control their default discussion subscription settings
|
|
In order to automatically subscribe to discussions
|
|
As a user
|
|
I can choose my default subscription preference
|
|
|
|
Background:
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname | email | autosubscribe |
|
|
| student1 | Student | One | student.one@example.com | 1 |
|
|
| student2 | Student | Two | student.one@example.com | 0 |
|
|
And the following "courses" exist:
|
|
| fullname | shortname | category |
|
|
| Course 1 | C1 | 0 |
|
|
And the following "course enrolments" exist:
|
|
| user | course | role |
|
|
| student1 | C1 | student |
|
|
| student2 | C1 | student |
|
|
And I log in as "admin"
|
|
And I am on "Course 1" course homepage with editing mode on
|
|
|
|
Scenario: Creating a new discussion in an optional forum follows user preferences
|
|
Given I add a "Forum" to section "1" and I fill the form with:
|
|
| Forum name | Test forum name |
|
|
| Forum type | Standard forum for general use |
|
|
| Description | Test forum description |
|
|
| Subscription mode | Optional subscription |
|
|
And I log out
|
|
And I log in as "student1"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Test forum name"
|
|
When I click on "Add a new discussion topic" "link"
|
|
And I click on "Advanced" "button"
|
|
Then "input[name=discussionsubscribe][checked=checked]" "css_element" should exist
|
|
And I log out
|
|
And I log in as "student2"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Test forum name"
|
|
And I click on "Add a new discussion topic" "link"
|
|
And I click on "Advanced" "button"
|
|
And "input[name=discussionsubscribe]:not([checked=checked])" "css_element" should exist
|
|
|
|
Scenario: Replying to an existing discussion in an optional forum follows user preferences
|
|
Given I add a "Forum" to section "1" and I fill the form with:
|
|
| Forum name | Test forum name |
|
|
| Forum type | Standard forum for general use |
|
|
| Description | Test forum description |
|
|
| Subscription mode | Optional subscription |
|
|
And I add a new discussion to "Test forum name" forum with:
|
|
| Subject | Test post subject |
|
|
| Message | Test post message |
|
|
And I log out
|
|
And I log in as "student1"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Test forum name"
|
|
And I follow "Test post subject"
|
|
When I follow "Reply"
|
|
Then "input[name=discussionsubscribe][checked=checked]" "css_element" should exist
|
|
And I log out
|
|
And I log in as "student2"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Test forum name"
|
|
And I follow "Test post subject"
|
|
And I follow "Reply"
|
|
And "input[name=discussionsubscribe]:not([checked=checked])" "css_element" should exist
|
|
|
|
Scenario: Creating a new discussion in an automatic forum follows forum subscription
|
|
Given I add a "Forum" to section "1" and I fill the form with:
|
|
| Forum name | Test forum name |
|
|
| Forum type | Standard forum for general use |
|
|
| Description | Test forum description |
|
|
| Subscription mode | Auto subscription |
|
|
And I log out
|
|
And I log in as "student1"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Test forum name"
|
|
When I click on "Add a new discussion topic" "link"
|
|
And I click on "Advanced" "button"
|
|
Then "input[name=discussionsubscribe][checked=checked]" "css_element" should exist
|
|
And I log out
|
|
And I log in as "student2"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Test forum name"
|
|
And I click on "Add a new discussion topic" "link"
|
|
And I click on "Advanced" "button"
|
|
And "input[name=discussionsubscribe][checked=checked]" "css_element" should exist
|
|
|
|
Scenario: Replying to an existing discussion in an automatic forum follows forum subscription
|
|
Given I add a "Forum" to section "1" and I fill the form with:
|
|
| Forum name | Test forum name |
|
|
| Forum type | Standard forum for general use |
|
|
| Description | Test forum description |
|
|
| Subscription mode | Optional subscription |
|
|
And I add a new discussion to "Test forum name" forum with:
|
|
| Subject | Test post subject |
|
|
| Message | Test post message |
|
|
And I log out
|
|
And I log in as "student1"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Test forum name"
|
|
And I follow "Test post subject"
|
|
When I follow "Reply"
|
|
Then "input[name=discussionsubscribe][checked=checked]" "css_element" should exist
|
|
And I log out
|
|
And I log in as "student2"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Test forum name"
|
|
And I follow "Test post subject"
|
|
And I follow "Reply"
|
|
And "input[name=discussionsubscribe]:not([checked=checked])" "css_element" should exist
|
|
|
|
Scenario: Replying to an existing discussion in an automatic forum which has been unsubscribed from follows user preferences
|
|
Given I add a "Forum" to section "1" and I fill the form with:
|
|
| Forum name | Test forum name |
|
|
| Forum type | Standard forum for general use |
|
|
| Description | Test forum description |
|
|
| Subscription mode | Auto subscription |
|
|
And I add a new discussion to "Test forum name" forum with:
|
|
| Subject | Test post subject |
|
|
| Message | Test post message |
|
|
And I log out
|
|
And I log in as "student1"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Test forum name"
|
|
And I click on "You are subscribed to this discussion. Click to unsubscribe." "link" in the "Test post subject" "table_row"
|
|
And I should see "Student One will NOT be notified of new posts in 'Test post subject' of 'Test forum name'"
|
|
And I follow "Test post subject"
|
|
When I follow "Reply"
|
|
And "input[name=discussionsubscribe][checked=checked]" "css_element" should exist
|
|
And I log out
|
|
And I log in as "student2"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Test forum name"
|
|
And I click on "You are subscribed to this discussion. Click to unsubscribe." "link" in the "Test post subject" "table_row"
|
|
And I should see "Student Two will NOT be notified of new posts in 'Test post subject' of 'Test forum name'"
|
|
And I follow "Test post subject"
|
|
And I follow "Reply"
|
|
And "input[name=discussionsubscribe]:not([checked=checked])" "css_element" should exist
|
|
|