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.
25 lines
1.2 KiB
Gherkin
25 lines
1.2 KiB
Gherkin
Feature: command/update
|
|
|
|
Background:
|
|
Given user "participant1" exists
|
|
|
|
Scenario: Create a public room with message expiration time and update removing the expiration time
|
|
Given invoking occ with "talk:room:create room1 --user participant1 --owner participant1 --public --message-expiration=3"
|
|
And user "participant1" is participant of the following rooms (v4)
|
|
| name | messageExpiration |
|
|
| room1 | 3 |
|
|
And the command output contains the text "Room successfully created"
|
|
And the command was successful
|
|
And invoking occ with "talk:room:update room-name:room1 --message-expiration=0"
|
|
And the command output contains the text "Room successfully updated"
|
|
And the command was successful
|
|
And user "participant1" is participant of the following rooms (v4)
|
|
| name | messageExpiration |
|
|
| room1 | 0 |
|
|
And invoking occ with "talk:room:update room-name:room1 --message-expiration=4"
|
|
And the command output contains the text "Room successfully updated"
|
|
And the command was successful
|
|
And user "participant1" is participant of the following rooms (v4)
|
|
| name | messageExpiration |
|
|
| room1 | 4 |
|