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.
55 lines
2.4 KiB
55 lines
2.4 KiB
Feature: conversation
|
|
|
|
Scenario: create a group conversation
|
|
Given I am logged in
|
|
And I have opened the Talk app
|
|
When I create a group conversation
|
|
Then I see that the "You" conversation is active
|
|
And I see that the chat is shown in the main view
|
|
And I see that the sidebar is open
|
|
And I see that the number of participants shown in the list is "1"
|
|
And I see that "user0" is shown in the list of participants as a moderator
|
|
|
|
Scenario: create a one-to-one conversation
|
|
Given I am logged in
|
|
And I have opened the Talk app
|
|
When I create a one-to-one conversation with "admin"
|
|
Then I see that the "admin" conversation is active
|
|
And I see that the chat is shown in the main view
|
|
And I see that the sidebar is open
|
|
And I see that the number of participants shown in the list is "2"
|
|
And I see that "user0" is shown in the list of participants as a moderator
|
|
And I see that "admin" is shown in the list of participants as a moderator
|
|
|
|
Scenario: rename a conversation
|
|
Given I am logged in
|
|
And I have opened the Talk app
|
|
And I create a group conversation
|
|
And I see that the "You" conversation is active
|
|
When I rename the conversation to "Test conversation"
|
|
Then I see that the "Test conversation" conversation is active
|
|
|
|
Scenario: change between conversations
|
|
Given I am logged in
|
|
And I have opened the Talk app
|
|
And I create a group conversation
|
|
And I see that the "You" conversation is active
|
|
And I see that the number of participants shown in the list is "1"
|
|
And I create a one-to-one conversation with "admin"
|
|
And I see that the "You" conversation is not active
|
|
And I see that the "admin" conversation is active
|
|
And I see that the number of participants shown in the list is "2"
|
|
When I open the "You" conversation
|
|
Then I see that the "You" conversation is active
|
|
And I see that the "admin" conversation is not active
|
|
And I see that the number of participants shown in the list is "1"
|
|
|
|
Scenario: remove a conversation from the list
|
|
Given I am logged in
|
|
And I have opened the Talk app
|
|
And I create a group conversation
|
|
And I see that the "You" conversation is active
|
|
When I remove the "You" conversation from the list
|
|
Then I see that the "You" conversation is not shown in the list
|
|
And I see that the empty content message is shown in the main view
|
|
And I see that the sidebar is closed
|