mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use App\Util\Lexer\Nickname;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use Tests\TestCase;
|
|
|
|
class WebfingerTest extends TestCase
|
|
{
|
|
#[Test]
|
|
public function webfingerTest()
|
|
{
|
|
$expected = [
|
|
'domain' => 'pixelfed.org',
|
|
'username' => 'dansup',
|
|
];
|
|
$actual = Nickname::normalizeProfileUrl('acct:dansup@pixelfed.org');
|
|
$this->assertEquals($expected, $actual);
|
|
|
|
$expected = [
|
|
'domain' => 'pixelfed.org',
|
|
'username' => 'dansup_',
|
|
];
|
|
$actual = Nickname::normalizeProfileUrl('acct:dansup@pixelfed.org');
|
|
$this->assertNotEquals($expected, $actual);
|
|
|
|
$expected = [
|
|
'domain' => 'pixelfed.org',
|
|
'username' => 'dansup',
|
|
];
|
|
$actual = Nickname::normalizeProfileUrl('acct:@dansup@pixelfed.org');
|
|
$this->assertEquals($expected, $actual);
|
|
|
|
$expected = [
|
|
'domain' => 'pixelfed.org',
|
|
'username' => 'dansup',
|
|
];
|
|
$actual = Nickname::normalizeProfileUrl('dansup@pixelfed.org');
|
|
$this->assertEquals($expected, $actual);
|
|
|
|
$expected = [
|
|
'domain' => 'pixelfed.org',
|
|
'username' => 'dansup',
|
|
];
|
|
$actual = Nickname::normalizeProfileUrl('@dansup@pixelfed.org');
|
|
$this->assertEquals($expected, $actual);
|
|
}
|
|
}
|