Skip to content

Commit

Permalink
added bug demo test for removing comments app from whitelist for gues…
Browse files Browse the repository at this point in the history
…t users
  • Loading branch information
PrajwolAmatya committed Mar 31, 2023
1 parent f0a2c3c commit a79f3eb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions tests/acceptance/features/apiGuests/guestsOc10issue549.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
@api
Feature: Guests Oc10 behaviour for issue-549

Background:
Given using OCS API version "1"
And using new dav path

@email @issue-549
Scenario: A guest user cannot add comments of resource when comments app is not in whitelist
Given user "Alice" has been created with default attributes and without skeleton files
And user "Alice" has uploaded file with content "some content" to "textfile0.txt"
And the administrator has created guest user "guest" with email "[email protected]"
And user "Alice" has shared file "/textfile0.txt" with user "[email protected]"
And guest user "guest" has registered
And the administrator has limited the guest access to the default whitelist apps
And the administrator has removed the app "comments" from the whitelist for the guest user
When user "[email protected]" comments with content "Comment from guest" on file "/textfile0.txt" using the WebDAV API
Then the HTTP status code should be "201"
#Then the HTTP status code should be "403"

@email @issue-549
Scenario: A guest user cannot view comments of resource when comments app is not in whitelist
Given user "Alice" has been created with default attributes and without skeleton files
And user "Alice" has uploaded file with content "some content" to "textfile0.txt"
And user "Alice" has commented with content "My first comment" on file "/textfile0.txt"
And the administrator has created guest user "guest" with email "[email protected]"
And user "Alice" has shared file "/textfile0.txt" with user "[email protected]"
And guest user "guest" has registered
And the administrator has limited the guest access to the default whitelist apps
And the administrator has removed the app "comments" from the whitelist for the guest user
When user "[email protected]" gets the following properties of file "/textfile0.txt" using the WebDAV API
| propertyName |
| oc:comments-count |
Then the HTTP status code should be "200"
#Then the HTTP status code should be "403"

0 comments on commit a79f3eb

Please sign in to comment.