Browse Source
Add integration tests for dashboard data
Add integration tests for dashboard data
Signed-off-by: Joas Schilling <coding@schilljs.com>pull/7942/head
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205
2 changed files with 108 additions and 0 deletions
-
73tests/integration/features/bootstrap/FeatureContext.php
-
35tests/integration/features/integration/dashboard.feature
@ -0,0 +1,35 @@ |
|||
Feature: integration/dashboard |
|||
Background: |
|||
Given user "participant1" exists |
|||
Given user "participant2" exists |
|||
|
|||
Scenario: User gets the available dashboard widgets |
|||
When user "participant1" sees the following entry when loading the list of dashboard widgets (v1) |
|||
| id | title | icon_class | icon_url | widget_url | item_icons_round | order | buttons | |
|||
| spreed | Talk mentions | dashboard-talk-icon | img/app-dark.svg | http://localhost:8080/index.php/apps/spreed/ | true | 10 | [{"type":"more","text":"More unread mentions","link":"http://localhost:8080/index.php/apps/spreed/"}] | |
|||
|
|||
Scenario: User gets the dashboard widget content |
|||
When user "participant1" sees the following entries for dashboard widgets "spreed" (v1) |
|||
| title | subtitle | link | iconUrl | |
|||
Given user "participant2" creates room "one-to-one room" (v4) |
|||
| roomType | 1 | |
|||
| invite | participant1 | |
|||
And user "participant2" sends message "Hello" to room "one-to-one room" with 201 |
|||
And sleep 1 second |
|||
Given user "participant2" creates room "group room" (v4) |
|||
| roomType | 2 | |
|||
| roomName | group room | |
|||
And user "participant2" adds user "participant1" to room "group room" with 200 (v4) |
|||
And user "participant2" sends message "Hello @all" to room "group room" with 201 |
|||
And sleep 1 second |
|||
Given user "participant2" creates room "call room" (v4) |
|||
| roomType | 3 | |
|||
| roomName | call room | |
|||
And user "participant2" adds user "participant1" to room "call room" with 200 (v4) |
|||
And user "participant2" joins room "call room" with 200 (v4) |
|||
And user "participant2" joins call "call room" with 200 (v4) |
|||
When user "participant1" sees the following entries for dashboard widgets "spreed" (v1) |
|||
| title | subtitle | link | iconUrl | sinceId | |
|||
| participant2-displayname | Hello | one-to-one room | http://localhost:8080/index.php/avatar/participant2/64 | | |
|||
| group room | Hello group room | group room | http://localhost:8080/core/img/actions/group.svg | | |
|||
| call room | @participant2-displayname started a call | call room | http://localhost:8080/core/img/actions/public.svg | | |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue