Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-10-31 13:21:42 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-10-31 13:21:42 +0400
commitbd5663bc3dc5d6901d9051a08d9ec4a8df24cca4 (patch)
tree25ac842b3d0cc27cb8fc7147c7b22bd9a5b25b49 /tests
parent64d0b0d18489e3cbacdfd826c84bdf16f8164268 (diff)
adding unit tests for delete
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/ocs/privatedata.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/lib/ocs/privatedata.php b/tests/lib/ocs/privatedata.php
index 0a242bd5f8e..423bb2c96b6 100644
--- a/tests/lib/ocs/privatedata.php
+++ b/tests/lib/ocs/privatedata.php
@@ -75,6 +75,22 @@ class Test_OC_OCS_Privatedata extends PHPUnit_Framework_TestCase
}
/**
+ * @dataProvider deleteWithEmptyKeysProvider
+ */
+ public function testDeleteWithEmptyKeys($params) {
+ $result = OC_OCS_Privatedata::delete($params);
+ $this->assertEquals(101, $result->getStatusCode());
+ }
+
+ public function deleteWithEmptyKeysProvider() {
+ return array(
+ array(array()),
+ array(array('app' => '123')),
+ array(array('key' => '123')),
+ );
+ }
+
+ /**
* @param \OC_OCS_Result $result
*/
public function assertOcsResult($expectedArraySize, $result) {