2017-10-24 01:12:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Unit\Services\Databases;
|
|
|
|
|
|
|
|
use Mockery as m;
|
|
|
|
use Tests\TestCase;
|
|
|
|
use Pterodactyl\Models\Database;
|
|
|
|
use Illuminate\Database\ConnectionInterface;
|
|
|
|
use Illuminate\Contracts\Encryption\Encrypter;
|
|
|
|
use Pterodactyl\Extensions\DynamicDatabaseConnection;
|
|
|
|
use Pterodactyl\Services\Databases\DatabasePasswordService;
|
|
|
|
use Pterodactyl\Contracts\Repository\DatabaseRepositoryInterface;
|
|
|
|
|
|
|
|
class DatabasePasswordServiceTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Database\ConnectionInterface|\Mockery\Mock
|
|
|
|
*/
|
|
|
|
private $connection;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Extensions\DynamicDatabaseConnection|\Mockery\Mock
|
|
|
|
*/
|
|
|
|
private $dynamic;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Contracts\Encryption\Encrypter|\Mockery\Mock
|
|
|
|
*/
|
|
|
|
private $encrypter;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\DatabaseRepositoryInterface|\Mockery\Mock
|
|
|
|
*/
|
|
|
|
private $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup tests.
|
|
|
|
*/
|
2020-05-09 16:00:52 +00:00
|
|
|
public function setUp(): void
|
2017-10-24 01:12:15 +00:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->connection = m::mock(ConnectionInterface::class);
|
|
|
|
$this->dynamic = m::mock(DynamicDatabaseConnection::class);
|
|
|
|
$this->encrypter = m::mock(Encrypter::class);
|
|
|
|
$this->repository = m::mock(DatabaseRepositoryInterface::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that a password can be updated.
|
|
|
|
*/
|
2019-08-03 21:42:32 +00:00
|
|
|
public function testPasswordIsChanged()
|
2017-10-24 01:12:15 +00:00
|
|
|
{
|
|
|
|
$model = factory(Database::class)->make();
|
|
|
|
|
2019-08-03 21:42:32 +00:00
|
|
|
$this->connection->expects('transaction')->with(m::on(function ($closure) {
|
|
|
|
return is_null($closure());
|
|
|
|
}));
|
2017-10-24 01:12:15 +00:00
|
|
|
|
|
|
|
$this->dynamic->shouldReceive('set')->with('dynamic', $model->database_host_id)->once()->andReturnNull();
|
2019-08-03 21:42:32 +00:00
|
|
|
|
|
|
|
$this->encrypter->expects('encrypt')->with(m::on(function ($string) {
|
2019-08-05 17:02:31 +00:00
|
|
|
preg_match_all('/[!@+=.^-]/', $string, $matches, PREG_SET_ORDER);
|
2019-08-03 21:42:32 +00:00
|
|
|
$this->assertTrue(count($matches) >= 2 && count($matches) <= 6, "Failed asserting that [{$string}] contains 2 to 6 special characters.");
|
|
|
|
$this->assertTrue(strlen($string) === 24, "Failed asserting that [{$string}] is 24 characters in length.");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}))->andReturn('enc123');
|
2017-10-24 01:12:15 +00:00
|
|
|
|
2018-01-05 22:33:50 +00:00
|
|
|
$this->repository->shouldReceive('withoutFreshModel')->withNoArgs()->once()->andReturnSelf();
|
2017-10-24 01:12:15 +00:00
|
|
|
$this->repository->shouldReceive('update')->with($model->id, ['password' => 'enc123'])->once()->andReturn(true);
|
|
|
|
|
2018-01-05 04:49:50 +00:00
|
|
|
$this->repository->shouldReceive('dropUser')->with($model->username, $model->remote)->once()->andReturn(true);
|
2019-08-03 21:42:32 +00:00
|
|
|
$this->repository->shouldReceive('createUser')->with($model->username, $model->remote, m::any())->once()->andReturn(true);
|
2018-01-05 04:49:50 +00:00
|
|
|
$this->repository->shouldReceive('assignUserToDatabase')->with($model->database, $model->username, $model->remote)->once()->andReturn(true);
|
|
|
|
$this->repository->shouldReceive('flush')->withNoArgs()->once()->andReturn(true);
|
2017-10-24 01:12:15 +00:00
|
|
|
|
2019-08-03 21:42:32 +00:00
|
|
|
$response = $this->getService()->handle($model);
|
2017-10-24 01:12:15 +00:00
|
|
|
$this->assertNotEmpty($response);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an instance of the service with mocked dependencies.
|
|
|
|
*
|
|
|
|
* @return \Pterodactyl\Services\Databases\DatabasePasswordService
|
|
|
|
*/
|
|
|
|
private function getService(): DatabasePasswordService
|
|
|
|
{
|
|
|
|
return new DatabasePasswordService($this->connection, $this->repository, $this->dynamic, $this->encrypter);
|
|
|
|
}
|
|
|
|
}
|