initial commit

This commit is contained in:
boris
2025-09-30 09:24:25 +01:00
committed by boris
parent a783a12c97
commit c7770ea03b
4695 changed files with 525784 additions and 0 deletions

View 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());
}
}