Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration-pgsql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- 'sharing-3'
- 'sharing-4'
php-versions: ['8.3']
server-versions: ['master']
server-versions: ['share-mount-validation-on-share']
guests-versions: ['main']
circles-versions: ['master']
notifications-versions: ['master']
Expand Down
8 changes: 8 additions & 0 deletions tests/integration/features/sharing-2/get.feature
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,11 @@ Feature: get
And user "participant2" gets the DAV properties for "/"
And the list of returned files for "participant2" is
| / |
| /Talk/ |
| /welcome.txt |
And user "participant2" gets the DAV properties for "/Talk/"
And the list of returned files for "participant2" is
| /Talk/ |

Scenario: get files after deleting a received share
Given user "participant1" creates room "group room" (v4)
Expand All @@ -1333,6 +1337,9 @@ Feature: get
And the list of returned files for "participant1" is
| / |
| /welcome.txt |
And user "participant2" gets the DAV properties for "/Talk/"
And the list of returned files for "participant2" is
| /Talk/ |

Scenario: get files after deleting the file of a share
Given user "participant1" creates room "group room" (v4)
Expand All @@ -1347,6 +1354,7 @@ Feature: get
And user "participant2" gets the DAV properties for "/"
And the list of returned files for "participant2" is
| / |
| /Talk/ |
| /welcome.txt |


Expand Down
18 changes: 9 additions & 9 deletions tests/integration/features/sharing-4/transfer-ownership.feature
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ Feature: transfer-ownership
And share is returned with
| uid_owner | participant2 |
| displayname_owner | participant2-displayname |
| path | /Talk/welcome.txt |
| path | /{TALK_PLACEHOLDER}/welcome.txt |
| item_type | file |
| mimetype | text/plain |
| storage_id | shared::/Talk/welcome.txt |
| file_target | /Talk/welcome.txt |
| storage_id | shared::/{TALK_PLACEHOLDER}/welcome.txt |
| file_target | /{TALK_PLACEHOLDER}/welcome.txt |
| share_with | group room |
| share_with_displayname | Group room |
And user "participant2" gets last share
Expand Down Expand Up @@ -65,11 +65,11 @@ Feature: transfer-ownership
| displayname_owner | participant2-displayname |
| uid_file_owner | participant3 |
| displayname_file_owner | participant3-displayname |
| path | /Talk/welcome (2).txt |
| path | /{TALK_PLACEHOLDER}/welcome (2).txt |
| item_type | file |
| mimetype | text/plain |
| storage_id | shared::/Talk/welcome (2).txt |
| file_target | /Talk/welcome (2).txt |
| storage_id | shared::/{TALK_PLACEHOLDER}/welcome (2).txt |
| file_target | /{TALK_PLACEHOLDER}/welcome (2).txt |
| share_with | group room |
| share_with_displayname | Group room |
And user "participant2" gets last share
Expand Down Expand Up @@ -113,11 +113,11 @@ Feature: transfer-ownership
And share is returned with
| uid_owner | participant2 |
| displayname_owner | participant2-displayname |
| path | /Talk/welcome.txt |
| path | /{TALK_PLACEHOLDER}/welcome.txt |
| item_type | file |
| mimetype | text/plain |
| storage_id | shared::/Talk/welcome.txt |
| file_target | /Talk/welcome.txt |
| storage_id | shared::/{TALK_PLACEHOLDER}/welcome.txt |
| file_target | /{TALK_PLACEHOLDER}/welcome.txt |
| share_with | group room |
| share_with_displayname | Group room |
And user "participant2" gets last share
Expand Down
Loading