[stable9.1] Added integration test (#25675)
* [stable9.1] Added integration test * A shared storage is never a home storage - fixes #25582
This commit is contained in:
parent
7e2c4b80d2
commit
bc3c4ebd2d
|
@ -105,6 +105,16 @@ class Shared extends \OC\Files\Storage\Wrapper\Jail implements ISharedStorage {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritdoc
|
||||||
|
*/
|
||||||
|
public function instanceOfStorage($class) {
|
||||||
|
if (in_array($class, ['\OC\Files\Storage\Home', '\OC\Files\ObjectStore\HomeObjectStoreStorage'])) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return parent::instanceOfStorage($class);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -59,6 +59,24 @@ Feature: webdav-related
|
||||||
|{DAV:}quota-available-bytes|
|
|{DAV:}quota-available-bytes|
|
||||||
And the single response should contain a property "{DAV:}quota-available-bytes" with value "10485429"
|
And the single response should contain a property "{DAV:}quota-available-bytes" with value "10485429"
|
||||||
|
|
||||||
|
Scenario: Uploading a file as recipient using webdav having quota
|
||||||
|
Given using dav path "remote.php/webdav"
|
||||||
|
And As an "admin"
|
||||||
|
And user "user0" exists
|
||||||
|
And user "user1" exists
|
||||||
|
And user "user0" has a quota of "10 MB"
|
||||||
|
And user "user1" has a quota of "10 MB"
|
||||||
|
And As an "user1"
|
||||||
|
And user "user1" created a folder "/testquota"
|
||||||
|
And as "user1" creating a share with
|
||||||
|
| path | testquota |
|
||||||
|
| shareType | 0 |
|
||||||
|
| permissions | 31 |
|
||||||
|
| shareWith | user0 |
|
||||||
|
And As an "user0"
|
||||||
|
When User "user0" uploads file "data/textfile.txt" to "/testquota/asdf.txt"
|
||||||
|
Then the HTTP status code should be "201"
|
||||||
|
|
||||||
Scenario: download a public shared file with range
|
Scenario: download a public shared file with range
|
||||||
Given user "user0" exists
|
Given user "user0" exists
|
||||||
And As an "user0"
|
And As an "user0"
|
||||||
|
|
Loading…
Reference in New Issue