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.
86 lines
3.7 KiB
86 lines
3.7 KiB
@block @block_online_users
|
|
Feature: The online users block allow you to see who is currently online on frontpage
|
|
In order to enable the online users block on the front page page
|
|
As an admin
|
|
I can add the online users block to the front page page
|
|
|
|
Background:
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname | email |
|
|
| student1 | Student | 1 | student1@example.com |
|
|
| student2 | Student | 2 | student2@example.com |
|
|
|
|
Scenario: View the online users block on the front page and see myself
|
|
Given I log in as "admin"
|
|
And I am on site homepage
|
|
And I navigate to "Turn editing on" in current page administration
|
|
When I add the "Online users" block
|
|
Then I should see "Admin User" in the "Online users" "block"
|
|
And I should see "1 online user" in the "Online users" "block"
|
|
|
|
Scenario: View the online users block on the front page as a logged in user
|
|
Given I log in as "admin"
|
|
And I am on site homepage
|
|
And I navigate to "Turn editing on" in current page administration
|
|
And I add the "Online users" block
|
|
And I log out
|
|
And I log in as "student2"
|
|
And I log out
|
|
When I log in as "student1"
|
|
And I am on site homepage
|
|
Then I should see "Admin User" in the "Online users" "block"
|
|
And I should see "Student 1" in the "Online users" "block"
|
|
And I should see "Student 2" in the "Online users" "block"
|
|
And I should see "3 online users" in the "Online users" "block"
|
|
|
|
Scenario: View the online users block on the front page as a guest
|
|
Given I log in as "admin"
|
|
And I am on site homepage
|
|
And I navigate to "Turn editing on" in current page administration
|
|
And I add the "Online users" block
|
|
And I log out
|
|
And I log in as "student2"
|
|
And I log out
|
|
And I log in as "student1"
|
|
And I log out
|
|
When I log in as "guest"
|
|
And I am on site homepage
|
|
Then I should see "Admin User" in the "Online users" "block"
|
|
And I should see "Student 1" in the "Online users" "block"
|
|
And I should see "Student 2" in the "Online users" "block"
|
|
And I should see "3 online users" in the "Online users" "block"
|
|
|
|
@javascript
|
|
Scenario: Hide/show user's online status from/to other users in the online users block on front page
|
|
Given I log in as "admin"
|
|
And I am on site homepage
|
|
And I navigate to "Turn editing on" in current page administration
|
|
And I add the "Online users" block
|
|
And I log out
|
|
When I log in as "student1"
|
|
And I am on site homepage
|
|
Then "Hide" "icon" should exist in the "#change-user-visibility" "css_element"
|
|
When I click on "#change-user-visibility" "css_element"
|
|
And I wait "1" seconds
|
|
Then "Show" "icon" should exist in the "#change-user-visibility" "css_element"
|
|
And I log out
|
|
When I log in as "student2"
|
|
And I am on site homepage
|
|
Then I should see "2 online user" in the "Online users" "block"
|
|
And I should see "Admin" in the "Online users" "block"
|
|
And I should see "Student 2" in the "Online users" "block"
|
|
And I should not see "Student 1" in the "Online users" "block"
|
|
And I log out
|
|
When I log in as "student1"
|
|
And I am on site homepage
|
|
Then "Show" "icon" should exist in the "#change-user-visibility" "css_element"
|
|
When I click on "#change-user-visibility" "css_element"
|
|
And I wait "1" seconds
|
|
Then "Hide" "icon" should exist in the "#change-user-visibility" "css_element"
|
|
And I log out
|
|
When I log in as "student2"
|
|
And I am on site homepage
|
|
Then I should see "3 online users" in the "Online users" "block"
|
|
And I should see "Admin" in the "Online users" "block"
|
|
And I should see "Student 2" in the "Online users" "block"
|
|
And I should see "Student 1" in the "Online users" "block"
|
|
|