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
|
2013-05-09 18:38:13 +08:00
|
|
|
As a user
|
2013-04-08 11:51:08 +08:00
|
|
|
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"
|
2013-09-05 12:29:29 +10:00
|
|
|
And I expand "My profile" node
|
|
|
|
And I click on "Messages" "link" in the "Navigation" "block"
|
2013-04-08 11:51:08 +08:00
|
|
|
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
|