2017-10-24 01:12:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Unit\Services\Databases\Hosts;
|
|
|
|
|
|
|
|
use Mockery as m;
|
|
|
|
use Tests\TestCase;
|
|
|
|
use Pterodactyl\Models\DatabaseHost;
|
|
|
|
use Illuminate\Database\DatabaseManager;
|
|
|
|
use Illuminate\Database\ConnectionInterface;
|
|
|
|
use Illuminate\Contracts\Encryption\Encrypter;
|
|
|
|
use Pterodactyl\Extensions\DynamicDatabaseConnection;
|
|
|
|
use Pterodactyl\Services\Databases\Hosts\HostCreationService;
|
|
|
|
use Pterodactyl\Contracts\Repository\DatabaseHostRepositoryInterface;
|
|
|
|
|
|
|
|
class HostCreationServiceTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Database\ConnectionInterface|\Mockery\Mock
|
|
|
|
*/
|
|
|
|
private $connection;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Database\DatabaseManager|\Mockery\Mock
|
|
|
|
*/
|
|
|
|
private $databaseManager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Extensions\DynamicDatabaseConnection|\Mockery\Mock
|
|
|
|
*/
|
|
|
|
private $dynamic;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Contracts\Encryption\Encrypter|\Mockery\Mock
|
|
|
|
*/
|
|
|
|
private $encrypter;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\DatabaseHostRepositoryInterface|\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->databaseManager = m::mock(DatabaseManager::class);
|
|
|
|
$this->dynamic = m::mock(DynamicDatabaseConnection::class);
|
|
|
|
$this->encrypter = m::mock(Encrypter::class);
|
|
|
|
$this->repository = m::mock(DatabaseHostRepositoryInterface::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that a database host can be created.
|
|
|
|
*/
|
|
|
|
public function testDatabaseHostIsCreated()
|
|
|
|
{
|
|
|
|
$model = factory(DatabaseHost::class)->make();
|
|
|
|
|
2019-08-03 19:33:28 +00:00
|
|
|
$this->connection->expects('transaction')->with(m::on(function ($closure) {
|
|
|
|
return ! is_null($closure());
|
|
|
|
}))->andReturn($model);
|
|
|
|
|
|
|
|
$this->encrypter->expects('encrypt')->with('test123')->andReturn('enc123');
|
|
|
|
$this->repository->expects('create')->with(m::subset([
|
2017-10-24 01:12:15 +00:00
|
|
|
'password' => 'enc123',
|
|
|
|
'username' => $model->username,
|
|
|
|
'node_id' => $model->node_id,
|
2019-08-03 19:33:28 +00:00
|
|
|
]))->andReturn($model);
|
2017-10-24 01:12:15 +00:00
|
|
|
|
2019-08-03 19:33:28 +00:00
|
|
|
$this->dynamic->expects('set')->with('dynamic', $model)->andReturnNull();
|
|
|
|
$this->databaseManager->expects('connection')->with('dynamic')->andReturnSelf();
|
|
|
|
$this->databaseManager->expects('select')->with('SELECT 1 FROM dual')->andReturnNull();
|
2017-10-24 01:12:15 +00:00
|
|
|
|
|
|
|
$response = $this->getService()->handle([
|
|
|
|
'password' => 'test123',
|
|
|
|
'username' => $model->username,
|
|
|
|
'node_id' => $model->node_id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertNotEmpty($response);
|
|
|
|
$this->assertSame($model, $response);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an instance of the service with mocked dependencies.
|
|
|
|
*
|
|
|
|
* @return \Pterodactyl\Services\Databases\Hosts\HostCreationService
|
|
|
|
*/
|
|
|
|
private function getService(): HostCreationService
|
|
|
|
{
|
|
|
|
return new HostCreationService(
|
|
|
|
$this->connection,
|
|
|
|
$this->databaseManager,
|
|
|
|
$this->repository,
|
|
|
|
$this->dynamic,
|
|
|
|
$this->encrypter
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|