summaryrefslogtreecommitdiffstats
path: root/build/integration/collaboration_features/autocomplete.feature
blob: e20993e420e36edcb4454acac0da7d2494143eae (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
Feature: autocomplete
  Background:
    Given using api version "2"
    And group "commongroup" exists
    And user "admin" belongs to group "commongroup"
    And user "auto" exists
    And user "autocomplete" exists
    And user "autocomplete2" exists
    And user "autocomplete2" belongs to group "commongroup"

  Scenario: getting autocomplete
    Given As an "admin"
    When get autocomplete for "auto"
      | id | source |
      | auto | users |
      | autocomplete | users |
      | autocomplete2 | users |
    When parameter "shareapi_restrict_user_enumeration_full_match" of app "core" is set to "no"
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |
      | autocomplete | users |
      | autocomplete2 | users |


  Scenario: getting autocomplete without enumeration
    Given As an "admin"
    When parameter "shareapi_allow_share_dialog_user_enumeration" of app "core" is set to "no"
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |
    Then get autocomplete for "autocomplete"
      | id | source |
      | autocomplete | users |
    When parameter "shareapi_restrict_user_enumeration_full_match" of app "core" is set to "no"
    Then get autocomplete for "auto"
      | id | source |
    Then get autocomplete for "autocomplete"
      | id | source |


  Scenario: getting autocomplete with limited enumeration by group
    Given As an "admin"
    When parameter "shareapi_restrict_user_enumeration_to_group" of app "core" is set to "yes"
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |
      | autocomplete2 | users |
    Then get autocomplete for "autocomplete"
      | id | source |
      | autocomplete | users |
      | autocomplete2 | users |
    Then get autocomplete for "autocomplete2"
      | id | source |
      | autocomplete2 | users |
    When parameter "shareapi_restrict_user_enumeration_full_match" of app "core" is set to "no"
    Then get autocomplete for "autocomplete"
      | id | source |
      | autocomplete2 | users |
    Then get autocomplete for "autocomplete2"
      | id | source |
      | autocomplete2 | users |


  Scenario: getting autocomplete with limited enumeration by phone
    Given As an "admin"
    When parameter "shareapi_restrict_user_enumeration_to_phone" of app "core" is set to "yes"
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |

    # autocomplete stores their phone number
    Given As an "autocomplete"
    And sending "PUT" to "/cloud/users/autocomplete" with
      | key | phone |
      | value | +49 711 / 25 24 28-90 |
    And the HTTP status code should be "200"
    And the OCS status code should be "200"

    Given As an "admin"
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |

    # admin populates they have the phone number
    When search users by phone for region "DE" with
      | random-string1 | 0711 / 252 428-90 |
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |
      | autocomplete | users |

    When parameter "shareapi_restrict_user_enumeration_full_match" of app "core" is set to "no"
    Then get autocomplete for "auto"
      | id | source |
      | autocomplete | users |


  Scenario: getting autocomplete with limited enumeration by group or phone
    Given As an "admin"
    When parameter "shareapi_restrict_user_enumeration_to_group" of app "core" is set to "yes"
    And parameter "shareapi_restrict_user_enumeration_to_phone" of app "core" is set to "yes"

    # autocomplete stores their phone number
    Given As an "autocomplete"
    And sending "PUT" to "/cloud/users/autocomplete" with
      | key | phone |
      | value | +49 711 / 25 24 28-90 |
    And the HTTP status code should be "200"
    And the OCS status code should be "200"
    # admin populates they have the phone number
    Given As an "admin"
    When search users by phone for region "DE" with
      | random-string1 | 0711 / 252 428-90 |

    Then get autocomplete for "auto"
      | id | source |
      | auto | users |
      | autocomplete | users |
      | autocomplete2 | users |

    When parameter "shareapi_restrict_user_enumeration_full_match" of app "core" is set to "no"
    Then get autocomplete for "auto"
      | id | source |
      | autocomplete | users |
      | autocomplete2 | users |


  Scenario: getting autocomplete with limited enumeration but sharing is group restricted
    Given As an "admin"
    When parameter "shareapi_restrict_user_enumeration_to_group" of app "core" is set to "yes"
    And parameter "shareapi_restrict_user_enumeration_to_phone" of app "core" is set to "yes"

    # autocomplete stores their phone number
    Given As an "autocomplete"
    And sending "PUT" to "/cloud/users/autocomplete" with
      | key | phone |
      | value | +49 711 / 25 24 28-90 |
    And the HTTP status code should be "200"
    And the OCS status code should be "200"
    # admin populates they have the phone number
    Given As an "admin"
    When search users by phone for region "DE" with
      | random-string1 | 0711 / 252 428-90 |

    Then get autocomplete for "auto"
      | id | source |
      | auto | users |
      | autocomplete | users |
      | autocomplete2 | users |
    When parameter "shareapi_only_share_with_group_members" of app "core" is set to "yes"
    Then get autocomplete for "auto"
      | id | source |
      | autocomplete2 | users |


  Scenario: getting autocomplete with limited enumeration by phone but user changes it
    Given As an "admin"
    When parameter "shareapi_restrict_user_enumeration_to_phone" of app "core" is set to "yes"
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |

    # autocomplete stores their phone number
    Given As an "autocomplete"
    And sending "PUT" to "/cloud/users/autocomplete" with
      | key | phone |
      | value | +49 711 / 25 24 28-90 |
    And the HTTP status code should be "200"
    And the OCS status code should be "200"

    Given As an "admin"
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |

    # admin populates they have the phone number
    When search users by phone for region "DE" with
      | random-string1 | 0711 / 252 428-90 |
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |
      | autocomplete | users |

    # autocomplete changes their phone number
    Given As an "autocomplete"
    And sending "PUT" to "/cloud/users/autocomplete" with
      | key | phone |
      | value | +49 711 / 25 24 28-91 |
    And the HTTP status code should be "200"
    And the OCS status code should be "200"

    Given As an "admin"
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |

    # admin populates they have the new phone number
    When search users by phone for region "DE" with
      | random-string1 | 0711 / 252 428-91 |
    Then get autocomplete for "auto"
      | id | source |
      | auto | users |
      | autocomplete | users |


  Scenario: getting autocomplete without enumeration and sharing is group restricted
    Given As an "admin"
    When parameter "shareapi_allow_share_dialog_user_enumeration" of app "core" is set to "no"
    And parameter "shareapi_only_share_with_group_members" of app "core" is set to "yes"

    Then get autocomplete for "auto"
      | id | source |
    Then get autocomplete for "autocomplete"
      | id | source |
    Then get autocomplete for "autocomplete2"
      | id | source |
      | autocomplete2 | users |