2013-04-23 12:56:40 +08:00
|
|
|
@core @core_message
|
2013-04-08 11:51:08 +08:00
|
|
|
Feature: Users can search their message history
|
|
|
|
In order to read old messages
|
|
|
|
As a moodle user
|
|
|
|
I need to search in my messages history
|
|
|
|
|
|
|
|
Background:
|
|
|
|
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"
|
|
|
|
When I send "Give me your biscuits" message to "user2"
|
|
|
|
And I follow "Messages"
|
|
|
|
And I fill in "Search people and messages" with "your biscuits"
|
|
|
|
And I press "Search people and messages"
|
|
|
|
Then I should see "User Two"
|
|
|
|
And I click on "context" "link" in the "User Two" table row
|
|
|
|
And I should see "Give me your biscuits"
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: Search message history with Javascript enabled
|
|
|
|
|
|
|
|
Scenario: Search message history with Javascript disabled
|