28 lines
1020 B
PHP
28 lines
1020 B
PHP
<?php
|
|
|
|
namespace IndifferentKetchup\Codex\Test\Tests\Games\ProjectZomboid\Analysis;
|
|
|
|
use IndifferentKetchup\Codex\Analysis\ProjectZomboid\AdminGrantedAccessInformation;
|
|
use IndifferentKetchup\Codex\Pattern\ProjectZomboid\AdminPattern;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class AdminGrantedAccessInformationTest extends TestCase
|
|
{
|
|
public function testGetPatternsReturnsEntryRegex(): void
|
|
{
|
|
$this->assertSame([AdminPattern::GRANTED_ACCESS_ENTRY], AdminGrantedAccessInformation::getPatterns());
|
|
}
|
|
|
|
public function testEntryRegexMatchesFullLine(): void
|
|
{
|
|
$line = "[16-04-26 18:35:10.000] AdminUser granted admin access level on Player1.";
|
|
$this->assertSame(1, preg_match(AdminPattern::GRANTED_ACCESS_ENTRY, $line, $m));
|
|
|
|
$insight = new AdminGrantedAccessInformation();
|
|
$insight->setMatches($m, 0);
|
|
|
|
$this->assertSame('Admin granted access', $insight->getLabel());
|
|
$this->assertSame('AdminUser granted admin to Player1', $insight->getValue());
|
|
}
|
|
}
|