Spaces:
No application file
No application file
File size: 5,497 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
<?php
declare(strict_types=1);
namespace Mautic\DynamicContentBundle\Tests\Controller;
use Mautic\CoreBundle\Test\MauticMysqlTestCase;
use Mautic\DynamicContentBundle\Entity\DynamicContent;
use Mautic\UserBundle\Entity\Permission;
use Mautic\UserBundle\Entity\Role;
use Mautic\UserBundle\Entity\User;
use PHPUnit\Framework\Assert;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class DynamicContentControllerFunctionalTest extends MauticMysqlTestCase
{
public const PERMISSION_CREATE = 'dynamiccontent:dynamiccontents:create';
public const PERMISSION_DELETE_OTHER = 'dynamiccontent:dynamiccontents:deleteother';
public const PERMISSION_DELETE_OWN = 'dynamiccontent:dynamiccontents:deleteown';
public const BITWISE_BY_PERM = [
self::PERMISSION_CREATE => 52,
self::PERMISSION_DELETE_OWN => 66,
self::PERMISSION_DELETE_OTHER => 150,
];
public function testAccessControlNewAction(): void
{
$this->createAndLoginUser(self::PERMISSION_CREATE);
$this->client->request(Request::METHOD_GET, '/s/dwc/new');
Assert::assertSame(Response::HTTP_OK, $this->client->getResponse()->getStatusCode(), $this->client->getResponse()->getContent());
}
public function testForbiddenNewAction(): void
{
$this->createAndLoginUser();
$this->client->request(Request::METHOD_GET, '/s/dwc/new');
Assert::assertSame(Response::HTTP_FORBIDDEN, $this->client->getResponse()->getStatusCode(), $this->client->getResponse()->getContent());
}
public function testAccessDeleteAction(): void
{
$this->createAndLoginUser(self::PERMISSION_DELETE_OWN);
$this->client->request(Request::METHOD_POST, '/s/dwc/delete');
Assert::assertSame(Response::HTTP_OK, $this->client->getResponse()->getStatusCode(), $this->client->getResponse()->getContent());
}
public function testForbiddenDeleteAction(): void
{
$this->createAndLoginUser();
$this->client->request('GET', '/s/dwc/delete');
Assert::assertSame(Response::HTTP_FORBIDDEN, $this->client->getResponse()->getStatusCode(), $this->client->getResponse()->getContent());
}
private function createAndLoginUser(string $permission = null): User
{
// Create non-admin role
$role = $this->createRole();
// Create permissions to update user for the role
if (!empty($permission)) {
$this->createPermission($permission, $role, self::BITWISE_BY_PERM[$permission]);
}
// Create non-admin user
$user = $this->createUser($role);
$this->em->flush();
$this->em->detach($role);
$this->loginUser($user->getUserIdentifier());
$this->client->setServerParameter('PHP_AUTH_USER', $user->getUserIdentifier());
$this->client->setServerParameter('PHP_AUTH_PW', 'mautic');
return $user;
}
private function createRole(bool $isAdmin = false): Role
{
$role = new Role();
$role->setName('Role');
$role->setIsAdmin($isAdmin);
$this->em->persist($role);
return $role;
}
private function createPermission(string $rawPermission, Role $role, int $bitwise): void
{
$parts = explode(':', $rawPermission);
$permission = new Permission();
$permission->setBundle($parts[0]);
$permission->setName($parts[1]);
$permission->setRole($role);
$permission->setBitwise($bitwise);
$this->em->persist($permission);
}
private function createUser(Role $role): User
{
$user = new User();
$user->setFirstName('John');
$user->setLastName('Doe');
$user->setUsername('john.doe');
$user->setEmail('[email protected]');
$encoder = static::getContainer()->get('security.encoder_factory')->getEncoder($user);
$user->setPassword($encoder->encodePassword('mautic', null));
$user->setRole($role);
$this->em->persist($user);
return $user;
}
public function testIndexActionIsSuccessful(): void
{
$this->client->request(Request::METHOD_GET, '/s/dwc');
$response = $this->client->getResponse();
$this->assertEquals(Response::HTTP_OK, $response->getStatusCode());
}
public function testNewActionIsSuccessful(): void
{
$this->client->request(Request::METHOD_GET, '/s/dwc/new');
$response = $this->client->getResponse();
$this->assertEquals(Response::HTTP_OK, $response->getStatusCode());
}
public function testEditActionIsSuccessful(): void
{
$entity = new DynamicContent();
$entity->setName('Test Dynamic Content');
$this->em->persist($entity);
$this->em->flush();
$this->client->request(Request::METHOD_GET, '/s/dwc/edit/'.$entity->getId());
$response = $this->client->getResponse();
$this->assertEquals(Response::HTTP_OK, $response->getStatusCode());
}
public function testViewActionIsSuccessful(): void
{
$entity = new DynamicContent();
$entity->setName('Test Dynamic Content');
$this->em->persist($entity);
$this->em->flush();
$this->client->request(Request::METHOD_GET, '/s/dwc/view/'.$entity->getId());
$response = $this->client->getResponse();
$this->assertEquals(Response::HTTP_OK, $response->getStatusCode());
}
}
|