Esempio n. 1
0
 /**
  * @param \Prophecy\Doubler\Generator\Node\ClassNode $node
  */
 function it_discovers_api_using_phpdoc_from_extended_parent_interfaces($node)
 {
     $node->getParentClass()->willReturn('spec\\Prophecy\\Doubler\\ClassPatch\\MagicalApiImplementedExtended');
     $node->getInterfaces()->willReturn(array());
     $node->addMethod(new MethodNode('implementedMethod'))->shouldBeCalled();
     $this->apply($node);
 }
Esempio n. 2
0
 /**
  * Supports nodetree, that implement Traversable, but not Iterator or IteratorAggregate.
  *
  * @param ClassNode $node
  *
  * @return bool
  */
 public function supports(ClassNode $node)
 {
     if (in_array('Iterator', $node->getInterfaces())) {
         return FALSE;
     }
     if (in_array('IteratorAggregate', $node->getInterfaces())) {
         return FALSE;
     }
     foreach ($node->getInterfaces() as $interface) {
         if ('Traversable' !== $interface && !is_subclass_of($interface, 'Traversable')) {
             continue;
         }
         if ('Iterator' === $interface || is_subclass_of($interface, 'Iterator')) {
             continue;
         }
         if ('IteratorAggregate' === $interface || is_subclass_of($interface, 'IteratorAggregate')) {
             continue;
         }
         return TRUE;
     }
     return FALSE;
 }
Esempio n. 3
0
 /**
  * Discover Magical API
  *
  * @param ClassNode $node
  */
 public function apply(ClassNode $node)
 {
     $types = array_filter($node->getInterfaces(), function ($interface) {
         return 0 !== strpos($interface, 'Prophecy\\');
     });
     $types[] = $node->getParentClass();
     foreach ($types as $type) {
         $reflectionClass = new \ReflectionClass($type);
         $tagList = $this->tagRetriever->getTagList($reflectionClass);
         foreach ($tagList as $tag) {
             $methodName = $tag->getMethodName();
             if (empty($methodName)) {
                 continue;
             }
             if (!$reflectionClass->hasMethod($methodName)) {
                 $methodNode = new MethodNode($methodName);
                 $methodNode->setStatic($tag->isStatic());
                 $node->addMethod($methodNode);
             }
         }
     }
 }
 /**
  * @param \Prophecy\Doubler\Generator\Node\ClassNode $node
  */
 function it_does_not_support_class_that_implements_IteratorAggregate($node)
 {
     $node->getInterfaces()->willReturn(array('Traversable', 'IteratorAggregate'));
     $this->supports($node)->shouldReturn(false);
 }
    /**
     * @param \Prophecy\Doubler\Generator\Node\ClassNode $class
     */
    function it_wraps_class_in_namespace_if_it_is_namespaced($class)
    {
        $class->getParentClass()->willReturn('stdClass');
        $class->getInterfaces()->willReturn(array('Prophecy\\Doubler\\Generator\\MirroredInterface'));
        $class->getProperties()->willReturn(array());
        $class->getMethods()->willReturn(array());
        $code = $this->generate('My\\Awesome\\CustomClass', $class);
        $expected = <<<'PHP'
namespace My\Awesome {
class CustomClass extends \stdClass implements \Prophecy\Doubler\Generator\MirroredInterface {


}
}
PHP;
        $expected = strtr($expected, array("\r\n" => "\n", "\r" => "\n"));
        $code->shouldBe($expected);
    }