Skip to content
Snippets Groups Projects
Commit 9e312f0f authored by Fabrice Gangler's avatar Fabrice Gangler :art:
Browse files

test: add some [ allow_mutation_testing_by_infection ] group

parent 16e4a0f3
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,7 @@ tests_coverage: ## Run all tests (PhpUnit) and save coverage in an HTML file
tests_mutation: ## Run mutation tests (Infection) TODO replace PHIVE by COMPOSER
rm -rf "${WEBAPP_DIR}/var/tmp/" || true
cd "${WEBAPP_DIR}" && ../bin/infection --min-covered-msi=70 --min-msi=20 --test-framework-options="${INFECTION_PHPUNIT_OPTION}"
cd "${WEBAPP_DIR}" && ../bin/infection --min-covered-msi=95 --min-msi=15 --test-framework-options="${INFECTION_PHPUNIT_OPTION}"
# cd "${WEBAPP_DIR}" && ../bin/infection --logger-html="${AUTO_DOC_INFECTION_FILE}" --test-framework-options="${INFECTION_PHPUNIT_OPTION}"
.PHONY: tests_mutation
......
......@@ -28,6 +28,7 @@
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
use Symfony\Component\HttpFoundation\Response;
class FunctionalTestSecurityTest extends WebTestCase
{
use TestHelperTrait;
......@@ -71,6 +72,7 @@ private function getUrls(string $aclRole = 'PUBLIC'): array
/////////////// Anonymous /////////////////////////////////////////////////////////////////////
/// ///////////////////////////////////////////////////////////////////////////////////////////
/**
* @group allow_mutation_testing_by_infection
*/
......@@ -98,8 +100,7 @@ public function testAnonymousCanBrowsePublicUrls(): void
/**
* Anonymous are deny to browse ROLE_ADMIN | ROLE_USER urls
* and being redirected to LOGIN page.
*/
/**
*
* @group allow_mutation_testing_by_infection
*/
public function testAnonymousIsDenyToBrowseConnectedUserUrlsAndBeingRedirectedToLoginPage(): void
......@@ -147,6 +148,7 @@ public function commonIsRedirectingToLoginPage(
/////////////// Connected USER ////////////////////////////////////////////////////////////////
/// ///////////////////////////////////////////////////////////////////////////////////////////
/**
* @group allow_mutation_testing_by_infection
*/
......@@ -156,8 +158,10 @@ public function testConnectedUserCanBrowseHisUrls(): void
$mail = AppUserFixtures::USER_REFERENCE_0;
$this->commonCheckerConnectedUserCanBrowseMultipleUrls("$mail", $urls);
}
/**
* Connected USER are deny to browse ROLE_ADMIN urls
*
* @group allow_mutation_testing_by_infection
*/
public function testConnectedUserIsDenyToBrowseAdministratorUrls(): void
......@@ -170,6 +174,7 @@ public function testConnectedUserIsDenyToBrowseAdministratorUrls(): void
/////////////// Connected ADMINISTRATOR ///////////////////////////////////////////////////////
/// ///////////////////////////////////////////////////////////////////////////////////////////
public function testAdministratorCanBrowseHisUrls(): void
{
$urls = $this->getUrls('ROLE_ADMIN');
......
......@@ -29,6 +29,9 @@
use Symfony\Component\DomCrawler\Crawler;
use Symfony\Component\HttpFoundation\Response;
/**
* @group allow_mutation_testing_by_infection
*/
class FunctionalTestPublicPageLicensesTest extends WebTestCase
{
use TestHelperTrait;
......
......@@ -27,6 +27,9 @@
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
use Symfony\Component\HttpFoundation\Response;
/**
* @group allow_mutation_testing_by_infection
*/
class FunctionalTestPublicPageTagsTest extends WebTestCase
{
use TestHelperTrait;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment