79 lines
1.8 KiB
PHP
79 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Silex framework.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* This source file is subject to the MIT license that is bundled
|
|
* with this source code in the file LICENSE.
|
|
*/
|
|
|
|
namespace Silex\Tests;
|
|
|
|
use Silex\Application;
|
|
use Silex\WebTestCase;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
/**
|
|
* Functional test cases.
|
|
*
|
|
* @author Igor Wiedler <igor@wiedler.ch>
|
|
*/
|
|
class WebTestCaseTest extends WebTestCase
|
|
{
|
|
public function createApplication()
|
|
{
|
|
$app = new Application();
|
|
|
|
$app->match('/hello', function () {
|
|
return 'world';
|
|
});
|
|
|
|
$app->match('/html', function () {
|
|
return '<h1>title</h1>';
|
|
});
|
|
|
|
$app->match('/server', function (Request $request) use ($app) {
|
|
$user = $request->server->get('PHP_AUTH_USER');
|
|
$pass = $request->server->get('PHP_AUTH_PW');
|
|
|
|
return "<h1>$user:$pass</h1>";
|
|
});
|
|
|
|
return $app;
|
|
}
|
|
|
|
public function testGetHello()
|
|
{
|
|
$client = $this->createClient();
|
|
|
|
$client->request('GET', '/hello');
|
|
$response = $client->getResponse();
|
|
$this->assertTrue($response->isSuccessful());
|
|
$this->assertEquals('world', $response->getContent());
|
|
}
|
|
|
|
public function testCrawlerFilter()
|
|
{
|
|
$client = $this->createClient();
|
|
|
|
$crawler = $client->request('GET', '/html');
|
|
$this->assertEquals('title', $crawler->filter('h1')->text());
|
|
}
|
|
|
|
public function testServerVariables()
|
|
{
|
|
$user = 'klaus';
|
|
$pass = '123456';
|
|
|
|
$client = $this->createClient(array(
|
|
'PHP_AUTH_USER' => $user,
|
|
'PHP_AUTH_PW' => $pass,
|
|
));
|
|
|
|
$crawler = $client->request('GET', '/server');
|
|
$this->assertEquals("$user:$pass", $crawler->filter('h1')->text());
|
|
}
|
|
}
|