mirror of
https://github.com/shlinkio/shlink.git
synced 2025-01-23 15:03:19 -06:00
Added tagExists to TagRepositoryTest
This commit is contained in:
parent
bef1b13a33
commit
ba32366b0b
@ -5,11 +5,16 @@ declare(strict_types=1);
|
||||
namespace ShlinkioTest\Shlink\Core\Repository;
|
||||
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
use Shlinkio\Shlink\Core\Entity\Domain;
|
||||
use Shlinkio\Shlink\Core\Entity\ShortUrl;
|
||||
use Shlinkio\Shlink\Core\Entity\Tag;
|
||||
use Shlinkio\Shlink\Core\Entity\Visit;
|
||||
use Shlinkio\Shlink\Core\Model\ShortUrlMeta;
|
||||
use Shlinkio\Shlink\Core\Model\Visitor;
|
||||
use Shlinkio\Shlink\Core\Repository\TagRepository;
|
||||
use Shlinkio\Shlink\Core\ShortUrl\Resolver\PersistenceShortUrlRelationResolver;
|
||||
use Shlinkio\Shlink\Rest\ApiKey\Model\RoleDefinition;
|
||||
use Shlinkio\Shlink\Rest\Entity\ApiKey;
|
||||
use Shlinkio\Shlink\TestUtils\DbTest\DatabaseTestCase;
|
||||
|
||||
use function array_chunk;
|
||||
@ -20,6 +25,8 @@ class TagRepositoryTest extends DatabaseTestCase
|
||||
Visit::class,
|
||||
ShortUrl::class,
|
||||
Tag::class,
|
||||
ApiKey::class,
|
||||
Domain::class,
|
||||
];
|
||||
|
||||
private TagRepository $repo;
|
||||
@ -97,4 +104,56 @@ class TagRepositoryTest extends DatabaseTestCase
|
||||
$result[3]->jsonSerialize(),
|
||||
);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function tagExistsReturnsExpectedResultBasedOnApiKey(): void
|
||||
{
|
||||
$domain = new Domain('foo.com');
|
||||
$this->getEntityManager()->persist($domain);
|
||||
$this->getEntityManager()->flush();
|
||||
|
||||
$authorApiKey = new ApiKey(null, [RoleDefinition::forAuthoredShortUrls()]);
|
||||
$this->getEntityManager()->persist($authorApiKey);
|
||||
$domainApiKey = new ApiKey(null, [RoleDefinition::forDomain($domain->getId())]);
|
||||
$this->getEntityManager()->persist($domainApiKey);
|
||||
|
||||
$names = ['foo', 'bar', 'baz', 'another'];
|
||||
$tags = [];
|
||||
foreach ($names as $name) {
|
||||
$tag = new Tag($name);
|
||||
$tags[] = $tag;
|
||||
$this->getEntityManager()->persist($tag);
|
||||
}
|
||||
|
||||
[$firstUrlTags, $secondUrlTags] = array_chunk($tags, 3);
|
||||
|
||||
$shortUrl = new ShortUrl('', ShortUrlMeta::fromRawData(['apiKey' => $authorApiKey]));
|
||||
$shortUrl->setTags(new ArrayCollection($firstUrlTags));
|
||||
$this->getEntityManager()->persist($shortUrl);
|
||||
|
||||
$shortUrl2 = new ShortUrl(
|
||||
'',
|
||||
ShortUrlMeta::fromRawData(['domain' => $domain->getAuthority()]),
|
||||
new PersistenceShortUrlRelationResolver($this->getEntityManager()),
|
||||
);
|
||||
$shortUrl2->setTags(new ArrayCollection($secondUrlTags));
|
||||
$this->getEntityManager()->persist($shortUrl2);
|
||||
|
||||
$this->getEntityManager()->flush();
|
||||
|
||||
self::assertTrue($this->repo->tagExists('foo'));
|
||||
self::assertTrue($this->repo->tagExists('bar'));
|
||||
self::assertTrue($this->repo->tagExists('baz'));
|
||||
self::assertTrue($this->repo->tagExists('another'));
|
||||
|
||||
self::assertTrue($this->repo->tagExists('foo', $authorApiKey));
|
||||
self::assertTrue($this->repo->tagExists('bar', $authorApiKey));
|
||||
self::assertTrue($this->repo->tagExists('baz', $authorApiKey));
|
||||
self::assertFalse($this->repo->tagExists('another', $authorApiKey));
|
||||
|
||||
self::assertFalse($this->repo->tagExists('foo', $domainApiKey));
|
||||
self::assertFalse($this->repo->tagExists('bar', $domainApiKey));
|
||||
self::assertFalse($this->repo->tagExists('baz', $domainApiKey));
|
||||
self::assertTrue($this->repo->tagExists('another', $domainApiKey));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user