mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-38954 behat: New test
According to MDLQA-133, a user can not send messages to someone who has blocked him.
This commit is contained in:
parent
f9d3667e7b
commit
c246015a58
1 changed files with 29 additions and 0 deletions
29
message/tests/behat/block_users.feature
Normal file
29
message/tests/behat/block_users.feature
Normal file
|
@ -0,0 +1,29 @@
|
|||
@core_message
|
||||
Feature: Block users from contacting me
|
||||
In order to block other users
|
||||
As a moodle user
|
||||
I need to prevent specific users to sending me messages
|
||||
|
||||
@javascript
|
||||
Scenario: Block users from contacting me with Javascript enabled
|
||||
Given the following "users" exists:
|
||||
| username | firstname | lastname | email |
|
||||
| user1 | User | One | one@asd.com |
|
||||
| user2 | User | Two | two@asd.com |
|
||||
And I log in as "user1"
|
||||
And I expand "My profile" node
|
||||
And I follow "Messages"
|
||||
And I fill in "Search people and messages" with "User Two"
|
||||
And I press "Search people and messages"
|
||||
When I click on "Block contact" "link" in the "User Two" table row
|
||||
Then the "Message navigation:" select box should contain "Blocked users (1)"
|
||||
And I select "Blocked users (1)" from "Message navigation:"
|
||||
And I should see "User Two"
|
||||
And I log out
|
||||
And I log in as "user2"
|
||||
And I expand "My profile" node
|
||||
And I follow "Messages"
|
||||
And I fill in "Search people and messages" with "User One"
|
||||
And I press "Search people and messages"
|
||||
And I follow "Send message to User One"
|
||||
And I should see "This user has blocked you from sending messages to them"
|
Loading…
Add table
Add a link
Reference in a new issue