Welcome to mirror list, hosted at ThFree Co, Russian Federation.

direct.feature « features « tests - github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8359b020bfcdff4ceac8d63e5969024de658b79d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
Feature: Direct editing

  Background:
    Given user "user1" exists
    And user "user2" exists
    And user "user3" exists

  Scenario: Open a file through direct editing
    Given on instance "serverA"
    And as user "user1"
    And User "user1" uploads file "./../assets/template.odt" to "/document.odt"
    When User "user1" opens "/document.odt" through direct editing
    And Collabora fetches checkFileInfo
    Then checkFileInfo "BaseFileName" is "document.odt"
    And the direct editing link is only valid once

  Scenario: Open a shared file through direct editing
    Given on instance "serverA"
    And as user "user1"
    And User "user1" uploads file "./../assets/template.odt" to "/document-shared.odt"
    When User "user1" opens "/document-shared.odt" through direct editing
    And Collabora fetches checkFileInfo
    Then checkFileInfo "BaseFileName" is "document-shared.odt"
    And checkFileInfo "UserCanWrite" is true
    And Collabora can save the file with the content of "./../assets/template.ods"
    And as "user1" create a share with
      | path        | /document-shared.odt |
      | shareType   | 0                    |
      | shareWith   | user2                |
      | permissions | 1                    |

    And as user "user2"
    Then User "user2" opens "/document-shared.odt" through direct editing
    And Collabora fetches checkFileInfo
    And checkFileInfo "BaseFileName" is "document-shared.odt"
    And checkFileInfo "UserCanWrite" is false
    And both Collabora files used the same file id
    And Collabora can not save the file with the content of "./../assets/template.odt"
    Then Collabora downoads the file and it is equal to "./../assets/template.ods"

  Scenario: Open a reshared file through direct editing
    Given on instance "serverA"
    And as user "user1"
    And User "user1" uploads file "./../assets/template.odt" to "/document-shared-reshare.odt"
    When User "user1" opens "/document-shared-reshare.odt" through direct editing
    And Collabora fetches checkFileInfo
    Then checkFileInfo "BaseFileName" is "document-shared-reshare.odt"
    And checkFileInfo "UserCanWrite" is true
    And Collabora can save the file with the content of "./../assets/template.ods"
    And as "user1" create a share with
      | path        | /document-shared-reshare.odt |
      | shareType   | 0                            |
      | shareWith   | user2                        |
      | permissions | 31                           |

    And as "user2" create a share with
      | path        | /document-shared-reshare.odt |
      | shareType   | 0                            |
      | shareWith   | user3                        |
      | permissions | 1                            |

    And as user "user3"
    Then User "user3" opens "/document-shared-reshare.odt" through direct editing
    And Collabora fetches checkFileInfo
    And checkFileInfo "BaseFileName" is "document-shared-reshare.odt"
    And checkFileInfo "UserCanWrite" is false
    And both Collabora files used the same file id
    And Collabora can not save the file with the content of "./../assets/template.odt"
    Then Collabora downoads the file and it is equal to "./../assets/template.ods"

  @federation
  Scenario: Open a federated shared file through direct editing
    Given on instance "serverA"
    And as user "user1"
    And User "user1" uploads file "./../assets/template.odt" to "/document-shared-federated.odt"
    When User "user1" opens "/document-shared-federated.odt" through direct editing
    And Collabora fetches checkFileInfo
    Then checkFileInfo "BaseFileName" is "document-shared-federated.odt"
    And checkFileInfo "UserCanWrite" is true
    And Collabora can save the file with the content of "./../assets/template.ods"
    And share the file "/document-shared-federated.odt" with permission 1 as a federated share to "user2" on "serverB"
    Given on instance "serverB"
    And as user "user2"
    And user "user2" accepts last share
    Then User "user2" opens "/document-shared-federated.odt" through direct editing
    And Collabora fetches checkFileInfo
    And checkFileInfo "BaseFileName" is "document-shared-federated.odt"
    And checkFileInfo "UserCanWrite" is false
    And both Collabora files used the same file id
    And Collabora can not save the file with the content of "./../assets/template.odt"
    Then Collabora downoads the file and it is equal to "./../assets/template.ods"

  @federation
  Scenario: Open a file in a federated shared folder through direct editing
    Given on instance "serverA"
    And as user "user1"
    And User "user1" creates a folder "FederatedShareFolder"
    And User "user1" uploads file "./../assets/template.odt" to "/FederatedShareFolder/document-shared-federated.odt"
    When User "user1" opens "/FederatedShareFolder/document-shared-federated.odt" through direct editing
    And Collabora fetches checkFileInfo
    Then checkFileInfo "BaseFileName" is "document-shared-federated.odt"
    And checkFileInfo "UserCanWrite" is true
    And Collabora can save the file with the content of "./../assets/template.ods"
    And share the file "/FederatedShareFolder" with permission 1 as a federated share to "user2" on "serverB"
    Given on instance "serverB"
    And as user "user2"
    And user "user2" accepts last share
    Then User "user2" opens "/FederatedShareFolder/document-shared-federated.odt" through direct editing
    And Collabora fetches checkFileInfo
    And checkFileInfo "BaseFileName" is "document-shared-federated.odt"
    And checkFileInfo "UserCanWrite" is false
    And both Collabora files used the same file id
    And Collabora can not save the file with the content of "./../assets/template.odt"
    Then Collabora downoads the file and it is equal to "./../assets/template.ods"

  Scenario: Open a share link with direct editing
    Given on instance "serverA"
    And as user "user1"
    And User "user1" uploads file "./../assets/template.odt" to "/document-share-link.odt"
    When User "user1" opens "/document-share-link.odt" through direct editing
    And Collabora fetches checkFileInfo
    And as "user1" create a share with
      | path      | /document-share-link.odt |
      | shareType | 3                        |
    And Updating last share with
      | permissions | 3       |
    And as user "user2"
    When User "user2" opens the last share link through direct editing
    And Collabora fetches and receives the following in the checkFileInfo response
      | BaseFileName     | document-share-link.odt   |
      | OwnerId          | user1                     |
      | UserFriendlyName | user2-displayname (Guest) |
    And checkFileInfo "UserCanWrite" is true
    And both Collabora files used the same file id
    And Collabora can save the file with the content of "./../assets/template.ods"
    Then Collabora downoads the file and it is equal to "./../assets/template.ods"
    And the direct editing link is only valid once

  Scenario: Open a file in a shared folder of a share link with direct editing as read only
    Given on instance "serverA"
    And as user "user1"
    And User "user1" creates a folder "Folder"
    And User "user1" uploads file "./../assets/template.odt" to "/Folder/document-share-link.odt"
    When User "user1" opens "/Folder/document-share-link.odt" through direct editing
    And Collabora fetches checkFileInfo
    And as "user1" create a share with
      | path      | /Folder/ |
      | shareType | 3        |
    And as user "user2"
    When User "user2" opens the file "/document-share-link.odt" in the last share link through direct editing
    And Collabora fetches and receives the following in the checkFileInfo response
      | BaseFileName     | document-share-link.odt   |
      | OwnerId          | user1                     |
      | UserFriendlyName | user2-displayname (Guest) |
    And checkFileInfo "UserId" matches "/Guest-/"
    And both Collabora files used the same file id
    And Collabora can not save the file with the content of "./../assets/template.ods"
    Then Collabora downoads the file and it is equal to "./../assets/template.odt"

  Scenario: Open a file in a shared folder of a share link with direct editing as writable
    Given on instance "serverA"
    And as user "user1"
    And User "user1" creates a folder "Folder"
    And User "user1" uploads file "./../assets/template.odt" to "/Folder/document-share-link.odt"
    When User "user1" opens "/Folder/document-share-link.odt" through direct editing
    And Collabora fetches checkFileInfo
    And as "user1" create a share with
      | path        | /Folder/ |
      | shareType   | 3        |
    And Updating last share with
      | permissions | 3       |
    And as user "user2"
    When User "user2" opens the file "/document-share-link.odt" in the last share link through direct editing
    And Collabora fetches and receives the following in the checkFileInfo response
      | BaseFileName     | document-share-link.odt   |
      | OwnerId          | user1                     |
      | UserFriendlyName | user2-displayname (Guest) |
    And checkFileInfo "UserId" matches "/Guest-/"
    And checkFileInfo "UserCanWrite" is true
    And both Collabora files used the same file id
    And Collabora can save the file with the content of "./../assets/template.ods"
    Then Collabora downoads the file and it is equal to "./../assets/template.ods"

  @federation @known-failure-ci
  Scenario: Open a link that originates on a federated share through direct editing
    Given user "user3" exists
    Given on instance "serverA"
    And as user "user1"
    And User "user1" uploads file "./../assets/template.odt" to "/document-reshare-fed-link.odt"
    When User "user1" opens "/document-reshare-fed-link.odt" through direct editing
    And Collabora fetches checkFileInfo
    And share the file "/document-reshare-fed-link.odt" with permission 31 as a federated share to "user2" on "serverB"

    Given on instance "serverB"
    And as user "user2"
    And user "user2" accepts last share
    Then User "user2" opens "/document-reshare-fed-link.odt" through direct editing
    And Collabora fetches checkFileInfo
    And both Collabora files used the same file id
    And as "user2" create a share with
      | path      | /document-reshare-fed-link.odt |
      | shareType | 3                              |

    Given on instance "serverA"
    And as user "user3"
    When User "user3" opens the last share link through direct editing
    And Collabora fetches checkFileInfo
    And Collabora fetches and receives the following in the checkFileInfo response
      | BaseFileName     | document-reshare-fed-link.odt |
      | UserFriendlyName | user3-displayname (Guest)       |
    And checkFileInfo "UserId" matches "/Guest-/"
    And checkFileInfo "UserCanWrite" is false
    And both Collabora files used the same file id
    And Collabora can not save the file with the content of "./../assets/template.ods"
    Then Collabora downoads the file and it is equal to "./../assets/template.odt"
    And the direct editing link is only valid once