2018-02-11 22:39:50 +00:00
|
|
|
<?php
|
|
|
|
|
2021-01-23 20:09:16 +00:00
|
|
|
namespace Pterodactyl\Tests\Unit\Rules;
|
2018-02-11 22:39:50 +00:00
|
|
|
|
|
|
|
use Pterodactyl\Rules\Username;
|
2021-01-23 20:09:16 +00:00
|
|
|
use Pterodactyl\Tests\TestCase;
|
2018-02-11 22:39:50 +00:00
|
|
|
|
|
|
|
class UsernameTest extends TestCase
|
|
|
|
{
|
2018-02-18 19:29:28 +00:00
|
|
|
/**
|
|
|
|
* Test that this rule can be cast to a string correctly.
|
|
|
|
*/
|
|
|
|
public function testRuleIsStringable()
|
|
|
|
{
|
|
|
|
$this->assertSame('p_username', (string) new Username);
|
|
|
|
}
|
|
|
|
|
2018-02-11 22:39:50 +00:00
|
|
|
/**
|
|
|
|
* Test valid usernames.
|
|
|
|
*
|
|
|
|
* @dataProvider validUsernameDataProvider
|
|
|
|
*/
|
|
|
|
public function testValidUsernames(string $username)
|
|
|
|
{
|
|
|
|
$this->assertTrue((new Username)->passes('test', $username), 'Assert username is valid.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test invalid usernames return false.
|
|
|
|
*
|
|
|
|
* @dataProvider invalidUsernameDataProvider
|
|
|
|
*/
|
|
|
|
public function testInvalidUsernames(string $username)
|
|
|
|
{
|
|
|
|
$this->assertFalse((new Username)->passes('test', $username), 'Assert username is not valid.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provide valid usernames.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function validUsernameDataProvider(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
['username'],
|
|
|
|
['user_name'],
|
|
|
|
['user.name'],
|
|
|
|
['user-name'],
|
|
|
|
['123username123'],
|
|
|
|
['123-user.name'],
|
|
|
|
['123456'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provide invalid usernames.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function invalidUsernameDataProvider(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
['_username'],
|
|
|
|
['username_'],
|
|
|
|
['_username_'],
|
|
|
|
['-username'],
|
|
|
|
['.username'],
|
|
|
|
['username-'],
|
|
|
|
['username.'],
|
|
|
|
['user*name'],
|
|
|
|
['user^name'],
|
|
|
|
['user#name'],
|
|
|
|
['user+name'],
|
|
|
|
['1234_'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|