. * */ namespace Test\AppFramework\Controller; use OC\AppFramework\Http\Request; use OC\AppFramework\Http\JSONResponse; use OC\AppFramework\Http\TemplateResponse; use OC\AppFramework\Controller\Controller; require_once(__DIR__ . "/../classloader.php"); class ChildController extends Controller {}; class ControllerTest extends \PHPUnit_Framework_TestCase { /** * @var Controller */ private $controller; private $api; protected function setUp(){ $request = new Request( array( 'get' => array('name' => 'John Q. Public', 'nickname' => 'Joey'), 'post' => array('name' => 'Jane Doe', 'nickname' => 'Janey'), 'urlParams' => array('name' => 'Johnny Weissmüller'), 'files' => array('file' => 'filevalue'), 'env' => array('PATH' => 'daheim'), 'session' => array('sezession' => 'kein'), 'method' => 'hi', ) ); $this->api = $this->getMock('OC\AppFramework\Core\API', array('getAppName'), array('test')); $this->api->expects($this->any()) ->method('getAppName') ->will($this->returnValue('apptemplate_advanced')); $this->controller = new ChildController($this->api, $request); } public function testParamsGet(){ $this->assertEquals('Johnny Weissmüller', $this->controller->params('name', 'Tarzan')); } public function testParamsGetDefault(){ $this->assertEquals('Tarzan', $this->controller->params('Ape Man', 'Tarzan')); } public function testParamsFile(){ $this->assertEquals('filevalue', $this->controller->params('file', 'filevalue')); } public function testGetUploadedFile(){ $this->assertEquals('filevalue', $this->controller->getUploadedFile('file')); } public function testGetUploadedFileDefault(){ $this->assertEquals('default', $this->controller->params('files', 'default')); } public function testGetParams(){ $params = array( 'name' => 'Johnny Weissmüller', 'nickname' => 'Janey', ); $this->assertEquals($params, $this->controller->getParams()); } public function testRender(){ $this->assertTrue($this->controller->render('') instanceof TemplateResponse); } public function testSetParams(){ $params = array('john' => 'foo'); $response = $this->controller->render('home', $params); $this->assertEquals($params, $response->getParams()); } public function testRenderRenderAs(){ $ocTpl = $this->getMock('Template', array('fetchPage')); $ocTpl->expects($this->once()) ->method('fetchPage'); $api = $this->getMock('OC\AppFramework\Core\API', array('getAppName', 'getTemplate'), array('app')); $api->expects($this->any()) ->method('getAppName') ->will($this->returnValue('app')); $api->expects($this->once()) ->method('getTemplate') ->with($this->equalTo('home'), $this->equalTo('admin'), $this->equalTo('app')) ->will($this->returnValue($ocTpl)); $this->controller = new ChildController($api, new Request()); $this->controller->render('home', array(), 'admin')->render(); } public function testRenderHeaders(){ $headers = array('one', 'two'); $response = $this->controller->render('', array(), '', $headers); $this->assertTrue(in_array($headers[0], $response->getHeaders())); $this->assertTrue(in_array($headers[1], $response->getHeaders())); } public function testGetRequestMethod(){ $this->assertEquals('hi', $this->controller->method()); } public function testGetEnvVariable(){ $this->assertEquals('daheim', $this->controller->env('PATH')); } public function testGetSessionVariable(){ $this->assertEquals('kein', $this->controller->session('sezession')); } }