Annotations.case.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. <?php
  2. /**
  3. * TEST CASE: Sample Annotations
  4. */
  5. use mindplay\annotations\Annotation;
  6. use mindplay\annotations\IAnnotationParser;
  7. use mindplay\annotations\AnnotationException;
  8. use mindplay\annotations\standard\TypeAnnotation;
  9. /**
  10. * @usage('class'=>true, 'property'=>true, 'method'=>true, 'inherited'=>true, 'multiple'=>true)
  11. */
  12. class NoteAnnotation extends Annotation
  13. {
  14. public $note;
  15. public function initAnnotation(array $params)
  16. {
  17. $this->map($params, array('note'));
  18. if (!isset($this->note)) {
  19. throw new AnnotationException("NoteAnnotation requires a note property");
  20. }
  21. }
  22. }
  23. /**
  24. * @usage
  25. */
  26. class UselessAnnotation extends Annotation
  27. {
  28. }
  29. /**
  30. * @usage('class'=>true)
  31. */
  32. class DocAnnotation extends Annotation implements IAnnotationParser
  33. {
  34. public $value;
  35. public static function parseAnnotation($value)
  36. {
  37. return array('value' => intval($value));
  38. }
  39. }
  40. /**
  41. * @usage('property'=>true, 'multiple'=>false)
  42. */
  43. class SingleAnnotation extends Annotation
  44. {
  45. public $test;
  46. }
  47. /**
  48. * @usage('property'=>true, 'multiple'=>false, 'inherited'=>true)
  49. */
  50. class OverrideAnnotation extends Annotation
  51. {
  52. public $test;
  53. }
  54. /**
  55. * @usage('method'=>true)
  56. */
  57. class SampleAnnotation extends Annotation
  58. {
  59. public $test;
  60. }
  61. /**
  62. * @usage('class'=>true, 'inherited'=>false)
  63. */
  64. class UninheritableAnnotation extends Annotation
  65. {
  66. public $test;
  67. }
  68. class InheritUsageAnnotation extends SampleAnnotation
  69. {
  70. }
  71. /**
  72. * @Doc
  73. * @usage('class'=>true)
  74. */
  75. class UsageAndNonUsageAnnotation extends Annotation
  76. {
  77. }
  78. /**
  79. * @Doc
  80. */
  81. class SingleNonUsageAnnotation extends Annotation
  82. {
  83. }
  84. class WrongInterfaceAnnotation
  85. {
  86. }
  87. class TypeAwareAnnotation extends TypeAnnotation
  88. {
  89. }
  90. class NoUsageAnnotation
  91. {
  92. }
  93. /**
  94. * TEST CASE: Sample Classes
  95. *
  96. * @doc 1234 (this is a sample PHP-DOC style annotation)
  97. */
  98. /**
  99. * @note("Applied to the TestBase class")
  100. * @uninheritable('test'=>'Test cannot inherit this annotation')
  101. */
  102. class TestBase
  103. {
  104. /**
  105. * @note("Applied to a TestBase member")
  106. */
  107. protected $sample = 'test';
  108. /**
  109. * @single('test'=>'one is okay')
  110. * @single('test'=>'two is one too many')
  111. */
  112. protected $only_one;
  113. /**
  114. * @override('test'=>'This will be overridden')
  115. */
  116. private $override_me;
  117. /**
  118. * @note("First note annotation")
  119. * @override('test'=>'This annotation should get filtered')
  120. */
  121. private $mixed;
  122. /**
  123. * @note("Applied to a hidden TestBase method")
  124. * @sample('test'=>'This should get filtered')
  125. */
  126. public function run()
  127. {
  128. }
  129. }
  130. /**
  131. * A sample class with NoteAttributes applied to the source code:
  132. *
  133. * @Note(
  134. * "Applied to the Test class (a)"
  135. * )
  136. *
  137. * @Note("And another one for good measure (b)")
  138. */
  139. class Test extends TestBase
  140. {
  141. /**
  142. * @Note("Applied to a property")
  143. */
  144. public $hello = 'World';
  145. /**
  146. * @Override('test'=>'This annotation overrides the one in TestBase')
  147. */
  148. private $override_me;
  149. /**
  150. * @Note("Second note annotation")
  151. */
  152. private $mixed;
  153. /**
  154. * @Note("First Note Applied to the run() method")
  155. * @Note("And a second Note")
  156. */
  157. public function run()
  158. {
  159. }
  160. }
  161. /**
  162. * @Note('class-first')
  163. */
  164. class FirstClass
  165. {
  166. /**
  167. * @var string
  168. * @Note('prop-first')
  169. */
  170. protected $prop;
  171. /**
  172. * @Note('method-first')
  173. */
  174. protected function someMethod()
  175. {
  176. }
  177. }
  178. /**
  179. * @Note('class-second')
  180. * @stop
  181. */
  182. class SecondClass extends FirstClass
  183. {
  184. /**
  185. * @var string
  186. * @Note('prop-second')
  187. */
  188. protected $prop;
  189. /**
  190. * @Note('method-second')
  191. */
  192. protected function someMethod()
  193. {
  194. }
  195. }
  196. /**
  197. * @Note('class-third')
  198. */
  199. class ThirdClass extends SecondClass
  200. {
  201. /**
  202. * @var string
  203. * @Note('prop-third')
  204. */
  205. protected $prop;
  206. /**
  207. * @Note('method-third')
  208. */
  209. protected function someMethod()
  210. {
  211. }
  212. }
  213. /**
  214. * Test that using an core class will not break parsing.
  215. * https://github.com/php-annotations/php-annotations/issues/59
  216. *
  217. * @Note("An example class annotation.")
  218. */
  219. class TestClassExtendingCore extends ReflectionClass
  220. {
  221. }
  222. /**
  223. * Test that using an extension class will not break parsing.
  224. * https://github.com/php-annotations/php-annotations/issues/59
  225. *
  226. * @Note("An example class annotation.")
  227. */
  228. class TestClassExtendingExtension extends SplFileObject
  229. {
  230. }
  231. /**
  232. * @Note("Base note.")
  233. */
  234. class TestClassExtendingUserDefinedBase
  235. {
  236. }
  237. /**
  238. * Test that using an user defined class will not break parsing.
  239. * https://github.com/php-annotations/php-annotations/issues/59
  240. *
  241. * @Note("Note of child.")
  242. */
  243. class TestClassExtendingUserDefined extends TestClassExtendingUserDefinedBase
  244. {
  245. }
  246. /**
  247. * @WrongInterface
  248. */
  249. class TestClassWrongInterface
  250. {
  251. }
  252. class TestClassFileAwareAnnotation
  253. {
  254. /** @TypeAware IAnnotationParser */
  255. public $prop;
  256. }
  257. interface TestInterface
  258. {
  259. }
  260. class BrokenParamAnnotationClass
  261. {
  262. /**
  263. * @param $paramName
  264. */
  265. protected function brokenParamAnnotation($paramName)
  266. {
  267. }
  268. }