add new demo symfony files
This commit is contained in:
194
app/tests/Controller/Admin/BlogControllerTest.php
Normal file
194
app/tests/Controller/Admin/BlogControllerTest.php
Normal file
@@ -0,0 +1,194 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace App\Tests\Controller\Admin;
|
||||
|
||||
use App\Repository\PostRepository;
|
||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
/**
|
||||
* Functional test for the controllers defined inside the BlogController used
|
||||
* for managing the blog in the backend.
|
||||
*
|
||||
* See https://symfony.com/doc/current/testing.html#functional-tests
|
||||
*
|
||||
* Whenever you test resources protected by a firewall, consider using the
|
||||
* technique explained in:
|
||||
* https://symfony.com/doc/current/testing/http_authentication.html
|
||||
*
|
||||
* Execute the application tests using this command (requires PHPUnit to be installed):
|
||||
*
|
||||
* $ cd your-symfony-project/
|
||||
* $ ./vendor/bin/phpunit
|
||||
*/
|
||||
class BlogControllerTest extends WebTestCase
|
||||
{
|
||||
/**
|
||||
* @dataProvider getUrlsForRegularUsers
|
||||
*/
|
||||
public function testAccessDeniedForRegularUsers(string $httpMethod, string $url): void
|
||||
{
|
||||
$client = static::createClient([], [
|
||||
'PHP_AUTH_USER' => 'john_user',
|
||||
'PHP_AUTH_PW' => 'kitten',
|
||||
]);
|
||||
|
||||
$client->request($httpMethod, $url);
|
||||
|
||||
$this->assertResponseStatusCodeSame(Response::HTTP_FORBIDDEN);
|
||||
}
|
||||
|
||||
public function getUrlsForRegularUsers(): ?\Generator
|
||||
{
|
||||
yield ['GET', '/en/admin/post/'];
|
||||
yield ['GET', '/en/admin/post/1'];
|
||||
yield ['GET', '/en/admin/post/1/edit'];
|
||||
yield ['POST', '/en/admin/post/1/delete'];
|
||||
}
|
||||
|
||||
public function testAdminBackendHomePage(): void
|
||||
{
|
||||
$client = static::createClient([], [
|
||||
'PHP_AUTH_USER' => 'jane_admin',
|
||||
'PHP_AUTH_PW' => 'kitten',
|
||||
]);
|
||||
$client->request('GET', '/en/admin/post/');
|
||||
|
||||
$this->assertResponseIsSuccessful();
|
||||
$this->assertSelectorExists(
|
||||
'body#admin_post_index #main tbody tr',
|
||||
'The backend homepage displays all the available posts.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* This test changes the database contents by creating a new blog post. However,
|
||||
* thanks to the DAMADoctrineTestBundle and its PHPUnit listener, all changes
|
||||
* to the database are rolled back when this test completes. This means that
|
||||
* all the application tests begin with the same database contents.
|
||||
*/
|
||||
public function testAdminNewPost(): void
|
||||
{
|
||||
$postTitle = 'Blog Post Title '.mt_rand();
|
||||
$postSummary = $this->generateRandomString(255);
|
||||
$postContent = $this->generateRandomString(1024);
|
||||
|
||||
$client = static::createClient([], [
|
||||
'PHP_AUTH_USER' => 'jane_admin',
|
||||
'PHP_AUTH_PW' => 'kitten',
|
||||
]);
|
||||
$client->request('GET', '/en/admin/post/new');
|
||||
$client->submitForm('Create post', [
|
||||
'post[title]' => $postTitle,
|
||||
'post[summary]' => $postSummary,
|
||||
'post[content]' => $postContent,
|
||||
]);
|
||||
|
||||
$this->assertResponseRedirects('/en/admin/post/', Response::HTTP_FOUND);
|
||||
|
||||
/** @var \App\Entity\Post $post */
|
||||
$post = self::$container->get(PostRepository::class)->findOneByTitle($postTitle);
|
||||
$this->assertNotNull($post);
|
||||
$this->assertSame($postSummary, $post->getSummary());
|
||||
$this->assertSame($postContent, $post->getContent());
|
||||
}
|
||||
|
||||
public function testAdminNewDuplicatedPost(): void
|
||||
{
|
||||
$postTitle = 'Blog Post Title '.mt_rand();
|
||||
$postSummary = $this->generateRandomString(255);
|
||||
$postContent = $this->generateRandomString(1024);
|
||||
|
||||
$client = static::createClient([], [
|
||||
'PHP_AUTH_USER' => 'jane_admin',
|
||||
'PHP_AUTH_PW' => 'kitten',
|
||||
]);
|
||||
$crawler = $client->request('GET', '/en/admin/post/new');
|
||||
$form = $crawler->selectButton('Create post')->form([
|
||||
'post[title]' => $postTitle,
|
||||
'post[summary]' => $postSummary,
|
||||
'post[content]' => $postContent,
|
||||
]);
|
||||
$client->submit($form);
|
||||
|
||||
// post titles must be unique, so trying to create the same post twice should result in an error
|
||||
$client->submit($form);
|
||||
|
||||
$this->assertSelectorTextSame('form .form-group.has-error label', 'Title');
|
||||
$this->assertSelectorTextContains('form .form-group.has-error .help-block', 'This title was already used in another blog post, but they must be unique.');
|
||||
}
|
||||
|
||||
public function testAdminShowPost(): void
|
||||
{
|
||||
$client = static::createClient([], [
|
||||
'PHP_AUTH_USER' => 'jane_admin',
|
||||
'PHP_AUTH_PW' => 'kitten',
|
||||
]);
|
||||
$client->request('GET', '/en/admin/post/1');
|
||||
|
||||
$this->assertResponseIsSuccessful();
|
||||
}
|
||||
|
||||
/**
|
||||
* This test changes the database contents by editing a blog post. However,
|
||||
* thanks to the DAMADoctrineTestBundle and its PHPUnit listener, all changes
|
||||
* to the database are rolled back when this test completes. This means that
|
||||
* all the application tests begin with the same database contents.
|
||||
*/
|
||||
public function testAdminEditPost(): void
|
||||
{
|
||||
$newBlogPostTitle = 'Blog Post Title '.mt_rand();
|
||||
|
||||
$client = static::createClient([], [
|
||||
'PHP_AUTH_USER' => 'jane_admin',
|
||||
'PHP_AUTH_PW' => 'kitten',
|
||||
]);
|
||||
$client->request('GET', '/en/admin/post/1/edit');
|
||||
$client->submitForm('Save changes', [
|
||||
'post[title]' => $newBlogPostTitle,
|
||||
]);
|
||||
|
||||
$this->assertResponseRedirects('/en/admin/post/1/edit', Response::HTTP_FOUND);
|
||||
|
||||
/** @var \App\Entity\Post $post */
|
||||
$post = self::$container->get(PostRepository::class)->find(1);
|
||||
$this->assertSame($newBlogPostTitle, $post->getTitle());
|
||||
}
|
||||
|
||||
/**
|
||||
* This test changes the database contents by deleting a blog post. However,
|
||||
* thanks to the DAMADoctrineTestBundle and its PHPUnit listener, all changes
|
||||
* to the database are rolled back when this test completes. This means that
|
||||
* all the application tests begin with the same database contents.
|
||||
*/
|
||||
public function testAdminDeletePost(): void
|
||||
{
|
||||
$client = static::createClient([], [
|
||||
'PHP_AUTH_USER' => 'jane_admin',
|
||||
'PHP_AUTH_PW' => 'kitten',
|
||||
]);
|
||||
$crawler = $client->request('GET', '/en/admin/post/1');
|
||||
$client->submit($crawler->filter('#delete-form')->form());
|
||||
|
||||
$this->assertResponseRedirects('/en/admin/post/', Response::HTTP_FOUND);
|
||||
|
||||
$post = self::$container->get(PostRepository::class)->find(1);
|
||||
$this->assertNull($post);
|
||||
}
|
||||
|
||||
private function generateRandomString(int $length): string
|
||||
{
|
||||
$chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
||||
|
||||
return mb_substr(str_shuffle(str_repeat($chars, ceil($length / mb_strlen($chars)))), 1, $length);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user