我想在 EasyAdmin 3 后端运行功能测试。
基本上,我想确保普通用户无法访问页面、查看字段或查看/运行他们不允许执行的操作。
最好的方法是什么?有没有什么有用的资源我错过了开始?
我想在 EasyAdmin 3 后端运行功能测试。
基本上,我想确保普通用户无法访问页面、查看字段或查看/运行他们不允许执行的操作。
最好的方法是什么?有没有什么有用的资源我错过了开始?
EasyAdmin 3 Crud 控制器基本上是常规的 Symfony 控制器,因此它们可以像任何其他 Symfony 控制器一样进行测试。
<?php
// tests/Controller/AdminControllerTest.php
namespace App\Tests\Controller;
use App\Repository\UserRepository;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class AdminControllerTest extends WebTestCase
{
// ...
public function testVisitingWhileLoggedIn()
{
$client = static::createClient();
$userRepository = static::$container->get(UserRepository::class);
// retrieve the test user
$testUser = $userRepository->findOneByEmail('john.doe@example.com');
// simulate $testUser being logged in
$client->loginUser($testUser);
// test e.g. the admin page
$client->request('GET', '/admin');
$this->assertResponseStatusCodeSame(403);
}
}
EasyAdmin Crud 文档https://symfony.com/doc/current/bundles/EasyAdminBundle/crud.html
测试 Symfony https://symfony.com/doc/current/testing.html