01acfa3b40
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06). Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
38 lines
1.7 KiB
Gherkin
38 lines
1.7 KiB
Gherkin
Feature: command/monitor-room
|
|
|
|
Background:
|
|
Given user "participant1" exists
|
|
Given user "participant2" exists
|
|
|
|
Scenario: No call in progress
|
|
Given invoking occ with "talk:monitor:room abcdef"
|
|
Then the command failed with exit code 1
|
|
And the command output contains the text "Room with token abcdef not found"
|
|
|
|
Scenario: From nothing to calling
|
|
When user "participant1" creates room "room" (v4)
|
|
| roomType | 3 |
|
|
| roomName | room |
|
|
And user "participant1" adds user "participant2" to room "room" with 200 (v4)
|
|
And user "participant2" gets room "room" with 200 (v4)
|
|
|
|
Given invoking occ with "talk:monitor:room room-name:room"
|
|
Then the command was successful
|
|
And the command output contains the text "The conversation has 2 attendees with 0 sessions of which 0 are in the call."
|
|
|
|
Given user "participant1" joins room "room" with 200 (v4)
|
|
And invoking occ with "talk:monitor:room room-name:room"
|
|
Then the command was successful
|
|
And the command output contains the text "The conversation has 2 attendees with 1 sessions of which 0 are in the call."
|
|
|
|
Given user "participant1" joins call "room" with 200 (v4)
|
|
And invoking occ with "talk:monitor:room room-name:room"
|
|
Then the command was successful
|
|
And the command output contains the text "The conversation has 2 attendees with 1 sessions of which 1 are in the call."
|
|
|
|
Given user "participant2" joins room "room" with 200 (v4)
|
|
And user "participant2" joins call "room" with 200 (v4)
|
|
And invoking occ with "talk:monitor:room room-name:room"
|
|
Then the command was successful
|
|
And the command output contains the text "The conversation has 2 attendees with 2 sessions of which 2 are in the call."
|