2017-07-23 01:15:01 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-07-23 01:15:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Tests\Unit\Services\Servers;
|
|
|
|
|
2017-08-13 19:55:09 +00:00
|
|
|
use Exception;
|
2017-07-23 01:15:01 +00:00
|
|
|
use Mockery as m;
|
2017-08-05 22:26:30 +00:00
|
|
|
use Tests\TestCase;
|
|
|
|
use Illuminate\Log\Writer;
|
2017-07-23 01:15:01 +00:00
|
|
|
use phpmock\phpunit\PHPMock;
|
2017-08-05 22:26:30 +00:00
|
|
|
use Illuminate\Database\DatabaseManager;
|
2017-08-16 04:21:01 +00:00
|
|
|
use GuzzleHttp\Exception\RequestException;
|
|
|
|
use Pterodactyl\Exceptions\DisplayException;
|
2017-08-27 20:10:51 +00:00
|
|
|
use Pterodactyl\Services\Servers\ServerCreationService;
|
2017-07-23 01:15:01 +00:00
|
|
|
use Pterodactyl\Services\Servers\VariableValidatorService;
|
2017-08-05 22:26:30 +00:00
|
|
|
use Pterodactyl\Services\Servers\UsernameGenerationService;
|
|
|
|
use Pterodactyl\Contracts\Repository\NodeRepositoryInterface;
|
|
|
|
use Pterodactyl\Contracts\Repository\UserRepositoryInterface;
|
|
|
|
use Pterodactyl\Contracts\Repository\ServerRepositoryInterface;
|
2017-07-23 01:15:01 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\AllocationRepositoryInterface;
|
2017-08-05 22:26:30 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\ServerVariableRepositoryInterface;
|
2017-07-23 01:15:01 +00:00
|
|
|
use Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface as DaemonServerRepositoryInterface;
|
|
|
|
|
2017-08-27 20:10:51 +00:00
|
|
|
class ServerCreationServiceTest extends TestCase
|
2017-07-23 01:15:01 +00:00
|
|
|
{
|
|
|
|
use PHPMock;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\AllocationRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $allocationRepository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $daemonServerRepository;
|
|
|
|
|
2017-08-13 19:55:09 +00:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $data = [
|
|
|
|
'node_id' => 1,
|
|
|
|
'name' => 'SomeName',
|
|
|
|
'description' => null,
|
|
|
|
'owner_id' => 1,
|
|
|
|
'memory' => 128,
|
|
|
|
'disk' => 128,
|
|
|
|
'swap' => 0,
|
|
|
|
'io' => 500,
|
|
|
|
'cpu' => 0,
|
|
|
|
'allocation_id' => 1,
|
|
|
|
'allocation_additional' => [2, 3],
|
|
|
|
'environment' => [
|
|
|
|
'TEST_VAR_1' => 'var1-value',
|
|
|
|
],
|
|
|
|
'service_id' => 1,
|
|
|
|
'option_id' => 1,
|
|
|
|
'startup' => 'startup-param',
|
|
|
|
'docker_image' => 'some/image',
|
|
|
|
];
|
|
|
|
|
2017-07-23 01:15:01 +00:00
|
|
|
/**
|
|
|
|
* @var \Illuminate\Database\DatabaseManager
|
|
|
|
*/
|
|
|
|
protected $database;
|
|
|
|
|
2017-08-13 19:55:09 +00:00
|
|
|
/**
|
|
|
|
* @var \GuzzleHttp\Exception\RequestException
|
|
|
|
*/
|
|
|
|
protected $exception;
|
|
|
|
|
2017-07-23 01:15:01 +00:00
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\NodeRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $nodeRepository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\ServerRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\ServerVariableRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $serverVariableRepository;
|
|
|
|
|
|
|
|
/**
|
2017-08-27 20:10:51 +00:00
|
|
|
* @var \Pterodactyl\Services\Servers\ServerCreationService
|
2017-07-23 01:15:01 +00:00
|
|
|
*/
|
|
|
|
protected $service;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\UserRepositoryInterface
|
|
|
|
*/
|
|
|
|
protected $userRepository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Services\Servers\UsernameGenerationService
|
|
|
|
*/
|
|
|
|
protected $usernameService;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Services\Servers\VariableValidatorService
|
|
|
|
*/
|
|
|
|
protected $validatorService;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Ramsey\Uuid\Uuid
|
|
|
|
*/
|
|
|
|
protected $uuid;
|
|
|
|
|
2017-07-24 00:57:43 +00:00
|
|
|
/**
|
|
|
|
* @var \Illuminate\Log\Writer
|
|
|
|
*/
|
|
|
|
protected $writer;
|
|
|
|
|
2017-07-23 01:15:01 +00:00
|
|
|
/**
|
|
|
|
* Setup tests.
|
|
|
|
*/
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->allocationRepository = m::mock(AllocationRepositoryInterface::class);
|
|
|
|
$this->daemonServerRepository = m::mock(DaemonServerRepositoryInterface::class);
|
|
|
|
$this->database = m::mock(DatabaseManager::class);
|
2017-08-13 19:55:09 +00:00
|
|
|
$this->exception = m::mock(RequestException::class);
|
2017-07-23 01:15:01 +00:00
|
|
|
$this->nodeRepository = m::mock(NodeRepositoryInterface::class);
|
|
|
|
$this->repository = m::mock(ServerRepositoryInterface::class);
|
|
|
|
$this->serverVariableRepository = m::mock(ServerVariableRepositoryInterface::class);
|
|
|
|
$this->userRepository = m::mock(UserRepositoryInterface::class);
|
|
|
|
$this->usernameService = m::mock(UsernameGenerationService::class);
|
|
|
|
$this->validatorService = m::mock(VariableValidatorService::class);
|
|
|
|
$this->uuid = m::mock('overload:Ramsey\Uuid\Uuid');
|
2017-07-24 00:57:43 +00:00
|
|
|
$this->writer = m::mock(Writer::class);
|
2017-07-23 01:15:01 +00:00
|
|
|
|
2017-09-14 04:07:02 +00:00
|
|
|
$this->getFunctionMock('\\Pterodactyl\\Services\\Servers', 'str_random')
|
|
|
|
->expects($this->any())->willReturn('random_string');
|
2017-07-23 01:15:01 +00:00
|
|
|
|
|
|
|
$this->getFunctionMock('\\Ramsey\\Uuid\\Uuid', 'uuid4')
|
|
|
|
->expects($this->any())->willReturn('s');
|
|
|
|
|
2017-08-27 20:10:51 +00:00
|
|
|
$this->service = new ServerCreationService(
|
2017-07-23 01:15:01 +00:00
|
|
|
$this->allocationRepository,
|
|
|
|
$this->daemonServerRepository,
|
|
|
|
$this->database,
|
|
|
|
$this->nodeRepository,
|
|
|
|
$this->repository,
|
|
|
|
$this->serverVariableRepository,
|
|
|
|
$this->userRepository,
|
|
|
|
$this->usernameService,
|
2017-07-24 00:57:43 +00:00
|
|
|
$this->validatorService,
|
|
|
|
$this->writer
|
2017-07-23 01:15:01 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test core functionality of the creation process.
|
|
|
|
*/
|
|
|
|
public function testCreateShouldHitAllOfTheNecessaryServicesAndStoreTheServer()
|
|
|
|
{
|
2017-07-25 02:34:10 +00:00
|
|
|
$this->validatorService->shouldReceive('isAdmin')->withNoArgs()->once()->andReturnSelf()
|
2017-08-13 19:55:09 +00:00
|
|
|
->shouldReceive('setFields')->with($this->data['environment'])->once()->andReturnSelf()
|
|
|
|
->shouldReceive('validate')->with($this->data['option_id'])->once()->andReturnSelf();
|
2017-07-23 01:15:01 +00:00
|
|
|
|
|
|
|
$this->database->shouldReceive('beginTransaction')->withNoArgs()->once()->andReturnNull();
|
|
|
|
$this->uuid->shouldReceive('uuid4')->withNoArgs()->once()->andReturnSelf()
|
|
|
|
->shouldReceive('toString')->withNoArgs()->once()->andReturn('uuid-0000');
|
2017-09-14 04:07:02 +00:00
|
|
|
$this->usernameService->shouldReceive('generate')->with($this->data['name'], 'random_string')
|
2017-07-23 01:15:01 +00:00
|
|
|
->once()->andReturn('user_name');
|
|
|
|
|
|
|
|
$this->repository->shouldReceive('create')->with([
|
|
|
|
'uuid' => 'uuid-0000',
|
2017-09-14 04:07:02 +00:00
|
|
|
'uuidShort' => 'random_string',
|
2017-08-13 19:55:09 +00:00
|
|
|
'node_id' => $this->data['node_id'],
|
|
|
|
'name' => $this->data['name'],
|
|
|
|
'description' => $this->data['description'],
|
2017-07-23 01:15:01 +00:00
|
|
|
'skip_scripts' => false,
|
|
|
|
'suspended' => false,
|
2017-08-13 19:55:09 +00:00
|
|
|
'owner_id' => $this->data['owner_id'],
|
|
|
|
'memory' => $this->data['memory'],
|
|
|
|
'swap' => $this->data['swap'],
|
|
|
|
'disk' => $this->data['disk'],
|
|
|
|
'io' => $this->data['io'],
|
|
|
|
'cpu' => $this->data['cpu'],
|
2017-07-23 01:15:01 +00:00
|
|
|
'oom_disabled' => false,
|
2017-08-13 19:55:09 +00:00
|
|
|
'allocation_id' => $this->data['allocation_id'],
|
|
|
|
'service_id' => $this->data['service_id'],
|
|
|
|
'option_id' => $this->data['option_id'],
|
2017-07-23 01:15:01 +00:00
|
|
|
'pack_id' => null,
|
2017-08-13 19:55:09 +00:00
|
|
|
'startup' => $this->data['startup'],
|
2017-09-14 04:07:02 +00:00
|
|
|
'daemonSecret' => 'random_string',
|
2017-08-13 19:55:09 +00:00
|
|
|
'image' => $this->data['docker_image'],
|
2017-07-23 01:15:01 +00:00
|
|
|
'username' => 'user_name',
|
|
|
|
'sftp_password' => null,
|
|
|
|
])->once()->andReturn((object) [
|
|
|
|
'node_id' => 1,
|
|
|
|
'id' => 1,
|
|
|
|
]);
|
|
|
|
|
2017-08-13 19:55:09 +00:00
|
|
|
$this->allocationRepository->shouldReceive('assignAllocationsToServer')->with(1, [1, 2, 3])->once()->andReturnNull();
|
2017-07-23 01:15:01 +00:00
|
|
|
$this->validatorService->shouldReceive('getResults')->withNoArgs()->once()->andReturn([[
|
|
|
|
'id' => 1,
|
|
|
|
'key' => 'TEST_VAR_1',
|
|
|
|
'value' => 'var1-value',
|
|
|
|
]]);
|
|
|
|
|
|
|
|
$this->serverVariableRepository->shouldReceive('insert')->with([[
|
|
|
|
'server_id' => 1,
|
|
|
|
'variable_id' => 1,
|
|
|
|
'variable_value' => 'var1-value',
|
|
|
|
]])->once()->andReturnNull();
|
|
|
|
$this->daemonServerRepository->shouldReceive('setNode')->with(1)->once()->andReturnSelf()
|
|
|
|
->shouldReceive('create')->with(1)->once()->andReturnNull();
|
|
|
|
$this->database->shouldReceive('commit')->withNoArgs()->once()->andReturnNull();
|
|
|
|
|
2017-08-13 19:55:09 +00:00
|
|
|
$response = $this->service->create($this->data);
|
2017-07-23 01:15:01 +00:00
|
|
|
|
|
|
|
$this->assertEquals(1, $response->id);
|
|
|
|
$this->assertEquals(1, $response->node_id);
|
|
|
|
}
|
2017-08-13 19:55:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test handling of node timeout or other daemon error.
|
|
|
|
*/
|
|
|
|
public function testExceptionShouldBeThrownIfTheRequestFails()
|
|
|
|
{
|
|
|
|
$this->validatorService->shouldReceive('isAdmin->setFields->validate->getResults')->once()->andReturn([]);
|
|
|
|
$this->database->shouldReceive('beginTransaction')->withNoArgs()->once()->andReturnNull();
|
|
|
|
$this->uuid->shouldReceive('uuid4->toString')->once()->andReturn('uuid-0000');
|
|
|
|
$this->usernameService->shouldReceive('generate')->once()->andReturn('user_name');
|
|
|
|
$this->repository->shouldReceive('create')->once()->andReturn((object) [
|
|
|
|
'node_id' => 1,
|
|
|
|
'id' => 1,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->allocationRepository->shouldReceive('assignAllocationsToServer')->once()->andReturnNull();
|
|
|
|
$this->serverVariableRepository->shouldReceive('insert')->with([])->once()->andReturnNull();
|
|
|
|
$this->daemonServerRepository->shouldReceive('setNode->create')->once()->andThrow($this->exception);
|
|
|
|
$this->exception->shouldReceive('getResponse')->withNoArgs()->once()->andReturnNull();
|
|
|
|
$this->writer->shouldReceive('warning')->with($this->exception)->once()->andReturnNull();
|
|
|
|
$this->database->shouldReceive('rollBack')->withNoArgs()->once()->andReturnNull();
|
|
|
|
|
|
|
|
try {
|
|
|
|
$this->service->create($this->data);
|
|
|
|
} catch (Exception $exception) {
|
|
|
|
$this->assertInstanceOf(DisplayException::class, $exception);
|
|
|
|
$this->assertEquals(trans('admin/server.exceptions.daemon_exception', [
|
|
|
|
'code' => 'E_CONN_REFUSED',
|
|
|
|
]), $exception->getMessage());
|
|
|
|
}
|
|
|
|
}
|
2017-07-23 01:15:01 +00:00
|
|
|
}
|