mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 03:07:58 +00:00 
			
		
		
		
	Optimized code for FormatFunctionTest
This commit is contained in:
		@@ -4,43 +4,59 @@ namespace Tests\Functional;
 | 
			
		||||
 | 
			
		||||
use Symfony\Component\HttpFoundation\Request;
 | 
			
		||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
 | 
			
		||||
use Symfony\Bundle\FrameworkBundle\Client;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @author kevinfrantz
 | 
			
		||||
 */
 | 
			
		||||
class FormatFunctionTest extends WebTestCase
 | 
			
		||||
{
 | 
			
		||||
    /**
 | 
			
		||||
     * @var Client
 | 
			
		||||
     */
 | 
			
		||||
    private $client;
 | 
			
		||||
 | 
			
		||||
    public function setUp(): void
 | 
			
		||||
    {
 | 
			
		||||
        $this->client = static::createClient();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function testHomepage(): void
 | 
			
		||||
    {
 | 
			
		||||
        $client = static::createClient();
 | 
			
		||||
        $client->request(Request::METHOD_GET, 'api/rest/source/HOMEPAGE');
 | 
			
		||||
        $this->assertEquals(200, $client->getResponse()->getStatusCode());
 | 
			
		||||
        $this->assertContains('<html', $client->getResponse()->getContent());
 | 
			
		||||
        $this->client->request(Request::METHOD_GET, 'api/rest/source/HOMEPAGE');
 | 
			
		||||
        $this->assertEquals(200, $this->client->getResponse()
 | 
			
		||||
            ->getStatusCode());
 | 
			
		||||
        $this->assertJson($this->client->getResponse()
 | 
			
		||||
            ->getContent());
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function testHomepageWithHTML(): void
 | 
			
		||||
    {
 | 
			
		||||
        $client = static::createClient();
 | 
			
		||||
        $client->request(Request::METHOD_GET, 'api/rest/source/HOMEPAGE.html');
 | 
			
		||||
        $this->assertEquals(200, $client->getResponse()->getStatusCode());
 | 
			
		||||
        $this->assertContains('<html', $client->getResponse()->getContent());
 | 
			
		||||
        $this->client->request(Request::METHOD_GET, 'api/rest/source/HOMEPAGE.html');
 | 
			
		||||
        $this->assertEquals(200, $this->client->getResponse()
 | 
			
		||||
            ->getStatusCode());
 | 
			
		||||
        $this->assertContains('<html', $this->client->getResponse()
 | 
			
		||||
            ->getContent());
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function testHomepageWithJSON(): void
 | 
			
		||||
    {
 | 
			
		||||
        $client = static::createClient();
 | 
			
		||||
        $client->request(Request::METHOD_GET, 'api/rest/source/HOMEPAGE.json');
 | 
			
		||||
        echo $client->getResponse()->getContent();
 | 
			
		||||
        $this->assertEquals(200, $client->getResponse()->getStatusCode());
 | 
			
		||||
//         $this->assertContains('<html', $client->getResponse()->getContent());
 | 
			
		||||
        $this->client->request(Request::METHOD_GET, 'api/rest/source/HOMEPAGE.json');
 | 
			
		||||
        $this->assertEquals(200, $this->client->getResponse()
 | 
			
		||||
            ->getStatusCode());
 | 
			
		||||
        $this->assertJson($this->client->getResponse()
 | 
			
		||||
            ->getContent());
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function testHomepageWithXML(): void
 | 
			
		||||
    {
 | 
			
		||||
        $client = static::createClient();
 | 
			
		||||
        $client->request(Request::METHOD_GET, 'api/rest/source/HOMEPAGE.xml');
 | 
			
		||||
        echo $client->getResponse()->getContent();
 | 
			
		||||
        $this->assertEquals(200, $client->getResponse()->getStatusCode());
 | 
			
		||||
        //         $this->assertContains('<html', $client->getResponse()->getContent());
 | 
			
		||||
        $this->client->request(Request::METHOD_GET, 'api/rest/source/HOMEPAGE.xml');
 | 
			
		||||
        $this->assertEquals(200, $this->client->getResponse()
 | 
			
		||||
            ->getStatusCode());
 | 
			
		||||
        $content = $this->client->getResponse()->getContent();
 | 
			
		||||
        $xml = new \XMLReader();
 | 
			
		||||
        $xml->XML($content);
 | 
			
		||||
        $xml->setParserProperty(\XMLReader::VALIDATE, true);
 | 
			
		||||
        $this->assertTrue($xml->isValid());
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -34,4 +34,15 @@ class LawTest extends TestCase
 | 
			
		||||
        $this->assertNull($this->law->setRights($rights));
 | 
			
		||||
        $this->assertEquals($right, $this->law->getRights()->get(0));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * Implemented to debug where ReflectionException "Property Infinito\\Entity\\Meta\\Law::$relation does not exist" is coming from.
 | 
			
		||||
     */
 | 
			
		||||
    public function testRelationNotSet(): void
 | 
			
		||||
    {
 | 
			
		||||
        $reflectionClass = new \ReflectionClass($this->law);
 | 
			
		||||
        $this->assertFalse($reflectionClass->hasMethod('getRelation'));
 | 
			
		||||
        $this->assertFalse($reflectionClass->hasMethod('setRelation'));
 | 
			
		||||
        $this->assertFalse($reflectionClass->hasProperty('relation'));
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user