summaryrefslogtreecommitdiffstats
path: root/build/integration/features/favorites.feature
diff options
context:
space:
mode:
authorDavid Toledo <dtoledo@solidgear.es>2016-04-25 14:00:19 +0000
committerThomas Müller <thomas.mueller@tmit.eu>2016-06-15 14:21:59 +0200
commit39a56c7bc165cc782142a0a92fe1ec8423ecfa3d (patch)
treed95acdbb17fafd58c3bcb00c1010d97cf7975de5 /build/integration/features/favorites.feature
parent5de6432441df09d9450457f242eb4a65a60b40dc (diff)
downloadnextcloud-server-39a56c7bc165cc782142a0a92fe1ec8423ecfa3d.tar.gz
nextcloud-server-39a56c7bc165cc782142a0a92fe1ec8423ecfa3d.zip
Added favorites integration tests
Diffstat (limited to 'build/integration/features/favorites.feature')
-rw-r--r--build/integration/features/favorites.feature23
1 files changed, 23 insertions, 0 deletions
diff --git a/build/integration/features/favorites.feature b/build/integration/features/favorites.feature
new file mode 100644
index 00000000000..4b437d13bd5
--- /dev/null
+++ b/build/integration/features/favorites.feature
@@ -0,0 +1,23 @@
+Feature: favorite
+ Background:
+ Given using api version "1"
+
+ Scenario: Retrieving favorite info of a folder
+ Given using dav path "remote.php/webdav"
+ And As an "admin"
+ And user "user0" exists
+ When user "user0" favorites folder "/"
+ |{http://owncloud.org/ns}favorite|
+ Then As "user0" gets properties of folder "/" with
+ |{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
+ Given using dav path "remote.php/webdav"
+ And As an "admin"
+ And user "user0" exists
+ When user "user0" favorites folder "/textfile0.txt"
+ |{http://owncloud.org/ns}favorite|
+ Then As "user0" gets properties of folder "/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