aboutsummaryrefslogtreecommitdiffstats
path: root/build/integration/comments_features/comments-search.feature
blob: a1d116ee3f430441bf3e4d0ce5f1559f9e620d89 (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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
Feature: comments-search

  Scenario: Search my own comment on a file belonging to myself
    Given user "user0" exists
    And User "user0" uploads file "data/textfile.txt" to "/myFileToComment.txt"
    And "user0" posts a comment with content "My first comment" on the file named "/myFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "first" in app "files"
    Then the list of search results has "1" results
    And search result "0" contains
      | type | comment |
      | comment | My first comment |
      | authorId | user0 |
      | authorName | user0 |
      | path | myFileToComment.txt |
      | fileName | myFileToComment.txt |
      | name | My first comment |

  Scenario: Search my own comment on a file shared by someone with me
    Given user "user0" exists
    And user "user1" exists
    And User "user1" uploads file "data/textfile.txt" to "/sharedFileToComment.txt"
    And as "user1" creating a share with
      | path | sharedFileToComment.txt |
      | shareWith | user0 |
      | shareType | 0 |
    And user "user0" accepts last share
    And "user0" posts a comment with content "My first comment" on the file named "/sharedFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "first" in app "files"
    Then the list of search results has "1" results
    And search result "0" contains
      | type | comment |
      | comment | My first comment |
      | authorId | user0 |
      | authorName | user0 |
      | path | sharedFileToComment.txt |
      | fileName | sharedFileToComment.txt |
      | name | My first comment |

  Scenario: Search other user's comment on a file shared by me
    Given user "user0" exists
    And user "user1" exists
    And User "user0" uploads file "data/textfile.txt" to "/mySharedFileToComment.txt"
    And as "user0" creating a share with
      | path | mySharedFileToComment.txt |
      | shareWith | user1 |
      | shareType | 0 |
    And user "user1" accepts last share
    And "user1" posts a comment with content "Other's first comment" on the file named "/mySharedFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "first" in app "files"
    Then the list of search results has "1" results
    And search result "0" contains
      | type | comment |
      | comment | Other's first comment |
      | authorId | user1 |
      | authorName | user1 |
      | path | mySharedFileToComment.txt |
      | fileName | mySharedFileToComment.txt |
      | name | Other's first comment |

  Scenario: Search other user's comment on a file shared by someone with me
    Given user "user0" exists
    And user "user1" exists
    And User "user1" uploads file "data/textfile.txt" to "/sharedFileToComment.txt"
    And as "user1" creating a share with
      | path | sharedFileToComment.txt |
      | shareWith | user0 |
      | shareType | 0 |
    And user "user0" accepts last share
    And "user1" posts a comment with content "Other's first comment" on the file named "/sharedFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "first" in app "files"
    Then the list of search results has "1" results
    And search result "0" contains
      | type | comment |
      | comment | Other's first comment |
      | authorId | user1 |
      | authorName | user1 |
      | path | sharedFileToComment.txt |
      | fileName | sharedFileToComment.txt |
      | name | Other's first comment |

  Scenario: Search several comments on a file belonging to myself
    Given user "user0" exists
    And User "user0" uploads file "data/textfile.txt" to "/myFileToComment.txt"
    And "user0" posts a comment with content "My first comment to be found" on the file named "/myFileToComment.txt" it should return "201"
    And "user0" posts a comment with content "The second comment should not be found" on the file named "/myFileToComment.txt" it should return "201"
    And "user0" posts a comment with content "My third comment to be found" on the file named "/myFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "comment to be found" in app "files"
    Then the list of search results has "2" results
    And search result "0" contains
      | type | comment |
      | comment | My third comment to be found |
      | authorId | user0 |
      | authorName | user0 |
      | path | myFileToComment.txt |
      | fileName | myFileToComment.txt |
      | name | My third comment to be found |
    And search result "1" contains
      | type | comment |
      | comment | My first comment to be found |
      | authorId | user0 |
      | authorName | user0 |
      | path | myFileToComment.txt |
      | fileName | myFileToComment.txt |
      | name | My first comment to be found |

  Scenario: Search comment with a large message ellipsized on the right
    Given user "user0" exists
    And User "user0" uploads file "data/textfile.txt" to "/myFileToComment.txt"
    And "user0" posts a comment with content "A very verbose message that is meant to be used to test the ellipsized message returned when searching for long comments" on the file named "/myFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "verbose" in app "files"
    Then the list of search results has "1" results
    And search result "0" contains
      | type | comment |
      | comment | A very verbose message that is meant to… |
      | authorId | user0 |
      | authorName | user0 |
      | path | myFileToComment.txt |
      | fileName | myFileToComment.txt |
      | name | A very verbose message that is meant to be used to test the ellipsized message returned when searching for long comments |

  Scenario: Search comment with a large message ellipsized on the left
    Given user "user0" exists
    And User "user0" uploads file "data/textfile.txt" to "/myFileToComment.txt"
    And "user0" posts a comment with content "A very verbose message that is meant to be used to test the ellipsized message returned when searching for long comments" on the file named "/myFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "searching" in app "files"
    Then the list of search results has "1" results
    And search result "0" contains
      | type | comment |
      | comment | …ed message returned when searching for long comments |
      | authorId | user0 |
      | authorName | user0 |
      | path | myFileToComment.txt |
      | fileName | myFileToComment.txt |
      | name | A very verbose message that is meant to be used to test the ellipsized message returned when searching for long comments |

  Scenario: Search comment with a large message ellipsized on both ends
    Given user "user0" exists
    And User "user0" uploads file "data/textfile.txt" to "/myFileToComment.txt"
    And "user0" posts a comment with content "A very verbose message that is meant to be used to test the ellipsized message returned when searching for long comments" on the file named "/myFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "ellipsized" in app "files"
    Then the list of search results has "1" results
    And search result "0" contains
      | type | comment |
      | comment | …t to be used to test the ellipsized message returned when se… |
      | authorId | user0 |
      | authorName | user0 |
      | path | myFileToComment.txt |
      | fileName | myFileToComment.txt |
      | name | A very verbose message that is meant to be used to test the ellipsized message returned when searching for long comments |

  Scenario: Search comment on a file in a subfolder
    Given user "user0" exists
    And user "user0" created a folder "/subfolder"
    And User "user0" uploads file "data/textfile.txt" to "/subfolder/myFileToComment.txt"
    And "user0" posts a comment with content "My first comment" on the file named "/subfolder/myFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "first" in app "files"
    Then the list of search results has "1" results
    And search result "0" contains
      | type | comment |
      | comment | My first comment |
      | authorId | user0 |
      | authorName | user0 |
      | path | subfolder/myFileToComment.txt |
      | fileName | myFileToComment.txt |
      | name | My first comment |

  Scenario: Search several comments
    Given user "user0" exists
    And user "user1" exists
    And User "user0" uploads file "data/textfile.txt" to "/myFileToComment.txt"
    And User "user0" uploads file "data/textfile.txt" to "/mySharedFileToComment.txt"
    And as "user0" creating a share with
      | path | mySharedFileToComment.txt |
      | shareWith | user1 |
      | shareType | 0 |
    And user "user1" accepts last share
    And User "user1" uploads file "data/textfile.txt" to "/sharedFileToComment.txt"
    And as "user1" creating a share with
      | path | sharedFileToComment.txt |
      | shareWith | user0 |
      | shareType | 0 |
    And user "user0" accepts last share
    And "user0" posts a comment with content "My first comment to be found" on the file named "/myFileToComment.txt" it should return "201"
    And "user0" posts a comment with content "The second comment should not be found" on the file named "/myFileToComment.txt" it should return "201"
    And "user0" posts a comment with content "My first comment to be found" on the file named "/mySharedFileToComment.txt" it should return "201"
    And "user1" posts a comment with content "Other's first comment that should not be found" on the file named "/mySharedFileToComment.txt" it should return "201"
    And "user1" posts a comment with content "Other's second comment to be found" on the file named "/mySharedFileToComment.txt" it should return "201"
    And "user0" posts a comment with content "My first comment that should not be found" on the file named "/sharedFileToComment.txt" it should return "201"
    And "user1" posts a comment with content "Other's first comment to be found" on the file named "/sharedFileToComment.txt" it should return "201"
    And "user0" posts a comment with content "My second comment to be found that happens to be more verbose than the others and thus should be ellipsized" on the file named "/sharedFileToComment.txt" it should return "201"
    And "user0" posts a comment with content "My third comment to be found" on the file named "/myFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "comment to be found" in app "files"
    Then the list of search results has "6" results
    And search result "0" contains
      | type | comment |
      | comment | My third comment to be found |
      | authorId | user0 |
      | authorName | user0 |
      | path | myFileToComment.txt |
      | fileName | myFileToComment.txt |
      | name | My third comment to be found |
    And search result "1" contains
      | type | comment |
      | comment | My second comment to be found that happens to be more … |
      | authorId | user0 |
      | authorName | user0 |
      | path | sharedFileToComment.txt |
      | fileName | sharedFileToComment.txt |
      | name | My second comment to be found that happens to be more verbose than the others and thus should be ellipsized |
    And search result "2" contains
      | type | comment |
      | comment | Other's first comment to be found |
      | authorId | user1 |
      | authorName | user1 |
      | path | sharedFileToComment.txt |
      | fileName | sharedFileToComment.txt |
      | name | Other's first comment to be found |
    And search result "3" contains
      | type | comment |
      | comment | Other's second comment to be found |
      | authorId | user1 |
      | authorName | user1 |
      | path | mySharedFileToComment.txt |
      | fileName | mySharedFileToComment.txt |
      | name | Other's second comment to be found |
    And search result "4" contains
      | type | comment |
      | comment | My first comment to be found |
      | authorId | user0 |
      | authorName | user0 |
      | path | mySharedFileToComment.txt |
      | fileName | mySharedFileToComment.txt |
      | name | My first comment to be found |
    And search result "5" contains
      | type | comment |
      | comment | My first comment to be found |
      | authorId | user0 |
      | authorName | user0 |
      | path | myFileToComment.txt |
      | fileName | myFileToComment.txt |
      | name | My first comment to be found |

  Scenario: Search comment with a query that also matches a file name
    Given user "user0" exists
    And User "user0" uploads file "data/textfile.txt" to "/myFileToComment.txt"
    And "user0" posts a comment with content "A comment in myFileToComment.txt" on the file named "/myFileToComment.txt" it should return "201"
    When Logging in using web as "user0"
    And searching for "myFileToComment" in app "files"
    Then the list of search results has "2" results
    And search result "0" contains
      | type | file |
      | path | /myFileToComment.txt |
      | name | myFileToComment.txt |
    And search result "1" contains
      | type | comment |
      | comment | A comment in myFileToComment.txt |
      | authorId | user0 |
      | authorName | user0 |
      | path | myFileToComment.txt |
      | fileName | myFileToComment.txt |
      | name | A comment in myFileToComment.txt |