2014-05-06 18:29:19 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - App Framework
|
|
|
|
*
|
|
|
|
* @author Bernhard Posselt
|
2014-05-07 00:25:05 +04:00
|
|
|
* @copyright 2012 Bernhard Posselt <dev@bernhard-posselt.com>
|
2014-05-06 18:29:19 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2016-05-18 19:40:34 +03:00
|
|
|
namespace Test\AppFramework\Utility;
|
2014-05-06 18:29:19 +04:00
|
|
|
|
|
|
|
|
2016-05-18 19:40:34 +03:00
|
|
|
use OC\AppFramework\Utility\ControllerMethodReflector;
|
|
|
|
|
2015-01-29 22:33:05 +03:00
|
|
|
class BaseController {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
*/
|
|
|
|
public function test(){}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
*/
|
|
|
|
public function test2(){}
|
|
|
|
|
2015-01-29 22:35:07 +03:00
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
*/
|
|
|
|
public function test3(){}
|
|
|
|
|
2015-01-29 22:33:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
class MiddleController extends BaseController {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAnnotation
|
|
|
|
*/
|
|
|
|
public function test2() {}
|
|
|
|
|
2015-01-29 22:35:07 +03:00
|
|
|
public function test3() {}
|
|
|
|
|
2015-01-29 22:33:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
class EndController extends MiddleController {}
|
|
|
|
|
2014-11-11 01:30:38 +03:00
|
|
|
class ControllerMethodReflectorTest extends \Test\TestCase {
|
2014-05-06 18:29:19 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
*/
|
|
|
|
public function testReadAnnotation(){
|
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
2016-05-18 19:40:34 +03:00
|
|
|
'\Test\AppFramework\Utility\ControllerMethodReflectorTest',
|
2014-05-06 18:29:19 +04:00
|
|
|
'testReadAnnotation'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertTrue($reader->hasAnnotation('Annotation'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-17 19:11:34 +03:00
|
|
|
/**
|
|
|
|
* @Annotation parameter
|
|
|
|
*/
|
|
|
|
public function testGetAnnotationParameter(){
|
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
|
|
|
'\Test\AppFramework\Utility\ControllerMethodReflectorTest',
|
|
|
|
'testGetAnnotationParameter'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertSame('parameter', $reader->getAnnotationParameter('Annotation'));
|
|
|
|
}
|
|
|
|
|
2014-05-06 18:29:19 +04:00
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
* @param test
|
|
|
|
*/
|
|
|
|
public function testReadAnnotationNoLowercase(){
|
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
2016-05-18 19:40:34 +03:00
|
|
|
'\Test\AppFramework\Utility\ControllerMethodReflectorTest',
|
2014-05-06 18:29:19 +04:00
|
|
|
'testReadAnnotationNoLowercase'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertTrue($reader->hasAnnotation('Annotation'));
|
|
|
|
$this->assertFalse($reader->hasAnnotation('param'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
* @param int $test
|
|
|
|
*/
|
|
|
|
public function testReadTypeIntAnnotations(){
|
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
2016-05-18 19:40:34 +03:00
|
|
|
'\Test\AppFramework\Utility\ControllerMethodReflectorTest',
|
2014-05-06 18:29:19 +04:00
|
|
|
'testReadTypeIntAnnotations'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals('int', $reader->getType('test'));
|
|
|
|
}
|
|
|
|
|
2015-07-02 12:54:17 +03:00
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
* @param int $a
|
|
|
|
* @param int $b
|
2015-12-23 16:12:37 +03:00
|
|
|
*/
|
|
|
|
public function arguments3($a, float $b, int $c, $d){}
|
|
|
|
|
|
|
|
/**
|
2015-07-02 12:54:17 +03:00
|
|
|
* @requires PHP 7
|
|
|
|
*/
|
2015-12-23 16:12:37 +03:00
|
|
|
public function testReadTypeIntAnnotationsScalarTypes(){
|
2015-07-02 12:54:17 +03:00
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
2016-05-18 19:40:34 +03:00
|
|
|
'\Test\AppFramework\Utility\ControllerMethodReflectorTest',
|
2015-12-23 16:12:37 +03:00
|
|
|
'arguments3'
|
2015-07-02 12:54:17 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals('int', $reader->getType('a'));
|
|
|
|
$this->assertEquals('float', $reader->getType('b'));
|
|
|
|
$this->assertEquals('int', $reader->getType('c'));
|
|
|
|
$this->assertNull($reader->getType('d'));
|
|
|
|
}
|
|
|
|
|
2014-05-06 18:29:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @Annotation
|
2014-05-06 18:58:39 +04:00
|
|
|
* @param double $test something special
|
2014-05-06 18:29:19 +04:00
|
|
|
*/
|
|
|
|
public function testReadTypeDoubleAnnotations(){
|
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
2016-05-18 19:40:34 +03:00
|
|
|
'\Test\AppFramework\Utility\ControllerMethodReflectorTest',
|
2014-05-06 18:29:19 +04:00
|
|
|
'testReadTypeDoubleAnnotations'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals('double', $reader->getType('test'));
|
|
|
|
}
|
|
|
|
|
2015-06-21 22:26:57 +03:00
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
* @param string $foo
|
|
|
|
*/
|
|
|
|
public function testReadTypeWhitespaceAnnotations(){
|
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
2016-05-18 19:40:34 +03:00
|
|
|
'\Test\AppFramework\Utility\ControllerMethodReflectorTest',
|
2015-06-21 22:26:57 +03:00
|
|
|
'testReadTypeWhitespaceAnnotations'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals('string', $reader->getType('foo'));
|
|
|
|
}
|
|
|
|
|
2014-05-06 18:29:19 +04:00
|
|
|
|
2014-05-13 12:40:49 +04:00
|
|
|
public function arguments($arg, $arg2='hi') {}
|
2014-05-06 18:29:19 +04:00
|
|
|
public function testReflectParameters() {
|
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
2016-05-18 19:40:34 +03:00
|
|
|
'\Test\AppFramework\Utility\ControllerMethodReflectorTest',
|
2014-05-06 18:29:19 +04:00
|
|
|
'arguments'
|
|
|
|
);
|
|
|
|
|
2015-01-29 22:33:05 +03:00
|
|
|
$this->assertEquals(array('arg' => null, 'arg2' => 'hi'), $reader->getParameters());
|
2014-05-06 18:29:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function arguments2($arg) {}
|
|
|
|
public function testReflectParameters2() {
|
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
2016-05-18 19:40:34 +03:00
|
|
|
'\Test\AppFramework\Utility\ControllerMethodReflectorTest',
|
2014-05-06 18:29:19 +04:00
|
|
|
'arguments2'
|
|
|
|
);
|
|
|
|
|
2015-01-29 22:33:05 +03:00
|
|
|
$this->assertEquals(array('arg' => null), $reader->getParameters());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testInheritance() {
|
|
|
|
$reader = new ControllerMethodReflector();
|
2016-05-18 19:40:34 +03:00
|
|
|
$reader->reflect('Test\AppFramework\Utility\EndController', 'test');
|
2015-01-29 22:33:05 +03:00
|
|
|
|
|
|
|
$this->assertTrue($reader->hasAnnotation('Annotation'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function testInheritanceOverride() {
|
|
|
|
$reader = new ControllerMethodReflector();
|
2016-05-18 19:40:34 +03:00
|
|
|
$reader->reflect('Test\AppFramework\Utility\EndController', 'test2');
|
2015-01-29 22:33:05 +03:00
|
|
|
|
|
|
|
$this->assertTrue($reader->hasAnnotation('NoAnnotation'));
|
|
|
|
$this->assertFalse($reader->hasAnnotation('Annotation'));
|
2014-05-06 18:29:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-29 22:35:07 +03:00
|
|
|
public function testInheritanceOverrideNoDocblock() {
|
|
|
|
$reader = new ControllerMethodReflector();
|
2016-05-18 19:40:34 +03:00
|
|
|
$reader->reflect('Test\AppFramework\Utility\EndController', 'test3');
|
2015-01-29 22:35:07 +03:00
|
|
|
|
|
|
|
$this->assertFalse($reader->hasAnnotation('Annotation'));
|
|
|
|
}
|
|
|
|
|
2014-05-06 18:29:19 +04:00
|
|
|
}
|