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

Источник: 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:
2026-07-06 14:07:50 +00:00
commit 01acfa3b40
1716 changed files with 613013 additions and 0 deletions
@@ -0,0 +1,271 @@
Feature: move
Background:
Given user "participant1" exists
Given user "participant2" exists
Given user "participant3" exists
Given user "participant4" exists
Scenario: move share to another folder
Given user "participant1" creates room "group room" (v4)
| roomType | 2 |
| roomName | room |
And user "participant1" renames room "group room" to "Group room" with 200 (v4)
And user "participant1" adds user "participant2" to room "group room" with 200 (v4)
And user "participant1" adds user "participant3" to room "group room" with 200 (v4)
And user "participant1" shares "welcome.txt" with room "group room" with OCS 100
And user "participant1" creates folder "/test"
When user "participant1" moves file "/welcome.txt" to "/test/renamed.txt" with 201
Then user "participant1" gets last share
And share is returned with
| uid_owner | participant1 |
| displayname_owner | participant1-displayname |
| path | /test/renamed.txt |
| item_type | file |
| mimetype | text/plain |
| storage_id | home::participant1 |
| file_target | /{TALK_PLACEHOLDER}/welcome.txt |
| share_with | group room |
| share_with_displayname | Group room |
And user "participant2" gets last share
And share is returned with
| uid_owner | participant1 |
| displayname_owner | participant1-displayname |
| path | /Talk/welcome.txt |
| item_type | file |
| mimetype | text/plain |
| storage_id | shared::/Talk/welcome.txt |
| file_target | /Talk/welcome.txt |
| share_with | group room |
| share_with_displayname | Group room |
And user "participant3" gets last share
And share is returned with
| uid_owner | participant1 |
| displayname_owner | participant1-displayname |
| path | /Talk/welcome.txt |
| item_type | file |
| mimetype | text/plain |
| storage_id | shared::/Talk/welcome.txt |
| file_target | /Talk/welcome.txt |
| share_with | group room |
| share_with_displayname | Group room |
# # When an own share is moved into a received shared folder the ownership of
# # the share is handed over to the folder owner.
# Scenario: move share to received shared folder from a user in the room
# Given user "participant1" creates room "group room" (v4)
# | roomType | 2 |
# | roomName | room |
# And user "participant1" renames room "group room" to "Group room" with 200 (v4)
# And user "participant1" adds user "participant2" to room "group room" with 200 (v4)
# And user "participant1" adds user "participant3" to room "group room" with 200 (v4)
# And user "participant3" creates folder "/test"
# And user "participant3" shares "/test" with user "participant1" with OCS 100
# And user "participant1" shares "welcome.txt" with room "group room" with OCS 100
# When user "participant1" moves file "/welcome.txt" to "/test/renamed.txt" with 201
# Then user "participant1" gets last share
# And share is returned with
# | uid_owner | participant1 |
# | displayname_owner | participant1-displayname |
# | uid_file_owner | participant3 |
# | displayname_file_owner | participant3-displayname |
# | path | /test/renamed.txt |
# | item_type | file |
# | mimetype | text/plain |
# | storage_id | shared::/test |
# | file_target | /{TALK_PLACEHOLDER}/welcome.txt |
# | share_with | group room |
# | share_with_displayname | Group room |
# And user "participant2" gets last share
# And share is returned with
# | uid_owner | participant1 |
# | displayname_owner | participant1-displayname |
# | uid_file_owner | participant3 |
# | displayname_file_owner | participant3-displayname |
# | path | /Talk/welcome.txt |
# | item_type | file |
# | mimetype | text/plain |
# | storage_id | shared::/welcome (2).txt |
# | file_target | /welcome (2).txt |
# | share_with | group room |
# | share_with_displayname | Group room |
# And user "participant3" gets last share
# And share is returned with
# | uid_owner | participant1 |
# | displayname_owner | participant1-displayname |
# | uid_file_owner | participant3 |
# | displayname_file_owner | participant3-displayname |
# | path | /test/renamed.txt |
# | item_type | file |
# | mimetype | text/plain |
# | storage_id | home::participant3 |
# | file_target | /welcome (2).txt |
# | share_with | group room |
# | share_with_displayname | Group room |
# Scenario: move share to received shared folder from a user not in the room
# Given user "participant1" creates room "group room" (v4)
# | roomType | 2 |
# | roomName | room |
# And user "participant1" renames room "group room" to "Group room" with 200 (v4)
# And user "participant1" adds user "participant2" to room "group room" with 200 (v4)
# And user "participant1" adds user "participant3" to room "group room" with 200 (v4)
# And user "participant4" creates folder "/test"
# And user "participant4" shares "/test" with user "participant1" with OCS 100
# And user "participant1" shares "welcome.txt" with room "group room" with OCS 100
# When user "participant1" moves file "/welcome.txt" to "/test/renamed.txt" with 201
# Then user "participant1" gets last share
# And share is returned with
# | uid_owner | participant1 |
# | displayname_owner | participant1-displayname |
# | uid_file_owner | participant4 |
# | displayname_file_owner | participant4-displayname |
# | path | /test/renamed.txt |
# | item_type | file |
# | mimetype | text/plain |
# | storage_id | shared::/test |
# | file_target | /{TALK_PLACEHOLDER}/welcome.txt |
# | share_with | group room |
# | share_with_displayname | Group room |
# And user "participant2" gets last share
# And share is returned with
# | uid_owner | participant1 |
# | displayname_owner | participant1-displayname |
# | uid_file_owner | participant4 |
# | displayname_file_owner | participant4-displayname |
# | path | /Talk/welcome.txt |
# | item_type | file |
# | mimetype | text/plain |
# | storage_id | shared::/welcome (2).txt |
# | file_target | /welcome (2).txt |
# | share_with | group room |
# | share_with_displayname | Group room |
# And user "participant3" gets last share
# And share is returned with
# | uid_owner | participant1 |
# | displayname_owner | participant1-displayname |
# | uid_file_owner | participant4 |
# | displayname_file_owner | participant4-displayname |
# | path | /Talk/welcome.txt |
# | item_type | file |
# | mimetype | text/plain |
# | storage_id | shared::/welcome (2).txt |
# | file_target | /welcome (2).txt |
# | share_with | group room |
# | share_with_displayname | Group room |
# Scenario: move share to received shared folder which is also a received shared folder
# Given user "participant1" creates room "group room" (v4)
# | roomType | 2 |
# | roomName | room |
# And user "participant1" renames room "group room" to "Group room" with 200 (v4)
# And user "participant1" adds user "participant2" to room "group room" with 200 (v4)
# And user "participant3" creates folder "/test"
# And user "participant3" shares "/test" with user "participant4" with OCS 100
# And user "participant4" shares "/test" with user "participant1" with OCS 100
# And user "participant1" shares "welcome.txt" with room "group room" with OCS 100
# When user "participant1" moves file "/welcome.txt" to "/test/renamed.txt" with 201
# Then user "participant1" gets last share
# And share is returned with
# | uid_owner | participant1 |
# | displayname_owner | participant1-displayname |
# | uid_file_owner | participant3 |
# | displayname_file_owner | participant3-displayname |
# | path | /test/renamed.txt |
# | item_type | file |
# | mimetype | text/plain |
# | storage_id | shared::/test |
# | file_target | /{TALK_PLACEHOLDER}/welcome.txt |
# | share_with | group room |
# | share_with_displayname | Group room |
# And user "participant2" gets last share
# And share is returned with
# | uid_owner | participant1 |
# | displayname_owner | participant1-displayname |
# | uid_file_owner | participant3 |
# | displayname_file_owner | participant3-displayname |
# | path | /Talk/welcome.txt |
# | item_type | file |
# | mimetype | text/plain |
# | storage_id | shared::/welcome (2).txt |
# | file_target | /welcome (2).txt |
# | share_with | group room |
# | share_with_displayname | Group room |
# And user "participant3" gets last share
# And share is returned with
# | uid_owner | participant1 |
# | displayname_owner | participant1-displayname |
# | uid_file_owner | participant3 |
# | displayname_file_owner | participant3-displayname |
# | path | /test/renamed.txt |
# | item_type | file |
# | mimetype | text/plain |
# | storage_id | home::participant3 |
# | file_target | /{TALK_PLACEHOLDER}/welcome.txt |
# | share_with | group room |
# | share_with_displayname | Group room |
# And user "participant4" gets last share
# Then the OCS status code should be "404"
# And the HTTP status code should be "200"
Scenario: move received share to another folder
Given user "participant1" creates room "group room" (v4)
| roomType | 2 |
| roomName | room |
And user "participant1" renames room "group room" to "Group room" with 200 (v4)
And user "participant1" adds user "participant2" to room "group room" with 200 (v4)
And user "participant1" adds user "participant3" to room "group room" with 200 (v4)
And user "participant1" shares "welcome.txt" with room "group room" with OCS 100
And user "participant2" creates folder "/test"
When user "participant2" moves file "Talk/welcome.txt" to "test/renamed.txt" with 201
Then user "participant1" gets last share
And share is returned with
| uid_owner | participant1 |
| displayname_owner | participant1-displayname |
| path | /welcome.txt |
| item_type | file |
| mimetype | text/plain |
| storage_id | home::participant1 |
| file_target | /{TALK_PLACEHOLDER}/welcome.txt |
| share_with | group room |
| share_with_displayname | Group room |
And user "participant2" gets last share
And share is returned with
| uid_owner | participant1 |
| displayname_owner | participant1-displayname |
| path | /test/renamed.txt |
| item_type | file |
| mimetype | text/plain |
| storage_id | shared::/test/renamed.txt |
| file_target | /test/renamed.txt |
| share_with | group room |
| share_with_displayname | Group room |
And user "participant3" gets last share
And share is returned with
| uid_owner | participant1 |
| displayname_owner | participant1-displayname |
| path | /Talk/welcome.txt |
| item_type | file |
| mimetype | text/plain |
| storage_id | shared::/Talk/welcome.txt |
| file_target | /Talk/welcome.txt |
| share_with | group room |
| share_with_displayname | Group room |
# Received shares can not be moved into other shares (general limitation of
# the sharing system, not related to room shares).
Scenario: move received share to shared folder
Given user "participant1" creates room "group room" (v4)
| roomType | 2 |
| roomName | room |
And user "participant1" renames room "group room" to "Group room" with 200 (v4)
And user "participant1" adds user "participant2" to room "group room" with 200 (v4)
And user "participant1" adds user "participant3" to room "group room" with 200 (v4)
And user "participant3" creates folder "/test"
And user "participant3" shares "/test" with user "participant2" with OCS 100
And user "participant2" accepts last share
And user "participant1" shares "welcome.txt" with room "group room" with OCS 100
When user "participant3" moves file "/Talk/welcome.txt" to "/test/renamed.txt"
Then the HTTP status code should be "403"