mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 19:55:05 +02:00
* feat(admin): upload video action * style: fix StyleCI findings * tests: fix video storage tests
79 lines
2.1 KiB
PHP
79 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Unit\Rules\Wiki;
|
|
|
|
use App\Enums\Models\Wiki\ResourceSite;
|
|
use App\Rules\Wiki\Resource\ResourceSiteMatchesLinkRule;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* Class ResourceSiteMatchesLinkTest.
|
|
*/
|
|
class ResourceSiteMatchesLinkTest extends TestCase
|
|
{
|
|
use WithFaker;
|
|
|
|
/**
|
|
* The Resource Site Matches Link Rule shall return true if the site matches the link.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testPassesIfSiteMatchesLink(): void
|
|
{
|
|
$site = null;
|
|
|
|
while ($site === null) {
|
|
$siteCandidate = ResourceSite::getRandomInstance();
|
|
if (! $siteCandidate->is(ResourceSite::OFFICIAL_SITE)) {
|
|
$site = $siteCandidate;
|
|
}
|
|
}
|
|
|
|
$url = null;
|
|
$domain = ResourceSite::getDomain($site->value);
|
|
if ($domain !== null) {
|
|
$url = 'https://'.$domain;
|
|
}
|
|
|
|
$rule = new ResourceSiteMatchesLinkRule($url);
|
|
|
|
static::assertTrue($rule->passes($this->faker->word(), $site->value));
|
|
}
|
|
|
|
/**
|
|
* The Resource Site Matches Link Rule shall return true if the site does not have a domain.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testResourceSiteDomainRuleOfficialPasses(): void
|
|
{
|
|
$rule = new ResourceSiteMatchesLinkRule($this->faker->url());
|
|
|
|
static::assertTrue($rule->passes($this->faker->word(), ResourceSite::OFFICIAL_SITE));
|
|
}
|
|
|
|
/**
|
|
* The Resource Site Matches Link Rule shall return false if the site does not match the link.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testResourceSiteDomainRuleFails(): void
|
|
{
|
|
$site = null;
|
|
|
|
while ($site === null) {
|
|
$siteCandidate = ResourceSite::getRandomInstance();
|
|
if (! $siteCandidate->is(ResourceSite::OFFICIAL_SITE)) {
|
|
$site = $siteCandidate;
|
|
}
|
|
}
|
|
|
|
$rule = new ResourceSiteMatchesLinkRule($this->faker->url());
|
|
|
|
static::assertFalse($rule->passes($this->faker->word(), $site->value));
|
|
}
|
|
}
|