summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-02-24 10:05:54 +0100
committerJoas Schilling <coding@schilljs.com>2023-02-24 10:45:27 +0100
commit47b05ac0215bfe8f65e399f1cec4c7d903aca58b (patch)
tree741523d0ec3eb5033f43e4fea2de9c775c87264c /tests
parentfc423d01ff27c0110e88d081e31fee00a45c85b0 (diff)
Restrict available APIs for breakout rooms
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/features/conversation/breakout-rooms.feature6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/integration/features/conversation/breakout-rooms.feature b/tests/integration/features/conversation/breakout-rooms.feature
index 4c1a9cb6f..77247570b 100644
--- a/tests/integration/features/conversation/breakout-rooms.feature
+++ b/tests/integration/features/conversation/breakout-rooms.feature
@@ -820,7 +820,7 @@ Feature: conversation/breakout-rooms
| 2 | class room |
| 2 | Room 2 |
- Scenario: Can not change lobby status, allow or disallow guests in breakout rooms directly
+ Scenario: Can not change various settings in breakout rooms directly
Given user "participant1" creates room "class room" (v4)
| roomType | 2 |
| roomName | class room |
@@ -839,3 +839,7 @@ Feature: conversation/breakout-rooms
And user "participant1" allows listing room "Room 1" for "all" with 400 (v4)
# Can not allow guests
And user "participant1" makes room "Room 1" public with 400 (v4)
+ # Can not set password - Currently 403 because it's not a public room, once they are supported as breakout rooms we need to check for 400 here.
+ And user "participant1" sets password "Test123!" for room "Room 1" with 403 (v4)
+ # Can not set message expiration
+ And user "participant1" set the message expiration to 3600 of room "Room 1" with 400 (v4)