2016-04-25 17:00:19 +03:00
|
|
|
Feature: favorite
|
|
|
|
Background:
|
|
|
|
Given using api version "1"
|
|
|
|
|
2016-06-15 13:16:27 +03:00
|
|
|
Scenario: Favorite a folder
|
2016-04-25 17:00:19 +03:00
|
|
|
Given using dav path "remote.php/webdav"
|
|
|
|
And As an "admin"
|
|
|
|
And user "user0" exists
|
2016-06-14 19:20:40 +03:00
|
|
|
When user "user0" favorites element "/FOLDER"
|
|
|
|
Then as "user0" gets properties of folder "/FOLDER" with
|
2016-04-25 17:00:19 +03:00
|
|
|
|{http://owncloud.org/ns}favorite|
|
|
|
|
And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "1"
|
|
|
|
|
2016-06-15 13:16:27 +03:00
|
|
|
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
|
2016-04-25 17:00:19 +03:00
|
|
|
Given using dav path "remote.php/webdav"
|
|
|
|
And As an "admin"
|
|
|
|
And user "user0" exists
|
2016-06-14 19:20:40 +03:00
|
|
|
When user "user0" favorites element "/textfile0.txt"
|
2016-06-15 13:16:27 +03:00
|
|
|
And user "user0" unfavorites element "/textfile0.txt"
|
2016-06-14 19:20:40 +03:00
|
|
|
Then as "user0" gets properties of file "/textfile0.txt" with
|
2016-04-25 17:00:19 +03:00
|
|
|
|{http://owncloud.org/ns}favorite|
|
2016-06-15 13:16:27 +03:00
|
|
|
And the single response should contain a property "{http://owncloud.org/ns}favorite" with value ""
|
|
|
|
|