UPSTREAM BASELINE: nextcloud/spreed v22.0.12 (без изменений)
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
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.
This commit is contained in:
@@ -0,0 +1,123 @@
|
||||
Feature: chat/file-share
|
||||
Background:
|
||||
Given user "participant1" exists
|
||||
Given user "participant2" exists
|
||||
|
||||
Scenario: Share a file to a chat
|
||||
Given user "participant1" creates room "public room" (v4)
|
||||
| roomType | 3 |
|
||||
| roomName | room |
|
||||
When user "participant1" shares "welcome.txt" with room "public room"
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters |
|
||||
| public room | users | participant1 | participant1-displayname | {file} | "IGNORE" |
|
||||
|
||||
Scenario: Share a file with meta data to a chat (like the mobile clients do)
|
||||
Given user "participant1" creates room "public room" (v4)
|
||||
| roomType | 3 |
|
||||
| roomName | room |
|
||||
When user "participant1" shares "welcome.txt" with room "public room"
|
||||
| talkMetaData | {"mimetype":"text/plain","messageType":""} |
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters |
|
||||
| public room | users | participant1 | participant1-displayname | {file} | "IGNORE" |
|
||||
|
||||
Scenario: Share a file with caption
|
||||
Given user "participant1" creates room "public room" (v4)
|
||||
| roomType | 3 |
|
||||
| roomName | room |
|
||||
When user "participant1" shares "welcome.txt" with room "public room"
|
||||
| talkMetaData | {"caption":"Hello @participant2 this is a caption for the attached document"} |
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters |
|
||||
| public room | users | participant1 | participant1-displayname | Hello {mention-user1} this is a caption for the attached document | "IGNORE" |
|
||||
|
||||
Scenario: Share a file with caption that only is a mention
|
||||
Given user "participant1" creates room "public room" (v4)
|
||||
| roomType | 3 |
|
||||
| roomName | room |
|
||||
When user "participant1" shares "welcome.txt" with room "public room"
|
||||
| talkMetaData | {"caption":"@participant2"} |
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters |
|
||||
| public room | users | participant1 | participant1-displayname | {mention-user1} | "IGNORE" |
|
||||
|
||||
Scenario: Captioned message as a reply
|
||||
Given user "participant1" creates room "public room" (v4)
|
||||
| roomType | 3 |
|
||||
| roomName | room |
|
||||
And user "participant1" adds user "participant2" to room "public room" with 200 (v4)
|
||||
And user "participant2" sends message "Message 1" to room "public room" with 201
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters | parentMessage |
|
||||
| public room | users | participant2 | participant2-displayname | Message 1 | [] | |
|
||||
When user "participant1" shares "welcome.txt" with room "public room"
|
||||
| talkMetaData.caption | @participant2 |
|
||||
| talkMetaData.replyTo | Message 1 |
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters | parentMessage |
|
||||
| public room | users | participant1 | participant1-displayname | {mention-user1} | "IGNORE" | Message 1 |
|
||||
| public room | users | participant2 | participant2-displayname | Message 1 | [] | |
|
||||
|
||||
Scenario: Captioned message can not reply cross chats
|
||||
Given user "participant1" creates room "room1" (v4)
|
||||
| roomType | 3 |
|
||||
| roomName | room |
|
||||
Given user "participant1" creates room "room2" (v4)
|
||||
| roomType | 3 |
|
||||
| roomName | room |
|
||||
And user "participant1" adds user "participant2" to room "room1" with 200 (v4)
|
||||
And user "participant2" sends message "Message 1" to room "room1" with 201
|
||||
Then user "participant1" sees the following messages in room "room1" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters | parentMessage |
|
||||
| room1 | users | participant2 | participant2-displayname | Message 1 | [] | |
|
||||
When user "participant1" shares "welcome.txt" with room "room2"
|
||||
| talkMetaData.caption | @participant2 |
|
||||
| talkMetaData.replyTo | Message 1 |
|
||||
Then user "participant1" sees the following messages in room "room1" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters | parentMessage |
|
||||
| room1 | users | participant2 | participant2-displayname | Message 1 | [] | |
|
||||
Then user "participant1" sees the following messages in room "room2" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters | parentMessage |
|
||||
| room2 | users | participant1 | participant1-displayname | {mention-user1} | "IGNORE" | |
|
||||
|
||||
Scenario: Can not share a file without chat permission
|
||||
Given user "participant1" creates room "public room" (v4)
|
||||
| roomType | 3 |
|
||||
| roomName | room |
|
||||
And user "participant1" adds user "participant2" to room "public room" with 200 (v4)
|
||||
# Removing chat permission only
|
||||
Then user "participant1" sets permissions for "participant2" in room "public room" to "CSJLAVP" with 200 (v4)
|
||||
When user "participant2" shares "welcome.txt" with room "public room"
|
||||
And the OCS status code should be 404
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters |
|
||||
|
||||
Scenario: Delete share a file message from a chat
|
||||
Given user "participant1" creates room "public room" (v4)
|
||||
| roomType | 3 |
|
||||
| roomName | room |
|
||||
When user "participant1" shares "welcome.txt" with room "public room"
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters |
|
||||
| public room | users | participant1 | participant1-displayname | {file} | "IGNORE" |
|
||||
And user "participant1" deletes message "shared::file::welcome.txt" from room "public room" with 200
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters |
|
||||
| public room | users | participant1 | participant1-displayname | Message deleted by you | {"actor":{"type":"user","id":"participant1","name":"participant1-displayname","mention-id":"participant1"}} |
|
||||
|
||||
Scenario: Can not delete a share file message without chat permission
|
||||
Given user "participant1" creates room "public room" (v4)
|
||||
| roomType | 3 |
|
||||
| roomName | room |
|
||||
And user "participant1" adds user "participant2" to room "public room" with 200 (v4)
|
||||
When user "participant2" shares "welcome.txt" with room "public room"
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters |
|
||||
| public room | users | participant2 | participant2-displayname | {file} | "IGNORE" |
|
||||
# Removing chat permission only
|
||||
Then user "participant1" sets permissions for "participant2" in room "public room" to "CSJLAVP" with 200 (v4)
|
||||
And user "participant2" deletes message "shared::file::welcome.txt" from room "public room" with 403
|
||||
Then user "participant1" sees the following messages in room "public room" with 200
|
||||
| room | actorType | actorId | actorDisplayName | message | messageParameters |
|
||||
| public room | users | participant2 | participant2-displayname | {file} | "IGNORE" |
|
||||
Reference in New Issue
Block a user