-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add functional tests for all actions
- Loading branch information
Showing
12 changed files
with
364 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,12 @@ | |
|
||
$containerConfigurator->extension('framework', ['session' => ['storage_factory_id' => 'session.storage.factory.mock_file', 'handler_id' => null]]); | ||
|
||
$containerConfigurator->extension('framework', [ | ||
'mailer' => [ | ||
'dsn' => 'null://null', | ||
], | ||
]); | ||
|
||
$containerConfigurator->extension('twig', ['strict_variables' => true]); | ||
|
||
$containerConfigurator->extension('twig', ['exception_controller' => null]); | ||
|
@@ -77,5 +83,9 @@ | |
|
||
$containerConfigurator->extension('nucleos_user', ['group' => ['group_class' => TestGroup::class]]); | ||
|
||
$containerConfigurator->extension('nucleos_user', ['loggedin' => ['route' => 'home']]); | ||
$containerConfigurator->extension('nucleos_user', ['loggedin' => ['route' => 'nucleos_user_update_security']]); | ||
|
||
$containerConfigurator->extension('nucleos_profile', ['registration' => ['confirmation' => ['enabled' => true, 'from_email' => '[email protected]']]]); | ||
|
||
$containerConfigurator->extension('dama_doctrine_test', ['enable_static_connection' => true, 'enable_static_meta_data_cache' => true, 'enable_static_query_cache' => true]); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the NucleosProfileBundle package. | ||
* | ||
* (c) Christian Gripp <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Nucleos\ProfileBundle\Tests\Functional\Action; | ||
|
||
use Nucleos\ProfileBundle\Action\EditProfileAction; | ||
use Nucleos\ProfileBundle\Tests\Functional\DoctrineSetupTrait; | ||
use PHPUnit\Framework\Attributes\CoversClass; | ||
use PHPUnit\Framework\Attributes\Test; | ||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; | ||
|
||
#[CoversClass(EditProfileAction::class)] | ||
class EditProfileWebTest extends WebTestCase | ||
{ | ||
use DoctrineSetupTrait; | ||
|
||
#[Test] | ||
public function execute(): void | ||
{ | ||
$client = self::createClient(); | ||
|
||
$this->persist( | ||
$user = self::createUser(), | ||
); | ||
|
||
$client->loginUser($user); | ||
$client->request('GET', '/profile/edit'); | ||
|
||
self::assertResponseIsSuccessful(); | ||
|
||
$client->submitForm('profile_form[save]', [ | ||
'profile_form[locale]' => 'de_DE', | ||
]); | ||
|
||
self::assertResponseRedirects('/profile/'); | ||
$client->followRedirect(); | ||
|
||
self::assertSame('de_DE', $this->getUser($user->getId())?->getLocale()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the NucleosProfileBundle package. | ||
* | ||
* (c) Christian Gripp <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Nucleos\ProfileBundle\Tests\Functional\Action; | ||
|
||
use Nucleos\ProfileBundle\Action\CheckRegistrationMailAction; | ||
use Nucleos\ProfileBundle\Action\ConfirmRegistrationAction; | ||
use Nucleos\ProfileBundle\Action\RegistrationAction; | ||
use Nucleos\ProfileBundle\Action\RegistrationConfirmedAction; | ||
use Nucleos\ProfileBundle\Tests\App\Entity\TestUser; | ||
use Nucleos\ProfileBundle\Tests\Functional\DoctrineSetupTrait; | ||
use PHPUnit\Framework\Attributes\CoversClass; | ||
use PHPUnit\Framework\Attributes\Test; | ||
use Symfony\Bundle\FrameworkBundle\KernelBrowser; | ||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; | ||
|
||
#[CoversClass(RegistrationAction::class)] | ||
#[CoversClass(ConfirmRegistrationAction::class)] | ||
#[CoversClass(CheckRegistrationMailAction::class)] | ||
#[CoversClass(RegistrationConfirmedAction::class)] | ||
class RegistrationWebTest extends WebTestCase | ||
{ | ||
use DoctrineSetupTrait; | ||
|
||
#[Test] | ||
public function execute(): void | ||
{ | ||
$client = self::createClient(); | ||
|
||
$this->performRegister($client); | ||
|
||
$user = $this->getEntityManager()->getRepository(TestUser::class)->findOneBy([ | ||
'username' => 'new_username', | ||
]); | ||
|
||
self::assertNotNull($user); | ||
self::assertFalse($user->isEnabled()); | ||
self::assertNotNull($user->getConfirmationToken()); | ||
|
||
$this->performConfirm($client, $user); | ||
} | ||
|
||
#[Test] | ||
public function executeWithLoggedInUser(): void | ||
{ | ||
$client = self::createClient(); | ||
|
||
$this->persist( | ||
$user = self::createUser(), | ||
); | ||
|
||
$client->loginUser($user); | ||
$client->request('GET', '/register/'); | ||
|
||
self::assertResponseRedirects('/profile/'); | ||
} | ||
|
||
private function performRegister(KernelBrowser $client): void | ||
{ | ||
$client->request('GET', '/register/'); | ||
|
||
self::assertResponseIsSuccessful(); | ||
|
||
$client->submitForm('registration_form[save]', [ | ||
'registration_form[username]' => 'new_username', | ||
'registration_form[email]' => '[email protected]', | ||
'registration_form[plainPassword][first]' => 'super_secret_password', | ||
'registration_form[plainPassword][second]' => 'super_secret_password', | ||
]); | ||
|
||
self::assertResponseRedirects('/register/check-email'); | ||
} | ||
|
||
private function performConfirm(KernelBrowser $client, TestUser $user): void | ||
{ | ||
$client->request('GET', sprintf('/register/confirm/%s', $user->getConfirmationToken())); | ||
|
||
self::assertResponseRedirects('/register/confirmed'); | ||
|
||
$user = $this->getEntityManager()->find(TestUser::class, $user->getId()); | ||
|
||
self::assertNotNull($user); | ||
self::assertTrue($user->isEnabled()); | ||
self::assertNull($user->getConfirmationToken()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the NucleosProfileBundle package. | ||
* | ||
* (c) Christian Gripp <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Nucleos\ProfileBundle\Tests\Functional\Action; | ||
|
||
use Nucleos\ProfileBundle\Action\ShowProfileAction; | ||
use Nucleos\ProfileBundle\Tests\Functional\DoctrineSetupTrait; | ||
use PHPUnit\Framework\Attributes\CoversClass; | ||
use PHPUnit\Framework\Attributes\Test; | ||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; | ||
|
||
#[CoversClass(ShowProfileAction::class)] | ||
class ShowProfileWebTest extends WebTestCase | ||
{ | ||
use DoctrineSetupTrait; | ||
|
||
#[Test] | ||
public function execute(): void | ||
{ | ||
$client = self::createClient(); | ||
|
||
$this->persist( | ||
$user = self::createUser(), | ||
); | ||
|
||
$client->loginUser($user); | ||
$client->request('GET', '/profile/'); | ||
|
||
self::assertResponseIsSuccessful(); | ||
|
||
self::assertSelectorTextContains('.nucleos_profile_user_show', $user->getUsername()); | ||
} | ||
} |
Oops, something went wrong.