mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
210 lines
6.1 KiB
PHP
210 lines
6.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the NelmioApiDocBundle.
|
|
*
|
|
* (c) Nelmio <hello@nelm.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Nelmio\ApiDocBundle\Tests\Annotation;
|
|
|
|
use Nelmio\ApiDocBundle\Annotation\ApiDoc;
|
|
use Nelmio\ApiDocBundle\Tests\TestCase;
|
|
|
|
class ApiDocTest extends TestCase
|
|
{
|
|
public function testConstructWithoutData()
|
|
{
|
|
$data = array();
|
|
|
|
$annot = new ApiDoc($data);
|
|
$array = $annot->toArray();
|
|
|
|
$this->assertTrue(is_array($array));
|
|
$this->assertFalse(isset($array['filters']));
|
|
$this->assertFalse($annot->isResource());
|
|
$this->assertFalse(isset($array['description']));
|
|
$this->assertNull($annot->getInput());
|
|
$this->assertFalse($array['authentication']);
|
|
}
|
|
|
|
public function testConstructWithInvalidData()
|
|
{
|
|
$data = array(
|
|
'unknown' => 'foo',
|
|
'array' => array('bar' => 'bar'),
|
|
);
|
|
|
|
$annot = new ApiDoc($data);
|
|
$array = $annot->toArray();
|
|
|
|
$this->assertTrue(is_array($array));
|
|
$this->assertFalse(isset($array['filters']));
|
|
$this->assertFalse($annot->isResource());
|
|
$this->assertFalse(isset($array['description']));
|
|
$this->assertNull($annot->getInput());
|
|
}
|
|
|
|
public function testConstruct()
|
|
{
|
|
$data = array(
|
|
'description' => 'Heya',
|
|
);
|
|
|
|
$annot = new ApiDoc($data);
|
|
$array = $annot->toArray();
|
|
|
|
$this->assertTrue(is_array($array));
|
|
$this->assertFalse(isset($array['filters']));
|
|
$this->assertFalse($annot->isResource());
|
|
$this->assertEquals($data['description'], $array['description']);
|
|
$this->assertNull($annot->getInput());
|
|
}
|
|
|
|
public function testConstructDefinesAFormType()
|
|
{
|
|
$data = array(
|
|
'description' => 'Heya',
|
|
'input' => 'My\Form\Type',
|
|
);
|
|
|
|
$annot = new ApiDoc($data);
|
|
$array = $annot->toArray();
|
|
|
|
$this->assertTrue(is_array($array));
|
|
$this->assertFalse(isset($array['filters']));
|
|
$this->assertFalse($annot->isResource());
|
|
$this->assertEquals($data['description'], $array['description']);
|
|
$this->assertEquals($data['input'], $annot->getInput());
|
|
}
|
|
|
|
public function testConstructMethodIsResource()
|
|
{
|
|
$data = array(
|
|
'resource' => true,
|
|
'description' => 'Heya',
|
|
'input' => 'My\Form\Type',
|
|
);
|
|
|
|
$annot = new ApiDoc($data);
|
|
$array = $annot->toArray();
|
|
|
|
$this->assertTrue(is_array($array));
|
|
$this->assertFalse(isset($array['filters']));
|
|
$this->assertTrue($annot->isResource());
|
|
$this->assertEquals($data['description'], $array['description']);
|
|
$this->assertEquals($data['input'], $annot->getInput());
|
|
}
|
|
|
|
public function testConstructMethodResourceIsFalse()
|
|
{
|
|
$data = array(
|
|
'resource' => false,
|
|
'description' => 'Heya',
|
|
'input' => 'My\Form\Type',
|
|
);
|
|
|
|
$annot = new ApiDoc($data);
|
|
$array = $annot->toArray();
|
|
|
|
$this->assertTrue(is_array($array));
|
|
$this->assertFalse(isset($array['filters']));
|
|
$this->assertFalse($annot->isResource());
|
|
$this->assertEquals($data['description'], $array['description']);
|
|
$this->assertEquals($data['input'], $annot->getInput());
|
|
}
|
|
|
|
public function testConstructMethodHasFilters()
|
|
{
|
|
$data = array(
|
|
'resource' => true,
|
|
'description' => 'Heya',
|
|
'filters' => array(
|
|
array('name' => 'a-filter'),
|
|
),
|
|
);
|
|
|
|
$annot = new ApiDoc($data);
|
|
$array = $annot->toArray();
|
|
|
|
$this->assertTrue(is_array($array));
|
|
$this->assertTrue(is_array($array['filters']));
|
|
$this->assertCount(1, $array['filters']);
|
|
$this->assertEquals(array('a-filter' => array()), $array['filters']);
|
|
$this->assertTrue($annot->isResource());
|
|
$this->assertEquals($data['description'], $array['description']);
|
|
$this->assertNull($annot->getInput());
|
|
}
|
|
|
|
/**
|
|
* @expectedException \InvalidArgumentException
|
|
*/
|
|
public function testConstructMethodHasFiltersWithoutName()
|
|
{
|
|
$data = array(
|
|
'description' => 'Heya',
|
|
'filters' => array(
|
|
array('parameter' => 'foo'),
|
|
),
|
|
);
|
|
|
|
$annot = new ApiDoc($data);
|
|
}
|
|
|
|
public function testConstructNoFiltersIfFormTypeDefined()
|
|
{
|
|
$data = array(
|
|
'resource' => true,
|
|
'description' => 'Heya',
|
|
'input' => 'My\Form\Type',
|
|
'filters' => array(
|
|
array('name' => 'a-filter'),
|
|
),
|
|
);
|
|
|
|
$annot = new ApiDoc($data);
|
|
$array = $annot->toArray();
|
|
|
|
$this->assertTrue(is_array($array));
|
|
$this->assertFalse(isset($array['filters']));
|
|
$this->assertTrue($annot->isResource());
|
|
$this->assertEquals($data['description'], $array['description']);
|
|
$this->assertEquals($data['input'], $annot->getInput());
|
|
}
|
|
|
|
public function testConstructWithHTTPResponseCodes()
|
|
{
|
|
$data = array(
|
|
'description' => 'Heya',
|
|
'statusCodes' => array(
|
|
200 => "Returned when successful",
|
|
403 => "Returned when the user is not authorized"
|
|
)
|
|
);
|
|
|
|
$annot = new ApiDoc($data);
|
|
$array = $annot->toArray();
|
|
|
|
$this->assertTrue(is_array($array));
|
|
$this->assertTrue(is_array($array['statusCodes']));
|
|
foreach ($data['statusCodes'] as $code => $message) {
|
|
$this->assertEquals($array['statusCodes'][$code], $message);
|
|
}
|
|
}
|
|
|
|
public function testConstructWithAuthentication()
|
|
{
|
|
$data = array(
|
|
'authentication' => true
|
|
);
|
|
|
|
$annot = new ApiDoc($data);
|
|
$array = $annot->toArray();
|
|
|
|
$this->assertTrue($array['authentication']);
|
|
}
|
|
}
|