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
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-10-31 13:14:31 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-10-31 13:14:31 +0400
commit8362afa94dbfd0c5eda66868270b4e06ca4382d9 (patch)
treefd8a741b4c454d1a21c37be32bc920a40411bf08 /tests/lib/ocs
parent0cec17ba8700b0892927300b19abf3a4b5d8deaf (diff)
unit tests for set added
Diffstat (limited to 'tests/lib/ocs')
-rw-r--r--tests/lib/ocs/privatedata.php43
1 files changed, 38 insertions, 5 deletions
diff --git a/tests/lib/ocs/privatedata.php b/tests/lib/ocs/privatedata.php
index 03129e4d0d0..0a242bd5f8e 100644
--- a/tests/lib/ocs/privatedata.php
+++ b/tests/lib/ocs/privatedata.php
@@ -36,18 +36,51 @@ class Test_OC_OCS_Privatedata extends PHPUnit_Framework_TestCase
public function testGetEmptyOne() {
$params = array('app' => $this->appKey, 'key' => '123');
$result = OC_OCS_Privatedata::get($params);
- $this->assertEquals(100, $result->getStatusCode());
- $data = $result->getData();
- $this->assertTrue(is_array($data));
- $this->assertEquals(0, sizeof($data));
+ $this->assertOcsResult(0, $result);
}
public function testGetEmptyAll() {
$params = array('app' => $this->appKey);
$result = OC_OCS_Privatedata::get($params);
+ $this->assertOcsResult(0, $result);
+ }
+
+ public function testSetOne() {
+ $_POST = array('value' => 123456789);
+ $params = array('app' => $this->appKey, 'key' => 'k-1');
+ $result = OC_OCS_Privatedata::set($params);
+ $this->assertEquals(100, $result->getStatusCode());
+
+ $result = OC_OCS_Privatedata::get($params);
+ $this->assertOcsResult(1, $result);
+ }
+
+ public function testSetMany() {
+ $_POST = array('value' => 123456789);
+
+ // set key 'k-1'
+ $params = array('app' => $this->appKey, 'key' => 'k-1');
+ $result = OC_OCS_Privatedata::set($params);
+ $this->assertEquals(100, $result->getStatusCode());
+
+ // set key 'k-2'
+ $params = array('app' => $this->appKey, 'key' => 'k-2');
+ $result = OC_OCS_Privatedata::set($params);
+ $this->assertEquals(100, $result->getStatusCode());
+
+ // query for all
+ $params = array('app' => $this->appKey);
+ $result = OC_OCS_Privatedata::get($params);
+ $this->assertOcsResult(2, $result);
+ }
+
+ /**
+ * @param \OC_OCS_Result $result
+ */
+ public function assertOcsResult($expectedArraySize, $result) {
$this->assertEquals(100, $result->getStatusCode());
$data = $result->getData();
$this->assertTrue(is_array($data));
- $this->assertEquals(0, sizeof($data));
+ $this->assertEquals($expectedArraySize, sizeof($data));
}
}