initial commit
This commit is contained in:
46
vendor/symfony/maker-bundle/templates/registration/Test.WithoutVerify.tpl.php
vendored
Normal file
46
vendor/symfony/maker-bundle/templates/registration/Test.WithoutVerify.tpl.php
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
<?= "<?php\n" ?>
|
||||
namespace App\Tests;
|
||||
|
||||
<?= $use_statements ?>
|
||||
|
||||
class RegistrationControllerTest extends WebTestCase
|
||||
{
|
||||
private KernelBrowser $client;
|
||||
private <?= $repository_class_name ?> $userRepository;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->client = static::createClient();
|
||||
|
||||
// Ensure we have a clean database
|
||||
$container = static::getContainer();
|
||||
|
||||
/** @var EntityManager $em */
|
||||
$em = $container->get('doctrine')->getManager();
|
||||
$this->userRepository = $container->get(<?= $repository_class_name ?>::class);
|
||||
|
||||
foreach ($this->userRepository->findAll() as $user) {
|
||||
$em->remove($user);
|
||||
}
|
||||
|
||||
$em->flush();
|
||||
}
|
||||
|
||||
public function testRegister(): void
|
||||
{
|
||||
// Register a new user
|
||||
$this->client->request('GET', '/register');
|
||||
self::assertResponseIsSuccessful();
|
||||
self::assertPageTitleContains('Register');
|
||||
|
||||
$this->client->submitForm('Register', [
|
||||
'registration_form[email]' => 'me@example.com',
|
||||
'registration_form[plainPassword]' => 'password',
|
||||
'registration_form[agreeTerms]' => true,
|
||||
]);
|
||||
|
||||
// Ensure the response redirects after submitting the form, the user exists, and is not verified
|
||||
// self::assertResponseRedirects('/'); @TODO: set the appropriate path that the user is redirected to.
|
||||
self::assertCount(1, $this->userRepository->findAll());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user