mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-11 12:28:23 +02:00
2fd15ba8fa
* test: expand coverage, dedupe data-driven tests, extract shared WebTestCase base - Add #[CoversClass] to Base64Test and FilenameSanitizerTest - Merge near-duplicate test methods into #[DataProvider] cases across ResetPasswordControllerTest, SettingsControllerTest, ClaimSeasonCommandTest, FilenameSanitizerTest, Base64Test, and SeasonRepositoryTest - Add integration tests for previously untested controllers: public QuizController (quiz-taking flow), LoginController, RegistrationController, EliminationController, and PrepareEliminationController - Add unit tests for Elimination and BankQuestion entity logic - Extract shared WebTestCase setup/helpers (client, entityManager, login, entity lookups, CSRF token scraping) into AbstractControllerWebTestCase, removing duplicated boilerplate from all 14 WebTestCase files * test: address PR review feedback - Scope AbstractControllerWebTestCase::getCandidate/getQuizByName by season code (both Candidate and Quiz are only unique per season, not system-wide) and add a CandidateRepository regression test guarding against same-named candidates in different seasons - Add missing entityManager->clear() before verifying DB state after a POST in PrepareEliminationControllerTest and QuestionBankControllerTest - Add non-owner denial tests for BackofficeController::exportQuiz and QuizQuestionController::edit/reorder, which had IsGranted checks with no test coverage * ci: publish PHPUnit coverage to GitHub code coverage - Generate a Cobertura report alongside the existing JUnit report and upload it with actions/upload-code-coverage so coverage shows up on PRs and the default branch via GitHub's code coverage feature - Add a step to copy both reports out of the php container before publishing them, since var/ is a Docker volume (see the Dockerfile's VOLUME /app/var/) and isn't bind-mounted to the runner — this also fixes the existing JUnit report publishing step, which was silently looking at a path that never had contets on the runner * ci: fix coverage report paths and tolerate Code Quality not yet enabled - Write PHPUnit's JUnit and Cobertura reports to reports/ instead of var/, since var/ is a Docker volume (Dockerfile's VOLUME /app/var/) that isn't bind-mounted to the runner - reports written there never reached the host, which is also why the prior junit.xml publish step had nothing to read. reports/ is a plain path under the project's bind mount, so no extra copy-out step is needed - Set fail-on-error: false on the coverage upload step: it 404s until "Code Quality" is turned on for the repo under Settings > Code security > Code quality, a one-time manual step
90 lines
3.2 KiB
PHP
90 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tvdt\Tests\Controller;
|
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
|
|
use SymfonyCasts\Bundle\ResetPassword\ResetPasswordHelperInterface;
|
|
use Tvdt\Controller\ResetPasswordController;
|
|
use Tvdt\Entity\User;
|
|
|
|
#[CoversClass(ResetPasswordController::class)]
|
|
final class ResetPasswordControllerTest extends AbstractControllerWebTestCase
|
|
{
|
|
public function testRequestPageLoads(): void
|
|
{
|
|
$this->client->request(Request::METHOD_GET, '/reset-password');
|
|
|
|
$this->assertResponseIsSuccessful();
|
|
$this->assertSelectorExists('form');
|
|
}
|
|
|
|
/** @return iterable<string, array{string}> */
|
|
public static function emailProvider(): iterable
|
|
{
|
|
yield 'unknown email' => ['unknown@example.org'];
|
|
yield 'known email' => ['test@example.org'];
|
|
}
|
|
|
|
#[DataProvider('emailProvider')]
|
|
public function testRequestRedirectsToCheckEmail(string $email): void
|
|
{
|
|
$this->client->request(Request::METHOD_GET, '/reset-password');
|
|
$form = $this->client->getCrawler()->filter('form')->form([
|
|
'reset_password_request_form[email]' => $email,
|
|
]);
|
|
$this->client->submit($form);
|
|
|
|
$this->assertResponseRedirects('/reset-password/check-email');
|
|
}
|
|
|
|
public function testCheckEmailPageLoads(): void
|
|
{
|
|
$this->client->request(Request::METHOD_GET, '/reset-password/check-email');
|
|
|
|
$this->assertResponseIsSuccessful();
|
|
}
|
|
|
|
public function testResetWithInvalidTokenRedirectsToRequest(): void
|
|
{
|
|
$this->client->request(Request::METHOD_GET, '/reset-password/reset/invalidtoken');
|
|
$this->client->followRedirect();
|
|
|
|
$this->assertResponseRedirects('/reset-password');
|
|
}
|
|
|
|
public function testFullResetFlow(): void
|
|
{
|
|
$user = $this->entityManager->getRepository(User::class)->findOneBy(['email' => 'test@example.org']);
|
|
$this->assertInstanceOf(User::class, $user);
|
|
|
|
/** @var ResetPasswordHelperInterface $helper */
|
|
$helper = self::getContainer()->get(ResetPasswordHelperInterface::class);
|
|
$resetToken = $helper->generateResetToken($user);
|
|
|
|
$this->client->request(Request::METHOD_GET, '/reset-password/reset/'.$resetToken->getToken());
|
|
$this->assertResponseRedirects('/reset-password/reset');
|
|
|
|
$this->client->followRedirect();
|
|
$this->assertResponseIsSuccessful();
|
|
|
|
$form = $this->client->getCrawler()->filter('form')->form([
|
|
'change_password_form[plainPassword][first]' => 'NewPass123!',
|
|
'change_password_form[plainPassword][second]' => 'NewPass123!',
|
|
]);
|
|
$this->client->submit($form);
|
|
$this->assertResponseRedirects('/backoffice/');
|
|
|
|
$this->entityManager->clear();
|
|
$updatedUser = $this->entityManager->getRepository(User::class)->findOneBy(['email' => 'test@example.org']);
|
|
$this->assertInstanceOf(User::class, $updatedUser);
|
|
|
|
$hasher = self::getContainer()->get(UserPasswordHasherInterface::class);
|
|
$this->assertTrue($hasher->isPasswordValid($updatedUser, 'NewPass123!'));
|
|
}
|
|
}
|