2017-09-27 03:54:34 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Tests\Unit\Services\Servers;
|
|
|
|
|
|
|
|
use Mockery as m;
|
|
|
|
use Tests\TestCase;
|
2017-10-27 04:49:54 +00:00
|
|
|
use Pterodactyl\Models\User;
|
2017-09-27 03:54:34 +00:00
|
|
|
use Pterodactyl\Models\Server;
|
|
|
|
use Illuminate\Database\ConnectionInterface;
|
|
|
|
use Pterodactyl\Services\Servers\EnvironmentService;
|
|
|
|
use Pterodactyl\Services\Servers\VariableValidatorService;
|
|
|
|
use Pterodactyl\Services\Servers\StartupModificationService;
|
|
|
|
use Pterodactyl\Contracts\Repository\ServerRepositoryInterface;
|
|
|
|
use Pterodactyl\Contracts\Repository\ServerVariableRepositoryInterface;
|
|
|
|
use Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface as DaemonServerRepository;
|
|
|
|
|
|
|
|
class StartupModificationServiceTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface|\Mockery\Mock
|
|
|
|
*/
|
2017-10-27 04:49:54 +00:00
|
|
|
private $daemonServerRepository;
|
2017-09-27 03:54:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Database\ConnectionInterface|\Mockery\Mock
|
|
|
|
*/
|
2017-10-27 04:49:54 +00:00
|
|
|
private $connection;
|
2017-09-27 03:54:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Services\Servers\EnvironmentService|\Mockery\Mock
|
|
|
|
*/
|
2017-10-27 04:49:54 +00:00
|
|
|
private $environmentService;
|
2017-09-27 03:54:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\ServerRepositoryInterface|\Mockery\Mock
|
|
|
|
*/
|
2017-10-27 04:49:54 +00:00
|
|
|
private $repository;
|
2017-09-27 03:54:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Contracts\Repository\ServerVariableRepositoryInterface|\Mockery\Mock
|
|
|
|
*/
|
2017-10-27 04:49:54 +00:00
|
|
|
private $serverVariableRepository;
|
2017-09-27 03:54:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Services\Servers\VariableValidatorService|\Mockery\Mock
|
|
|
|
*/
|
2017-10-27 04:49:54 +00:00
|
|
|
private $validatorService;
|
2017-09-27 03:54:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup tests.
|
|
|
|
*/
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->daemonServerRepository = m::mock(DaemonServerRepository::class);
|
|
|
|
$this->connection = m::mock(ConnectionInterface::class);
|
|
|
|
$this->environmentService = m::mock(EnvironmentService::class);
|
|
|
|
$this->repository = m::mock(ServerRepositoryInterface::class);
|
|
|
|
$this->serverVariableRepository = m::mock(ServerVariableRepositoryInterface::class);
|
|
|
|
$this->validatorService = m::mock(VariableValidatorService::class);
|
2017-10-27 04:49:54 +00:00
|
|
|
}
|
2017-09-27 03:54:34 +00:00
|
|
|
|
2017-10-27 04:49:54 +00:00
|
|
|
/**
|
|
|
|
* Test startup modification as a non-admin user.
|
|
|
|
*/
|
|
|
|
public function testStartupModifiedAsNormalUser()
|
|
|
|
{
|
|
|
|
$model = factory(Server::class)->make();
|
|
|
|
|
|
|
|
$this->connection->shouldReceive('beginTransaction')->withNoArgs()->once()->andReturnNull();
|
|
|
|
$this->validatorService->shouldReceive('setUserLevel')->with(User::USER_LEVEL_USER)->once()->andReturnNull();
|
|
|
|
$this->validatorService->shouldReceive('handle')->with(123, ['test' => 'abcd1234'])->once()->andReturn(
|
|
|
|
collect([(object) ['id' => 1, 'value' => 'stored-value']])
|
2017-09-27 03:54:34 +00:00
|
|
|
);
|
2017-10-27 04:49:54 +00:00
|
|
|
|
|
|
|
$this->serverVariableRepository->shouldReceive('withoutFresh')->withNoArgs()->once()->andReturnSelf();
|
|
|
|
$this->serverVariableRepository->shouldReceive('updateOrCreate')->with([
|
|
|
|
'server_id' => $model->id,
|
|
|
|
'variable_id' => 1,
|
|
|
|
], ['variable_value' => 'stored-value'])->once()->andReturnNull();
|
|
|
|
|
|
|
|
$this->environmentService->shouldReceive('handle')->with($model)->once()->andReturn(['env']);
|
|
|
|
$this->daemonServerRepository->shouldReceive('setNode')->with($model->node_id)->once()->andReturnSelf();
|
|
|
|
$this->daemonServerRepository->shouldReceive('setAccessServer')->with($model->uuid)->once()->andReturnSelf();
|
|
|
|
$this->daemonServerRepository->shouldReceive('update')->with([
|
|
|
|
'build' => ['env|overwrite' => ['env']],
|
|
|
|
])->once()->andReturnSelf();
|
|
|
|
|
|
|
|
$this->connection->shouldReceive('commit')->withNoArgs()->once()->andReturnNull();
|
|
|
|
|
|
|
|
$this->getService()->handle($model, ['egg_id' => 123, 'environment' => ['test' => 'abcd1234']]);
|
|
|
|
$this->assertTrue(true);
|
2017-09-27 03:54:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-27 04:49:54 +00:00
|
|
|
* Test startup modification as an admin user.
|
2017-09-27 03:54:34 +00:00
|
|
|
*/
|
2017-10-27 04:49:54 +00:00
|
|
|
public function testStartupModificationAsAdminUser()
|
2017-09-27 03:54:34 +00:00
|
|
|
{
|
2017-10-27 04:49:54 +00:00
|
|
|
$model = factory(Server::class)->make([
|
|
|
|
'egg_id' => 123,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->connection->shouldReceive('beginTransaction')->withNoArgs()->once()->andReturnNull();
|
|
|
|
$this->validatorService->shouldReceive('setUserLevel')->with(User::USER_LEVEL_ADMIN)->once()->andReturnNull();
|
|
|
|
$this->validatorService->shouldReceive('handle')->with(456, ['test' => 'abcd1234'])->once()->andReturn(
|
|
|
|
collect([(object) ['id' => 1, 'value' => 'stored-value']])
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->serverVariableRepository->shouldReceive('withoutFresh')->withNoArgs()->once()->andReturnSelf();
|
|
|
|
$this->serverVariableRepository->shouldReceive('updateOrCreate')->with([
|
|
|
|
'server_id' => $model->id,
|
|
|
|
'variable_id' => 1,
|
|
|
|
], ['variable_value' => 'stored-value'])->once()->andReturnNull();
|
|
|
|
|
|
|
|
$this->environmentService->shouldReceive('handle')->with($model)->once()->andReturn(['env']);
|
|
|
|
|
|
|
|
$this->repository->shouldReceive('update')->with($model->id, m::subset([
|
|
|
|
'installed' => 0,
|
|
|
|
'egg_id' => 456,
|
|
|
|
'pack_id' => 789,
|
|
|
|
]))->once()->andReturn($model);
|
|
|
|
$this->repository->shouldReceive('withColumns->getDaemonServiceData')->with($model->id)->once()->andReturn([]);
|
2017-09-27 03:54:34 +00:00
|
|
|
|
2017-10-27 04:49:54 +00:00
|
|
|
$this->daemonServerRepository->shouldReceive('setNode')->with($model->node_id)->once()->andReturnSelf();
|
|
|
|
$this->daemonServerRepository->shouldReceive('setAccessServer')->with($model->uuid)->once()->andReturnSelf();
|
|
|
|
$this->daemonServerRepository->shouldReceive('update')->with([
|
|
|
|
'build' => [
|
|
|
|
'env|overwrite' => ['env'],
|
|
|
|
],
|
|
|
|
'service' => [
|
|
|
|
'skip_scripts' => false,
|
|
|
|
],
|
|
|
|
])->once()->andReturnSelf();
|
|
|
|
|
|
|
|
$this->connection->shouldReceive('commit')->withNoArgs()->once()->andReturnNull();
|
|
|
|
|
|
|
|
$service = $this->getService();
|
|
|
|
$service->setUserLevel(User::USER_LEVEL_ADMIN);
|
|
|
|
$service->handle($model, ['egg_id' => 456, 'pack_id' => 789, 'environment' => ['test' => 'abcd1234']]);
|
2017-09-27 03:54:34 +00:00
|
|
|
$this->assertTrue(true);
|
|
|
|
}
|
2017-10-27 04:49:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an instance of the service with mocked dependencies.
|
|
|
|
*
|
|
|
|
* @return \Pterodactyl\Services\Servers\StartupModificationService
|
|
|
|
*/
|
|
|
|
private function getService(): StartupModificationService
|
|
|
|
{
|
|
|
|
return new StartupModificationService(
|
|
|
|
$this->connection,
|
|
|
|
$this->daemonServerRepository,
|
|
|
|
$this->environmentService,
|
|
|
|
$this->repository,
|
|
|
|
$this->serverVariableRepository,
|
|
|
|
$this->validatorService
|
|
|
|
);
|
|
|
|
}
|
2017-09-27 03:54:34 +00:00
|
|
|
}
|