summaryrefslogtreecommitdiffstats
path: root/build/integration/features/favorites.feature
diff options
context:
space:
mode:
Diffstat (limited to 'build/integration/features/favorites.feature')
-rw-r--r--build/integration/features/favorites.feature27
1 files changed, 24 insertions, 3 deletions
diff --git a/build/integration/features/favorites.feature b/build/integration/features/favorites.feature
index 8025f0834ff..86643fdd1e2 100644
--- a/build/integration/features/favorites.feature
+++ b/build/integration/features/favorites.feature
@@ -2,7 +2,7 @@ Feature: favorite
Background:
Given using api version "1"
- Scenario: Retrieving favorite info of a folder
+ Scenario: Favorite a folder
Given using dav path "remote.php/webdav"
And As an "admin"
And user "user0" exists
@@ -11,11 +11,32 @@ Feature: favorite
|{http://owncloud.org/ns}favorite|
And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "1"
- Scenario: Retrieving favorite info of a file
+ Scenario: Favorite and unfavorite a folder
+ Given using dav path "remote.php/webdav"
+ And As an "admin"
+ And user "user0" exists
+ When user "user0" favorites element "/FOLDER"
+ And user "user0" unfavorites element "/FOLDER"
+ Then as "user0" gets properties of folder "/FOLDER" with
+ |{http://owncloud.org/ns}favorite|
+ And the single response should contain a property "{http://owncloud.org/ns}favorite" with value ""
+
+ Scenario: Favorite a file
+ Given using dav path "remote.php/webdav"
+ And As an "admin"
+ And user "user0" exists
+ When user "user0" favorites element "/textfile0.txt"
+ Then as "user0" gets properties of file "/textfile0.txt" with
+ |{http://owncloud.org/ns}favorite|
+ And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "1"
+
+ Scenario: Favorite and unfavorite a file
Given using dav path "remote.php/webdav"
And As an "admin"
And user "user0" exists
When user "user0" favorites element "/textfile0.txt"
+ And user "user0" unfavorites element "/textfile0.txt"
Then as "user0" gets properties of file "/textfile0.txt" with
|{http://owncloud.org/ns}favorite|
- And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "1" \ No newline at end of file
+ And the single response should contain a property "{http://owncloud.org/ns}favorite" with value ""
+