[Pkg-owncloud-commits] [owncloud] 33/66: unit tests for set added

David Prévot taffit at moszumanska.debian.org
Fri Apr 18 22:49:45 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to annotated tag v5.0.15
in repository owncloud.

commit e7ccfc6f835ecebebd5fa72e97446468c1d63b49
Author: Thomas Müller <thomas.mueller at tmit.eu>
Date:   Thu Oct 31 10:14:31 2013 +0100

    unit tests for set added
---
 tests/lib/ocs/privatedata.php | 43 ++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 38 insertions(+), 5 deletions(-)

diff --git a/tests/lib/ocs/privatedata.php b/tests/lib/ocs/privatedata.php
index 03129e4..0a242bd 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));
 	}
 }

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list