Added test of OCS privatedata to trigger key duplication
This commit is contained in:
parent
d8bd8c4b66
commit
8231f1ef8c
|
@ -79,6 +79,31 @@ class Test_OC_OCS_Privatedata extends PHPUnit_Framework_TestCase
|
|||
$this->assertEquals('updated', $data['value']);
|
||||
}
|
||||
|
||||
public function testSetSameValue() {
|
||||
$_POST = array('value' => 123456789);
|
||||
$params = array('app' => $this->appKey, 'key' => 'k-10');
|
||||
$result = OC_OCS_Privatedata::set($params);
|
||||
$this->assertEquals(100, $result->getStatusCode());
|
||||
|
||||
$result = OC_OCS_Privatedata::get($params);
|
||||
$this->assertOcsResult(1, $result);
|
||||
$data = $result->getData();
|
||||
$data = $data[0];
|
||||
$this->assertEquals('123456789', $data['value']);
|
||||
|
||||
// set the same value again
|
||||
$_POST = array('value' => 123456789);
|
||||
$params = array('app' => $this->appKey, 'key' => 'k-10');
|
||||
$result = OC_OCS_Privatedata::set($params);
|
||||
$this->assertEquals(100, $result->getStatusCode());
|
||||
|
||||
$result = OC_OCS_Privatedata::get($params);
|
||||
$this->assertOcsResult(1, $result);
|
||||
$data = $result->getData();
|
||||
$data = $data[0];
|
||||
$this->assertEquals('123456789', $data['value']);
|
||||
}
|
||||
|
||||
public function testSetMany() {
|
||||
$_POST = array('value' => 123456789);
|
||||
|
||||
|
|
Loading…
Reference in New Issue