Add functional tests for all actions #1705
Annotations
11 warnings
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Run mutation tests with pcov and infection/infection:
src/Action/RegistrationAction.php#L63
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
{
$user = $this->userManager->createUser();
$event = new GetResponseRegistrationEvent($user, $request);
- $this->eventDispatcher->dispatch($event, NucleosProfileEvents::REGISTRATION_INITIALIZE);
+
if (null !== $event->getResponse()) {
return $event->getResponse();
}
|
Run mutation tests with pcov and infection/infection:
src/Action/RegistrationAction.php#L70
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
return $event->getResponse();
}
$form = $this->createForm($user);
- $form->handleRequest($request);
+
if ($form->isSubmitted()) {
if ($form->isValid()) {
return $this->updateUser($request, $user, $form);
|
Run mutation tests with pcov and infection/infection:
src/Action/RegistrationAction.php#L112
Escaped Mutant for Mutator "ArrayItemRemoval":
--- Original
+++ New
@@ @@
}
private function createForm(UserInterface $user) : FormInterface
{
- return $this->formFactory->create(RegistrationFormType::class, $user, ['validation_groups' => ['Registration', 'User', 'Default']])->add('save', SubmitType::class, ['label' => 'registration.submit']);
+ return $this->formFactory->create(RegistrationFormType::class, $user, [])->add('save', SubmitType::class, ['label' => 'registration.submit']);
}
}
|
Run mutation tests with pcov and infection/infection:
src/Action/RegistrationAction.php#L113
Escaped Mutant for Mutator "ArrayItemRemoval":
--- Original
+++ New
@@ @@
}
private function createForm(UserInterface $user) : FormInterface
{
- return $this->formFactory->create(RegistrationFormType::class, $user, ['validation_groups' => ['Registration', 'User', 'Default']])->add('save', SubmitType::class, ['label' => 'registration.submit']);
+ return $this->formFactory->create(RegistrationFormType::class, $user, ['validation_groups' => ['User', 'Default']])->add('save', SubmitType::class, ['label' => 'registration.submit']);
}
}
|
Run mutation tests with pcov and infection/infection:
src/Action/RegistrationAction.php#L115
Escaped Mutant for Mutator "ArrayItemRemoval":
--- Original
+++ New
@@ @@
}
private function createForm(UserInterface $user) : FormInterface
{
- return $this->formFactory->create(RegistrationFormType::class, $user, ['validation_groups' => ['Registration', 'User', 'Default']])->add('save', SubmitType::class, ['label' => 'registration.submit']);
+ return $this->formFactory->create(RegistrationFormType::class, $user, ['validation_groups' => ['Registration', 'User', 'Default']])->add('save', SubmitType::class, []);
}
}
|
Run mutation tests with pcov and infection/infection:
src/Action/ShowProfileAction.php#L36
Escaped Mutant for Mutator "InstanceOf_":
--- Original
+++ New
@@ @@
public function __invoke() : Response
{
$user = $this->security->getUser();
- if (!$user instanceof UserInterface) {
+ if (!true) {
throw new AccessDeniedException('This user does not have access to this section.');
}
return new Response($this->twig->render('@NucleosProfile/Profile/show.html.twig', ['user' => $user]));
}
}
|
Run mutation tests with pcov and infection/infection:
src/DependencyInjection/NucleosProfileExtension.php#L34
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$configuration = new Configuration();
$config = $processor->processConfiguration($configuration, $configs);
$loader = new PhpFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
- $loader->load('mailer.php');
+
$loader->load('listeners.php');
$this->loadRegistration($config['registration'], $container, $loader);
$this->loadProfile($loader);
|
Run mutation tests with pcov and infection/infection:
src/DependencyInjection/NucleosProfileExtension.php#L37
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$loader = new PhpFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
$loader->load('mailer.php');
$loader->load('listeners.php');
- $this->loadRegistration($config['registration'], $container, $loader);
+
$this->loadProfile($loader);
$container->setAlias('nucleos_profile.mailer', $config['service']['mailer']);
}
|
Run mutation tests with pcov and infection/infection:
src/DependencyInjection/NucleosProfileExtension.php#L38
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$loader->load('mailer.php');
$loader->load('listeners.php');
$this->loadRegistration($config['registration'], $container, $loader);
- $this->loadProfile($loader);
+
$container->setAlias('nucleos_profile.mailer', $config['service']['mailer']);
}
/**
|
Run mutation tests with pcov and infection/infection:
src/DependencyInjection/NucleosProfileExtension.php#L48
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
*/
private function loadRegistration(array $config, ContainerBuilder $container, FileLoader $loader) : void
{
- $loader->load('registration.php');
+
if (true === $config['confirmation']['enabled']) {
$loader->load('email_confirmation.php');
}
|
Loading