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
|
|
|
|
*/
|
2020-04-10 15:19:56 +03:00
|
|
|
public function test() {
|
|
|
|
}
|
2015-01-29 22:33:05 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
*/
|
2020-04-10 15:19:56 +03:00
|
|
|
public function test2() {
|
|
|
|
}
|
2015-01-29 22:33:05 +03:00
|
|
|
|
2015-01-29 22:35:07 +03:00
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
*/
|
2020-04-10 15:19:56 +03:00
|
|
|
public function test3() {
|
|
|
|
}
|
2015-01-29 22:33:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
class MiddleController extends BaseController {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAnnotation
|
|
|
|
*/
|
2020-04-10 15:19:56 +03:00
|
|
|
public function test2() {
|
|
|
|
}
|
2015-01-29 22:35:07 +03:00
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
public function test3() {
|
|
|
|
}
|
2015-01-29 22:33:05 +03:00
|
|
|
}
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
class EndController extends MiddleController {
|
|
|
|
}
|
2015-01-29 22:33:05 +03:00
|
|
|
|
2014-11-11 01:30:38 +03:00
|
|
|
class ControllerMethodReflectorTest extends \Test\TestCase {
|
2014-05-06 18:29:19 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function testReadAnnotation() {
|
2014-05-06 18:29:19 +04:00
|
|
|
$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-04-12 23:26:09 +03:00
|
|
|
/**
|
|
|
|
* @Annotation(parameter=value)
|
|
|
|
*/
|
|
|
|
public function testGetAnnotationParameterSingle() {
|
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
|
|
|
__CLASS__,
|
|
|
|
__FUNCTION__
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertSame('value', $reader->getAnnotationParameter('Annotation', 'parameter'));
|
|
|
|
}
|
2014-05-06 18:29:19 +04:00
|
|
|
|
2017-01-17 19:11:34 +03:00
|
|
|
/**
|
2017-04-12 23:26:09 +03:00
|
|
|
* @Annotation(parameter1=value1, parameter2=value2,parameter3=value3)
|
2017-01-17 19:11:34 +03:00
|
|
|
*/
|
2017-04-12 23:26:09 +03:00
|
|
|
public function testGetAnnotationParameterMultiple() {
|
2017-01-17 19:11:34 +03:00
|
|
|
$reader = new ControllerMethodReflector();
|
|
|
|
$reader->reflect(
|
2017-04-12 23:26:09 +03:00
|
|
|
__CLASS__,
|
|
|
|
__FUNCTION__
|
2017-01-17 19:11:34 +03:00
|
|
|
);
|
|
|
|
|
2017-04-12 23:26:09 +03:00
|
|
|
$this->assertSame('value1', $reader->getAnnotationParameter('Annotation', 'parameter1'));
|
|
|
|
$this->assertSame('value2', $reader->getAnnotationParameter('Annotation', 'parameter2'));
|
|
|
|
$this->assertSame('value3', $reader->getAnnotationParameter('Annotation', 'parameter3'));
|
2017-01-17 19:11:34 +03:00
|
|
|
}
|
|
|
|
|
2014-05-06 18:29:19 +04:00
|
|
|
/**
|
|
|
|
* @Annotation
|
|
|
|
* @param test
|
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function testReadAnnotationNoLowercase() {
|
2014-05-06 18:29:19 +04:00
|
|
|
$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
|
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function testReadTypeIntAnnotations() {
|
2014-05-06 18:29:19 +04:00
|
|
|
$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
|
|
|
*/
|
2020-04-10 15:19:56 +03:00
|
|
|
public function arguments3($a, float $b, int $c, $d) {
|
|
|
|
}
|
2015-12-23 16:12:37 +03:00
|
|
|
|
|
|
|
/**
|
2015-07-02 12:54:17 +03:00
|
|
|
* @requires PHP 7
|
|
|
|
*/
|
2020-04-09 14:53:40 +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
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function testReadTypeDoubleAnnotations() {
|
2014-05-06 18:29:19 +04:00
|
|
|
$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
|
|
|
|
*/
|
2020-04-09 14:53:40 +03:00
|
|
|
public function testReadTypeWhitespaceAnnotations() {
|
2015-06-21 22:26:57 +03:00
|
|
|
$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
|
|
|
|
2020-04-10 15:19:56 +03: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'
|
|
|
|
);
|
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
$this->assertEquals(['arg' => null, 'arg2' => 'hi'], $reader->getParameters());
|
2014-05-06 18:29:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
public function arguments2($arg) {
|
|
|
|
}
|
2014-05-06 18:29:19 +04:00
|
|
|
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'
|
|
|
|
);
|
|
|
|
|
2020-03-26 11:30:18 +03:00
|
|
|
$this->assertEquals(['arg' => null], $reader->getParameters());
|
2015-01-29 22:33:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|