2013-11-14 04:40:09 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Tom Needham <tom@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2014-11-11 00:59:50 +03:00
|
|
|
class Test_API extends \Test\TestCase {
|
2014-01-14 20:11:04 +04:00
|
|
|
|
2013-11-14 04:40:09 +04:00
|
|
|
// Helps build a response variable
|
2014-02-19 12:31:54 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $message
|
|
|
|
*/
|
2014-01-14 20:11:04 +04:00
|
|
|
function buildResponse($shipped, $data, $code, $message=null) {
|
2013-11-14 04:40:09 +04:00
|
|
|
return array(
|
|
|
|
'shipped' => $shipped,
|
2014-01-14 20:11:04 +04:00
|
|
|
'response' => new OC_OCS_Result($data, $code, $message),
|
2014-12-02 15:51:36 +03:00
|
|
|
'app' => $this->getUniqueID('testapp_'),
|
2013-11-14 04:40:09 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate details of the result
|
2014-02-19 12:31:54 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param OC_OCS_Result $result
|
|
|
|
*/
|
2013-11-14 18:37:30 +04:00
|
|
|
function checkResult($result, $success) {
|
2013-11-14 04:40:09 +04:00
|
|
|
// Check response is of correct type
|
2013-11-14 18:37:30 +04:00
|
|
|
$this->assertInstanceOf('OC_OCS_Result', $result);
|
|
|
|
// Check if it succeeded
|
|
|
|
/** @var $result OC_OCS_Result */
|
2013-11-14 04:40:09 +04:00
|
|
|
$this->assertEquals($success, $result->succeeded());
|
|
|
|
}
|
|
|
|
|
2013-11-14 18:37:30 +04:00
|
|
|
function dataProviderTestOneResult() {
|
|
|
|
return array(
|
|
|
|
array(100, true),
|
2014-04-03 18:47:55 +04:00
|
|
|
array(101, false),
|
2013-11-14 18:37:30 +04:00
|
|
|
array(997, false),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataProviderTestOneResult
|
|
|
|
*
|
|
|
|
* @param $statusCode
|
|
|
|
* @param $succeeded
|
|
|
|
*/
|
|
|
|
public function testOneResult($statusCode, $succeeded) {
|
|
|
|
// Setup some data arrays
|
|
|
|
$data1 = array(
|
|
|
|
'users' => array(
|
|
|
|
'tom' => array(
|
|
|
|
'key' => 'value',
|
|
|
|
),
|
|
|
|
'frank' => array(
|
|
|
|
'key' => 'value',
|
|
|
|
),
|
|
|
|
));
|
|
|
|
|
|
|
|
// Test merging one success result
|
|
|
|
$response = $this->buildResponse(true, $data1, $statusCode);
|
|
|
|
$result = OC_API::mergeResponses(array($response));
|
|
|
|
$this->assertEquals($response['response'], $result);
|
|
|
|
$this->checkResult($result, $succeeded);
|
|
|
|
}
|
|
|
|
|
|
|
|
function dataProviderTestMergeResponses() {
|
|
|
|
return array(
|
|
|
|
// Two shipped success results
|
|
|
|
array(true, 100, true, 100, true),
|
|
|
|
// Two shipped results, one success and one failure
|
2014-01-14 20:11:04 +04:00
|
|
|
array(true, 100, true, 998, false),
|
2013-11-14 18:37:30 +04:00
|
|
|
// Two shipped results, both failure
|
2014-01-14 20:11:04 +04:00
|
|
|
array(true, 997, true, 998, false),
|
2013-11-14 18:37:30 +04:00
|
|
|
// Two third party success results
|
|
|
|
array(false, 100, false, 100, true),
|
|
|
|
// Two third party results, one success and one failure
|
2014-01-14 20:11:04 +04:00
|
|
|
array(false, 100, false, 998, false),
|
2013-11-14 18:37:30 +04:00
|
|
|
// Two third party results, both failure
|
2014-01-14 20:11:04 +04:00
|
|
|
array(false, 997, false, 998, false),
|
2013-11-14 18:37:30 +04:00
|
|
|
// One of each, both success
|
|
|
|
array(false, 100, true, 100, true),
|
|
|
|
array(true, 100, false, 100, true),
|
|
|
|
// One of each, both failure
|
2014-01-14 20:11:04 +04:00
|
|
|
array(false, 997, true, 998, false),
|
2013-11-14 18:37:30 +04:00
|
|
|
// One of each, shipped success
|
|
|
|
array(false, 997, true, 100, true),
|
|
|
|
// One of each, third party success
|
2014-01-14 20:11:04 +04:00
|
|
|
array(false, 100, true, 998, false),
|
2013-11-14 18:37:30 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @dataProvider dataProviderTestMergeResponses
|
|
|
|
*
|
|
|
|
* Test the merging of multiple responses
|
|
|
|
* @param $statusCode1
|
|
|
|
* @param $statusCode2
|
|
|
|
* @param $succeeded
|
|
|
|
*/
|
|
|
|
public function testMultipleMergeResponses($shipped1, $statusCode1, $shipped2, $statusCode2, $succeeded){
|
2013-11-14 04:40:09 +04:00
|
|
|
// Tests that app responses are merged correctly
|
|
|
|
// Setup some data arrays
|
|
|
|
$data1 = array(
|
|
|
|
'users' => array(
|
|
|
|
'tom' => array(
|
|
|
|
'key' => 'value',
|
2013-11-14 18:37:30 +04:00
|
|
|
),
|
2013-11-14 04:40:09 +04:00
|
|
|
'frank' => array(
|
|
|
|
'key' => 'value',
|
2013-11-14 18:37:30 +04:00
|
|
|
),
|
2013-11-14 04:40:09 +04:00
|
|
|
));
|
|
|
|
|
|
|
|
$data2 = array(
|
|
|
|
'users' => array(
|
|
|
|
'tom' => array(
|
|
|
|
'key' => 'newvalue',
|
2013-11-14 18:37:30 +04:00
|
|
|
),
|
2013-11-14 04:40:09 +04:00
|
|
|
'jan' => array(
|
|
|
|
'key' => 'value',
|
2013-11-14 18:37:30 +04:00
|
|
|
),
|
2013-11-14 04:40:09 +04:00
|
|
|
));
|
|
|
|
|
|
|
|
// Two shipped success results
|
|
|
|
$result = OC_API::mergeResponses(array(
|
2014-01-14 20:11:04 +04:00
|
|
|
$this->buildResponse($shipped1, $data1, $statusCode1, "message1"),
|
|
|
|
$this->buildResponse($shipped2, $data2, $statusCode2, "message2"),
|
2013-11-14 18:37:30 +04:00
|
|
|
));
|
|
|
|
$this->checkResult($result, $succeeded);
|
2013-11-14 04:40:09 +04:00
|
|
|
$resultData = $result->getData();
|
2014-01-14 20:11:04 +04:00
|
|
|
$resultMeta = $result->getMeta();
|
|
|
|
$resultStatusCode = $result->getStatusCode();
|
|
|
|
|
2013-11-14 04:40:09 +04:00
|
|
|
$this->assertArrayHasKey('jan', $resultData['users']);
|
2014-01-14 20:11:04 +04:00
|
|
|
|
|
|
|
// check if the returned status message matches the selected status code
|
|
|
|
if ($resultStatusCode === 997) {
|
|
|
|
$this->assertEquals('message1', $resultMeta['message']);
|
|
|
|
} elseif ($resultStatusCode === 998) {
|
|
|
|
$this->assertEquals('message2', $resultMeta['message']);
|
|
|
|
} elseif ($resultStatusCode === 100) {
|
|
|
|
$this->assertEquals(null, $resultMeta['message']);
|
|
|
|
}
|
|
|
|
|
2013-11-14 04:40:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|