mirror of
https://github.com/barryvdh/ReflectionDocBlock.git
synced 2026-08-18 01:57:13 +00:00
Refactored PropertyRead and PropertyWrite tags and added tests
This commit is contained in:
committed by
Mike van Riel
parent
a7a4d3ff69
commit
db3f56cfff
@@ -22,7 +22,7 @@ use Webmozart\Assert\Assert;
|
|||||||
/**
|
/**
|
||||||
* Reflection class for a {@}property tag in a Docblock.
|
* Reflection class for a {@}property tag in a Docblock.
|
||||||
*/
|
*/
|
||||||
class Property extends Param
|
class Property extends BaseTag
|
||||||
{
|
{
|
||||||
/** @var string */
|
/** @var string */
|
||||||
protected $name = 'property';
|
protected $name = 'property';
|
||||||
|
|||||||
@@ -1,20 +1,118 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* phpDocumentor
|
* This file is part of phpDocumentor.
|
||||||
*
|
*
|
||||||
* PHP Version 5.3
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
*
|
*
|
||||||
* @author Mike van Riel <mike[email protected]>
|
* @copyright 2010-2015 Mike van Riel<mike@phpdoc.org>
|
||||||
* @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
||||||
* @link http://phpdoc.org
|
* @link http://phpdoc.org
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace phpDocumentor\Reflection\DocBlock\Tags;
|
namespace phpDocumentor\Reflection\DocBlock\Tags;
|
||||||
|
|
||||||
|
use phpDocumentor\Reflection\DocBlock\Description;
|
||||||
|
use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
||||||
|
use phpDocumentor\Reflection\Type;
|
||||||
|
use phpDocumentor\Reflection\TypeResolver;
|
||||||
|
use phpDocumentor\Reflection\Types\Context;
|
||||||
|
use Webmozart\Assert\Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reflection class for a @property-read tag in a Docblock.
|
* Reflection class for a {@}property-read tag in a Docblock.
|
||||||
*/
|
*/
|
||||||
class PropertyRead extends Property
|
class PropertyRead extends BaseTag
|
||||||
{
|
{
|
||||||
|
/** @var string */
|
||||||
|
protected $name = 'property-read';
|
||||||
|
|
||||||
|
/** @var Type */
|
||||||
|
private $type;
|
||||||
|
|
||||||
|
/** @var string */
|
||||||
|
protected $variableName = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $variableName
|
||||||
|
* @param Type $type
|
||||||
|
* @param Description $description
|
||||||
|
*/
|
||||||
|
public function __construct($variableName, Type $type = null, Description $description = null)
|
||||||
|
{
|
||||||
|
Assert::string($variableName);
|
||||||
|
|
||||||
|
$this->variableName = $variableName;
|
||||||
|
$this->type = $type;
|
||||||
|
$this->description = $description;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public static function create(
|
||||||
|
$body,
|
||||||
|
TypeResolver $typeResolver = null,
|
||||||
|
DescriptionFactory $descriptionFactory = null,
|
||||||
|
Context $context = null
|
||||||
|
) {
|
||||||
|
Assert::stringNotEmpty($body);
|
||||||
|
Assert::allNotNull([$typeResolver, $descriptionFactory]);
|
||||||
|
|
||||||
|
$parts = preg_split('/(\s+)/Su', $body, 3, PREG_SPLIT_DELIM_CAPTURE);
|
||||||
|
$type = null;
|
||||||
|
$variableName = '';
|
||||||
|
|
||||||
|
// if the first item that is encountered is not a variable; it is a type
|
||||||
|
if (isset($parts[0]) && (strlen($parts[0]) > 0) && ($parts[0][0] !== '$')) {
|
||||||
|
$type = $typeResolver->resolve(array_shift($parts), $context);
|
||||||
|
array_shift($parts);
|
||||||
|
}
|
||||||
|
|
||||||
|
// if the next item starts with a $ or ...$ it must be the variable name
|
||||||
|
if (isset($parts[0]) && (strlen($parts[0]) > 0) && ($parts[0][0] == '$')) {
|
||||||
|
$variableName = array_shift($parts);
|
||||||
|
array_shift($parts);
|
||||||
|
|
||||||
|
if (substr($variableName, 0, 1) === '$') {
|
||||||
|
$variableName = substr($variableName, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$description = $descriptionFactory->create(implode('', $parts), $context);
|
||||||
|
|
||||||
|
return new static($variableName, $type, $description);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the variable's name.
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getVariableName()
|
||||||
|
{
|
||||||
|
return $this->variableName;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the variable's type or null if unknown.
|
||||||
|
*
|
||||||
|
* @return Type|null
|
||||||
|
*/
|
||||||
|
public function getType()
|
||||||
|
{
|
||||||
|
return $this->type;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a string representation for this tag.
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function __toString()
|
||||||
|
{
|
||||||
|
return ($this->type ? $this->type . ' ' : '')
|
||||||
|
. '$' . $this->variableName
|
||||||
|
. ($this->description ? ' ' . $this->description : '');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,118 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* phpDocumentor
|
* This file is part of phpDocumentor.
|
||||||
*
|
*
|
||||||
* PHP Version 5.3
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
*
|
*
|
||||||
* @author Mike van Riel <mike[email protected]>
|
* @copyright 2010-2015 Mike van Riel<mike@phpdoc.org>
|
||||||
* @copyright 2010-2011 Mike van Riel / Naenius (http://www.naenius.com)
|
|
||||||
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
||||||
* @link http://phpdoc.org
|
* @link http://phpdoc.org
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace phpDocumentor\Reflection\DocBlock\Tags;
|
namespace phpDocumentor\Reflection\DocBlock\Tags;
|
||||||
|
|
||||||
|
use phpDocumentor\Reflection\DocBlock\Description;
|
||||||
|
use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
||||||
|
use phpDocumentor\Reflection\Type;
|
||||||
|
use phpDocumentor\Reflection\TypeResolver;
|
||||||
|
use phpDocumentor\Reflection\Types\Context;
|
||||||
|
use Webmozart\Assert\Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reflection class for a @property-write tag in a Docblock.
|
* Reflection class for a {@}property-write tag in a Docblock.
|
||||||
*/
|
*/
|
||||||
class PropertyWrite extends Property
|
class PropertyWrite extends BaseTag
|
||||||
{
|
{
|
||||||
|
/** @var string */
|
||||||
|
protected $name = 'property-write';
|
||||||
|
|
||||||
|
/** @var Type */
|
||||||
|
private $type;
|
||||||
|
|
||||||
|
/** @var string */
|
||||||
|
protected $variableName = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $variableName
|
||||||
|
* @param Type $type
|
||||||
|
* @param Description $description
|
||||||
|
*/
|
||||||
|
public function __construct($variableName, Type $type = null, Description $description = null)
|
||||||
|
{
|
||||||
|
Assert::string($variableName);
|
||||||
|
|
||||||
|
$this->variableName = $variableName;
|
||||||
|
$this->type = $type;
|
||||||
|
$this->description = $description;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public static function create(
|
||||||
|
$body,
|
||||||
|
TypeResolver $typeResolver = null,
|
||||||
|
DescriptionFactory $descriptionFactory = null,
|
||||||
|
Context $context = null
|
||||||
|
) {
|
||||||
|
Assert::stringNotEmpty($body);
|
||||||
|
Assert::allNotNull([$typeResolver, $descriptionFactory]);
|
||||||
|
|
||||||
|
$parts = preg_split('/(\s+)/Su', $body, 3, PREG_SPLIT_DELIM_CAPTURE);
|
||||||
|
$type = null;
|
||||||
|
$variableName = '';
|
||||||
|
|
||||||
|
// if the first item that is encountered is not a variable; it is a type
|
||||||
|
if (isset($parts[0]) && (strlen($parts[0]) > 0) && ($parts[0][0] !== '$')) {
|
||||||
|
$type = $typeResolver->resolve(array_shift($parts), $context);
|
||||||
|
array_shift($parts);
|
||||||
|
}
|
||||||
|
|
||||||
|
// if the next item starts with a $ or ...$ it must be the variable name
|
||||||
|
if (isset($parts[0]) && (strlen($parts[0]) > 0) && ($parts[0][0] == '$')) {
|
||||||
|
$variableName = array_shift($parts);
|
||||||
|
array_shift($parts);
|
||||||
|
|
||||||
|
if (substr($variableName, 0, 1) === '$') {
|
||||||
|
$variableName = substr($variableName, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$description = $descriptionFactory->create(implode('', $parts), $context);
|
||||||
|
|
||||||
|
return new static($variableName, $type, $description);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the variable's name.
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getVariableName()
|
||||||
|
{
|
||||||
|
return $this->variableName;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the variable's type or null if unknown.
|
||||||
|
*
|
||||||
|
* @return Type|null
|
||||||
|
*/
|
||||||
|
public function getType()
|
||||||
|
{
|
||||||
|
return $this->type;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a string representation for this tag.
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function __toString()
|
||||||
|
{
|
||||||
|
return ($this->type ? $this->type . ' ' : '')
|
||||||
|
. '$' . $this->variableName
|
||||||
|
. ($this->description ? ' ' . $this->description : '');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,200 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* This file is part of phpDocumentor.
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*
|
||||||
|
* @copyright 2010-2015 Mike van Riel<[email protected]>
|
||||||
|
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
||||||
|
* @link http://phpdoc.org
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace phpDocumentor\Reflection\DocBlock\Tags;
|
||||||
|
|
||||||
|
use Mockery as m;
|
||||||
|
use phpDocumentor\Reflection\DocBlock\Description;
|
||||||
|
use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
||||||
|
use phpDocumentor\Reflection\TypeResolver;
|
||||||
|
use phpDocumentor\Reflection\Types\Context;
|
||||||
|
use phpDocumentor\Reflection\Types\String_;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @coversDefaultClass \phpDocumentor\Reflection\DocBlock\Tags\PropertyRead
|
||||||
|
* @covers ::<private>
|
||||||
|
*/
|
||||||
|
class PropertyReadTest extends \PHPUnit_Framework_TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyRead::__construct
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
|
* @covers \phpDocumentor\Reflection\DocBlock\Tags\BaseTag::getName
|
||||||
|
*/
|
||||||
|
public function testIfCorrectTagNameIsReturned()
|
||||||
|
{
|
||||||
|
$fixture = new PropertyRead('myProperty', null, new Description('Description'));
|
||||||
|
|
||||||
|
$this->assertSame('property-read', $fixture->getName());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyRead::__construct
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyRead::__toString
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
|
* @covers \phpDocumentor\Reflection\DocBlock\Tags\BaseTag::render
|
||||||
|
*/
|
||||||
|
public function testIfTagCanBeRenderedUsingDefaultFormatter()
|
||||||
|
{
|
||||||
|
$fixture = new PropertyRead('myProperty', new String_(), new Description('Description'));
|
||||||
|
$this->assertSame('string $myProperty Description', $fixture->render());
|
||||||
|
|
||||||
|
$fixture = new PropertyRead('myProperty', null, new Description('Description'));
|
||||||
|
$this->assertSame('$myProperty Description', $fixture->render());
|
||||||
|
|
||||||
|
$fixture = new PropertyRead('myProperty');
|
||||||
|
$this->assertSame('$myProperty', $fixture->render());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyRead::__construct
|
||||||
|
* @covers \phpDocumentor\Reflection\DocBlock\Tags\BaseTag::render
|
||||||
|
*/
|
||||||
|
public function testIfTagCanBeRenderedUsingSpecificFormatter()
|
||||||
|
{
|
||||||
|
$fixture = new PropertyRead('myProperty');
|
||||||
|
|
||||||
|
$formatter = m::mock(Formatter::class);
|
||||||
|
$formatter->shouldReceive('format')->with($fixture)->andReturn('Rendered output');
|
||||||
|
|
||||||
|
$this->assertSame('Rendered output', $fixture->render($formatter));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::__construct
|
||||||
|
* @covers ::getVariableName
|
||||||
|
*/
|
||||||
|
public function testHasVariableName()
|
||||||
|
{
|
||||||
|
$expected = 'myProperty';
|
||||||
|
|
||||||
|
$fixture = new PropertyRead($expected);
|
||||||
|
|
||||||
|
$this->assertSame($expected, $fixture->getVariableName());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::__construct
|
||||||
|
* @covers ::getType
|
||||||
|
*/
|
||||||
|
public function testHasType()
|
||||||
|
{
|
||||||
|
$expected = new String_();
|
||||||
|
|
||||||
|
$fixture = new PropertyRead('myProperty', $expected);
|
||||||
|
|
||||||
|
$this->assertSame($expected, $fixture->getType());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::__construct
|
||||||
|
* @covers \phpDocumentor\Reflection\DocBlock\Tags\BaseTag::getDescription
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
|
*/
|
||||||
|
public function testHasDescription()
|
||||||
|
{
|
||||||
|
$expected = new Description('Description');
|
||||||
|
|
||||||
|
$fixture = new PropertyRead('1.0', null, $expected);
|
||||||
|
|
||||||
|
$this->assertSame($expected, $fixture->getDescription());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::__construct
|
||||||
|
* @covers ::__toString
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
|
* @uses \phpDocumentor\Reflection\Types\String_
|
||||||
|
*/
|
||||||
|
public function testStringRepresentationIsReturned()
|
||||||
|
{
|
||||||
|
$fixture = new PropertyRead('myProperty', new String_(), new Description('Description'));
|
||||||
|
|
||||||
|
$this->assertSame('string $myProperty Description', (string)$fixture);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::create
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyRead::<public>
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\DescriptionFactory
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
|
* @uses \phpDocumentor\Reflection\Types\Context
|
||||||
|
*/
|
||||||
|
public function testFactoryMethod()
|
||||||
|
{
|
||||||
|
$typeResolver = new TypeResolver();
|
||||||
|
$descriptionFactory = m::mock(DescriptionFactory::class);
|
||||||
|
$context = new Context('');
|
||||||
|
|
||||||
|
$description = new Description('My Description');
|
||||||
|
$descriptionFactory->shouldReceive('create')->with('My Description', $context)->andReturn($description);
|
||||||
|
|
||||||
|
$fixture = PropertyRead::create('string $myProperty My Description', $typeResolver, $descriptionFactory,
|
||||||
|
$context);
|
||||||
|
|
||||||
|
$this->assertSame('string $myProperty My Description', (string)$fixture);
|
||||||
|
$this->assertSame('myProperty', $fixture->getVariableName());
|
||||||
|
$this->assertInstanceOf(String_::class, $fixture->getType());
|
||||||
|
$this->assertSame($description, $fixture->getDescription());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::create
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyRead::<public>
|
||||||
|
* @uses \phpDocumentor\Reflection\TypeResolver
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\DescriptionFactory
|
||||||
|
* @expectedException \InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testFactoryMethodFailsIfEmptyBodyIsGiven()
|
||||||
|
{
|
||||||
|
$descriptionFactory = m::mock(DescriptionFactory::class);
|
||||||
|
PropertyRead::create('', new TypeResolver(), $descriptionFactory);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::create
|
||||||
|
* @expectedException \InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testFactoryMethodFailsIfBodyIsNotString()
|
||||||
|
{
|
||||||
|
PropertyRead::create([]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::create
|
||||||
|
* @expectedException \InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testFactoryMethodFailsIfResolverIsNull()
|
||||||
|
{
|
||||||
|
PropertyRead::create('body');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::create
|
||||||
|
* @uses \phpDocumentor\Reflection\TypeResolver
|
||||||
|
* @expectedException \InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testFactoryMethodFailsIfDescriptionFactoryIsNull()
|
||||||
|
{
|
||||||
|
PropertyRead::create('body', new TypeResolver());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::__construct
|
||||||
|
* @expectedException \InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testExceptionIsThrownIfVariableNameIsNotString()
|
||||||
|
{
|
||||||
|
new PropertyRead([]);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -112,7 +112,6 @@ class PropertyTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers ::__construct
|
* @covers ::__construct
|
||||||
* @covers ::isVariadic
|
|
||||||
* @covers ::__toString
|
* @covers ::__toString
|
||||||
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
* @uses \phpDocumentor\Reflection\Types\String_
|
* @uses \phpDocumentor\Reflection\Types\String_
|
||||||
|
|||||||
@@ -0,0 +1,200 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* This file is part of phpDocumentor.
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*
|
||||||
|
* @copyright 2010-2015 Mike van Riel<[email protected]>
|
||||||
|
* @license http://www.opensource.org/licenses/mit-license.php MIT
|
||||||
|
* @link http://phpdoc.org
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace phpDocumentor\Reflection\DocBlock\Tags;
|
||||||
|
|
||||||
|
use Mockery as m;
|
||||||
|
use phpDocumentor\Reflection\DocBlock\Description;
|
||||||
|
use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
||||||
|
use phpDocumentor\Reflection\TypeResolver;
|
||||||
|
use phpDocumentor\Reflection\Types\Context;
|
||||||
|
use phpDocumentor\Reflection\Types\String_;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @coversDefaultClass \phpDocumentor\Reflection\DocBlock\Tags\PropertyWrite
|
||||||
|
* @covers ::<private>
|
||||||
|
*/
|
||||||
|
class PropertyWriteTest extends \PHPUnit_Framework_TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyWrite::__construct
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
|
* @covers \phpDocumentor\Reflection\DocBlock\Tags\BaseTag::getName
|
||||||
|
*/
|
||||||
|
public function testIfCorrectTagNameIsReturned()
|
||||||
|
{
|
||||||
|
$fixture = new PropertyWrite('myProperty', null, new Description('Description'));
|
||||||
|
|
||||||
|
$this->assertSame('property-write', $fixture->getName());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyWrite::__construct
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyWrite::__toString
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
|
* @covers \phpDocumentor\Reflection\DocBlock\Tags\BaseTag::render
|
||||||
|
*/
|
||||||
|
public function testIfTagCanBeRenderedUsingDefaultFormatter()
|
||||||
|
{
|
||||||
|
$fixture = new PropertyWrite('myProperty', new String_(), new Description('Description'));
|
||||||
|
$this->assertSame('string $myProperty Description', $fixture->render());
|
||||||
|
|
||||||
|
$fixture = new PropertyWrite('myProperty', null, new Description('Description'));
|
||||||
|
$this->assertSame('$myProperty Description', $fixture->render());
|
||||||
|
|
||||||
|
$fixture = new PropertyWrite('myProperty');
|
||||||
|
$this->assertSame('$myProperty', $fixture->render());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyWrite::__construct
|
||||||
|
* @covers \phpDocumentor\Reflection\DocBlock\Tags\BaseTag::render
|
||||||
|
*/
|
||||||
|
public function testIfTagCanBeRenderedUsingSpecificFormatter()
|
||||||
|
{
|
||||||
|
$fixture = new PropertyWrite('myProperty');
|
||||||
|
|
||||||
|
$formatter = m::mock(Formatter::class);
|
||||||
|
$formatter->shouldReceive('format')->with($fixture)->andReturn('Rendered output');
|
||||||
|
|
||||||
|
$this->assertSame('Rendered output', $fixture->render($formatter));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::__construct
|
||||||
|
* @covers ::getVariableName
|
||||||
|
*/
|
||||||
|
public function testHasVariableName()
|
||||||
|
{
|
||||||
|
$expected = 'myProperty';
|
||||||
|
|
||||||
|
$fixture = new PropertyWrite($expected);
|
||||||
|
|
||||||
|
$this->assertSame($expected, $fixture->getVariableName());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::__construct
|
||||||
|
* @covers ::getType
|
||||||
|
*/
|
||||||
|
public function testHasType()
|
||||||
|
{
|
||||||
|
$expected = new String_();
|
||||||
|
|
||||||
|
$fixture = new PropertyWrite('myProperty', $expected);
|
||||||
|
|
||||||
|
$this->assertSame($expected, $fixture->getType());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::__construct
|
||||||
|
* @covers \phpDocumentor\Reflection\DocBlock\Tags\BaseTag::getDescription
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
|
*/
|
||||||
|
public function testHasDescription()
|
||||||
|
{
|
||||||
|
$expected = new Description('Description');
|
||||||
|
|
||||||
|
$fixture = new PropertyWrite('1.0', null, $expected);
|
||||||
|
|
||||||
|
$this->assertSame($expected, $fixture->getDescription());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::__construct
|
||||||
|
* @covers ::__toString
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
|
* @uses \phpDocumentor\Reflection\Types\String_
|
||||||
|
*/
|
||||||
|
public function testStringRepresentationIsReturned()
|
||||||
|
{
|
||||||
|
$fixture = new PropertyWrite('myProperty', new String_(), new Description('Description'));
|
||||||
|
|
||||||
|
$this->assertSame('string $myProperty Description', (string)$fixture);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::create
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyWrite::<public>
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\DescriptionFactory
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Description
|
||||||
|
* @uses \phpDocumentor\Reflection\Types\Context
|
||||||
|
*/
|
||||||
|
public function testFactoryMethod()
|
||||||
|
{
|
||||||
|
$typeResolver = new TypeResolver();
|
||||||
|
$descriptionFactory = m::mock(DescriptionFactory::class);
|
||||||
|
$context = new Context('');
|
||||||
|
|
||||||
|
$description = new Description('My Description');
|
||||||
|
$descriptionFactory->shouldReceive('create')->with('My Description', $context)->andReturn($description);
|
||||||
|
|
||||||
|
$fixture = PropertyWrite::create('string $myProperty My Description', $typeResolver, $descriptionFactory,
|
||||||
|
$context);
|
||||||
|
|
||||||
|
$this->assertSame('string $myProperty My Description', (string)$fixture);
|
||||||
|
$this->assertSame('myProperty', $fixture->getVariableName());
|
||||||
|
$this->assertInstanceOf(String_::class, $fixture->getType());
|
||||||
|
$this->assertSame($description, $fixture->getDescription());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::create
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\Tags\PropertyWrite::<public>
|
||||||
|
* @uses \phpDocumentor\Reflection\TypeResolver
|
||||||
|
* @uses \phpDocumentor\Reflection\DocBlock\DescriptionFactory
|
||||||
|
* @expectedException \InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testFactoryMethodFailsIfEmptyBodyIsGiven()
|
||||||
|
{
|
||||||
|
$descriptionFactory = m::mock(DescriptionFactory::class);
|
||||||
|
PropertyWrite::create('', new TypeResolver(), $descriptionFactory);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::create
|
||||||
|
* @expectedException \InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testFactoryMethodFailsIfBodyIsNotString()
|
||||||
|
{
|
||||||
|
PropertyWrite::create([]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::create
|
||||||
|
* @expectedException \InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testFactoryMethodFailsIfResolverIsNull()
|
||||||
|
{
|
||||||
|
PropertyWrite::create('body');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::create
|
||||||
|
* @uses \phpDocumentor\Reflection\TypeResolver
|
||||||
|
* @expectedException \InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testFactoryMethodFailsIfDescriptionFactoryIsNull()
|
||||||
|
{
|
||||||
|
PropertyWrite::create('body', new TypeResolver());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers ::__construct
|
||||||
|
* @expectedException \InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testExceptionIsThrownIfVariableNameIsNotString()
|
||||||
|
{
|
||||||
|
new PropertyWrite([]);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user