Revert "feat: création boîte mail Esy-Mail lors de la création client"

This reverts commit 7a7796c090.
This commit is contained in:
Serreau Jovann
2026-04-03 20:12:39 +02:00
parent 7a7796c090
commit 2fb90dfb0c
5 changed files with 3 additions and 177 deletions

View File

@@ -6,7 +6,6 @@ use App\Controller\Admin\ClientsController;
use App\Entity\Customer;
use App\Entity\User;
use App\Repository\CustomerRepository;
use App\Service\EsyMailService;
use App\Service\MeilisearchService;
use App\Service\UserManagementService;
use Doctrine\ORM\EntityManagerInterface;
@@ -74,7 +73,7 @@ class ClientsControllerTest extends TestCase
$userService = $this->createStub(UserManagementService::class);
$logger = $this->createStub(LoggerInterface::class);
$response = $controller->create($request, $repo, $em, $meilisearch, $userService, $logger, $this->createStub(EsyMailService::class), 'sk_test_***');
$response = $controller->create($request, $repo, $em, $meilisearch, $userService, $logger, 'sk_test_***');
$this->assertInstanceOf(Response::class, $response);
}
@@ -94,7 +93,7 @@ class ClientsControllerTest extends TestCase
$userService->method('createBaseUser')->willThrowException(new \InvalidArgumentException('Champs requis'));
$logger = $this->createStub(LoggerInterface::class);
$response = $controller->create($request, $repo, $em, $meilisearch, $userService, $logger, $this->createStub(EsyMailService::class), 'sk_test_***');
$response = $controller->create($request, $repo, $em, $meilisearch, $userService, $logger, 'sk_test_***');
$this->assertInstanceOf(Response::class, $response);
}
@@ -114,7 +113,7 @@ class ClientsControllerTest extends TestCase
$userService->method('createBaseUser')->willThrowException(new \RuntimeException('DB error'));
$logger = $this->createStub(LoggerInterface::class);
$response = $controller->create($request, $repo, $em, $meilisearch, $userService, $logger, $this->createStub(EsyMailService::class), 'sk_test_***');
$response = $controller->create($request, $repo, $em, $meilisearch, $userService, $logger, 'sk_test_***');
$this->assertInstanceOf(Response::class, $response);
}
@@ -250,7 +249,6 @@ class ClientsControllerTest extends TestCase
$this->createStub(MeilisearchService::class),
$userService,
$this->createStub(LoggerInterface::class),
$this->createStub(EsyMailService::class),
'',
);
$this->assertSame(302, $response->getStatusCode());
@@ -288,7 +286,6 @@ class ClientsControllerTest extends TestCase
$this->createStub(MeilisearchService::class),
$userService,
$this->createStub(LoggerInterface::class),
$this->createStub(EsyMailService::class),
'sk_test_***',
);
$this->assertSame(302, $response->getStatusCode());
@@ -329,7 +326,6 @@ class ClientsControllerTest extends TestCase
$meilisearch,
$userService,
$this->createStub(LoggerInterface::class),
$this->createStub(EsyMailService::class),
'',
);
$this->assertSame(302, $response->getStatusCode());