Fix node update tests
This commit is contained in:
parent
a5d9faf6b2
commit
83a59cdf4f
10 changed files with 227 additions and 363 deletions
|
@ -1,17 +1,14 @@
|
|||
<?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\Nodes;
|
||||
|
||||
use Mockery as m;
|
||||
use Tests\TestCase;
|
||||
use Ramsey\Uuid\Uuid;
|
||||
use phpmock\phpunit\PHPMock;
|
||||
use Pterodactyl\Models\Node;
|
||||
use Ramsey\Uuid\UuidFactory;
|
||||
use Illuminate\Contracts\Encryption\Encrypter;
|
||||
use Pterodactyl\Services\Nodes\NodeCreationService;
|
||||
use Pterodactyl\Contracts\Repository\NodeRepositoryInterface;
|
||||
|
||||
|
@ -20,14 +17,14 @@ class NodeCreationServiceTest extends TestCase
|
|||
use PHPMock;
|
||||
|
||||
/**
|
||||
* @var \Pterodactyl\Contracts\Repository\NodeRepositoryInterface
|
||||
* @var \Mockery\MockInterface
|
||||
*/
|
||||
protected $repository;
|
||||
private $repository;
|
||||
|
||||
/**
|
||||
* @var \Pterodactyl\Services\Nodes\NodeCreationService
|
||||
* @var \Mockery\MockInterface
|
||||
*/
|
||||
protected $service;
|
||||
private $encrypter;
|
||||
|
||||
/**
|
||||
* Setup tests.
|
||||
|
@ -36,9 +33,15 @@ class NodeCreationServiceTest extends TestCase
|
|||
{
|
||||
parent::setUp();
|
||||
|
||||
$this->repository = m::mock(NodeRepositoryInterface::class);
|
||||
/* @noinspection PhpParamsInspection */
|
||||
Uuid::setFactory(
|
||||
m::mock(UuidFactory::class . '[uuid4]', [
|
||||
'uuid4' => Uuid::fromString('00000000-0000-0000-0000-000000000000'),
|
||||
])
|
||||
);
|
||||
|
||||
$this->service = new NodeCreationService($this->repository);
|
||||
$this->repository = m::mock(NodeRepositoryInterface::class);
|
||||
$this->encrypter = m::mock(Encrypter::class);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -46,14 +49,31 @@ class NodeCreationServiceTest extends TestCase
|
|||
*/
|
||||
public function testNodeIsCreatedAndDaemonSecretIsGenerated()
|
||||
{
|
||||
$this->getFunctionMock('\\Pterodactyl\\Services\\Nodes', 'str_random')
|
||||
->expects($this->once())->willReturn('random_string');
|
||||
/** @var \Pterodactyl\Models\Node $node */
|
||||
$node = factory(Node::class)->make();
|
||||
|
||||
$this->repository->shouldReceive('create')->with([
|
||||
'name' => 'NodeName',
|
||||
'daemonSecret' => 'random_string',
|
||||
])->once()->andReturnNull();
|
||||
$this->encrypter->expects('encrypt')->with(m::on(function ($value) {
|
||||
return strlen($value) === Node::DAEMON_TOKEN_LENGTH;
|
||||
}))->andReturns('encrypted_value');
|
||||
|
||||
$this->assertNull($this->service->handle(['name' => 'NodeName']));
|
||||
$this->repository->expects('create')->with(m::on(function ($value) {
|
||||
$this->assertTrue(is_array($value));
|
||||
$this->assertSame('NodeName', $value['name']);
|
||||
$this->assertSame('00000000-0000-0000-0000-000000000000', $value['uuid']);
|
||||
$this->assertSame('encrypted_value', $value['daemon_token']);
|
||||
$this->assertTrue(strlen($value['daemon_token_id']) === Node::DAEMON_TOKEN_ID_LENGTH);
|
||||
|
||||
return true;
|
||||
}), true, true)->andReturn($node);
|
||||
|
||||
$this->assertSame($node, $this->getService()->handle(['name' => 'NodeName']));
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Pterodactyl\Services\Nodes\NodeCreationService
|
||||
*/
|
||||
private function getService()
|
||||
{
|
||||
return new NodeCreationService($this->encrypter, $this->repository);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@ namespace Tests\Unit\Services\Nodes;
|
|||
use Mockery as m;
|
||||
use Tests\TestCase;
|
||||
use Pterodactyl\Models\Node;
|
||||
use Pterodactyl\Exceptions\DisplayException;
|
||||
use Illuminate\Contracts\Translation\Translator;
|
||||
use Pterodactyl\Services\Nodes\NodeDeletionService;
|
||||
use Pterodactyl\Contracts\Repository\NodeRepositoryInterface;
|
||||
|
@ -71,11 +72,11 @@ class NodeDeletionServiceTest extends TestCase
|
|||
|
||||
/**
|
||||
* Test that an exception is thrown if servers are attached to the node.
|
||||
*
|
||||
* @expectedException \Pterodactyl\Exceptions\DisplayException
|
||||
*/
|
||||
public function testExceptionIsThrownIfServersAreAttachedToNode()
|
||||
{
|
||||
$this->expectException(DisplayException::class);
|
||||
|
||||
$this->serverRepository->shouldReceive('setColumns')->with('id')->once()->andReturnSelf()
|
||||
->shouldReceive('findCountWhere')->with([['node_id', '=', 1]])->once()->andReturn(1);
|
||||
$this->translator->shouldReceive('trans')->with('exceptions.node.servers_attached')->once()->andReturnNull();
|
||||
|
|
|
@ -2,34 +2,44 @@
|
|||
|
||||
namespace Tests\Unit\Services\Nodes;
|
||||
|
||||
use Exception;
|
||||
use Mockery as m;
|
||||
use Tests\TestCase;
|
||||
use GuzzleHttp\Psr7\Request;
|
||||
use phpmock\phpunit\PHPMock;
|
||||
use Pterodactyl\Models\Node;
|
||||
use GuzzleHttp\Psr7\Response;
|
||||
use Tests\Traits\MocksRequestException;
|
||||
use GuzzleHttp\Exception\ConnectException;
|
||||
use GuzzleHttp\Exception\TransferException;
|
||||
use Illuminate\Database\ConnectionInterface;
|
||||
use Illuminate\Contracts\Encryption\Encrypter;
|
||||
use Pterodactyl\Services\Nodes\NodeUpdateService;
|
||||
use Pterodactyl\Contracts\Repository\NodeRepositoryInterface;
|
||||
use Pterodactyl\Contracts\Repository\Daemon\ConfigurationRepositoryInterface;
|
||||
use Pterodactyl\Repositories\Eloquent\NodeRepository;
|
||||
use Pterodactyl\Repositories\Wings\DaemonConfigurationRepository;
|
||||
use Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException;
|
||||
use Pterodactyl\Exceptions\Service\Node\ConfigurationNotPersistedException;
|
||||
|
||||
class NodeUpdateServiceTest extends TestCase
|
||||
{
|
||||
use PHPMock, MocksRequestException;
|
||||
|
||||
/**
|
||||
* @var \Illuminate\Database\ConnectionInterface|\Mockery\Mock
|
||||
* @var \Mockery\MockInterface
|
||||
*/
|
||||
private $connection;
|
||||
|
||||
/**
|
||||
* @var \Pterodactyl\Contracts\Repository\Daemon\ConfigurationRepositoryInterface|\Mockery\Mock
|
||||
* @var \Mockery\MockInterface
|
||||
*/
|
||||
private $configRepository;
|
||||
private $configurationRepository;
|
||||
|
||||
/**
|
||||
* @var \Pterodactyl\Contracts\Repository\NodeRepositoryInterface|\Mockery\Mock
|
||||
* @var \Mockery\MockInterface
|
||||
*/
|
||||
private $encrypter;
|
||||
|
||||
/**
|
||||
* @var \Mockery\MockInterface
|
||||
*/
|
||||
private $repository;
|
||||
|
||||
|
@ -41,8 +51,9 @@ class NodeUpdateServiceTest extends TestCase
|
|||
parent::setUp();
|
||||
|
||||
$this->connection = m::mock(ConnectionInterface::class);
|
||||
$this->configRepository = m::mock(ConfigurationRepositoryInterface::class);
|
||||
$this->repository = m::mock(NodeRepositoryInterface::class);
|
||||
$this->encrypter = m::mock(Encrypter::class);
|
||||
$this->configurationRepository = m::mock(DaemonConfigurationRepository::class);
|
||||
$this->repository = m::mock(NodeRepository::class);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -50,36 +61,59 @@ class NodeUpdateServiceTest extends TestCase
|
|||
*/
|
||||
public function testNodeIsUpdatedAndDaemonSecretIsReset()
|
||||
{
|
||||
$model = factory(Node::class)->make();
|
||||
$updatedModel = factory(Node::class)->make([
|
||||
'name' => 'New Name',
|
||||
'daemonSecret' => 'abcd1234',
|
||||
/** @var \Pterodactyl\Models\Node $model */
|
||||
$model = factory(Node::class)->make([
|
||||
'fqdn' => 'https://example.com',
|
||||
]);
|
||||
|
||||
$this->getFunctionMock('\\Pterodactyl\\Services\\Nodes', 'str_random')
|
||||
->expects($this->once())->willReturn($updatedModel->daemonSecret);
|
||||
/** @var \Pterodactyl\Models\Node $updatedModel */
|
||||
$updatedModel = factory(Node::class)->make([
|
||||
'name' => 'New Name',
|
||||
'fqdn' => 'https://example2.com',
|
||||
]);
|
||||
|
||||
$this->connection->shouldReceive('beginTransaction')->withNoArgs()->once()->andReturnNull();
|
||||
$this->repository->shouldReceive('update')->with($model->id, [
|
||||
$this->connection->expects('transaction')->with(m::on(function ($closure) use ($updatedModel) {
|
||||
$response = $closure();
|
||||
|
||||
$this->assertIsArray($response);
|
||||
$this->assertTrue(count($response) === 2);
|
||||
$this->assertSame($updatedModel, $response[0]);
|
||||
$this->assertFalse($response[1]);
|
||||
|
||||
return true;
|
||||
}))->andReturns([$updatedModel, false]);
|
||||
|
||||
$this->encrypter->expects('encrypt')->with(m::on(function ($value) {
|
||||
return strlen($value) === Node::DAEMON_TOKEN_LENGTH;
|
||||
}))->andReturns('encrypted_value');
|
||||
|
||||
$this->repository->expects('withFreshModel->update')->with($model->id, m::on(function ($value) {
|
||||
$this->assertTrue(is_array($value));
|
||||
$this->assertSame('New Name', $value['name']);
|
||||
$this->assertSame('encrypted_value', $value['daemon_token']);
|
||||
$this->assertTrue(strlen($value['daemon_token_id']) === Node::DAEMON_TOKEN_ID_LENGTH);
|
||||
|
||||
return true;
|
||||
}), true, true)->andReturns($updatedModel);
|
||||
|
||||
$this->configurationRepository->expects('setNode')->with(m::on(function ($value) use ($model, $updatedModel) {
|
||||
$this->assertInstanceOf(Node::class, $value);
|
||||
$this->assertSame($model->uuid, $value->uuid);
|
||||
|
||||
// Yes, this is correct. Always use the updated model's FQDN when making requests to
|
||||
// the Daemon so that any changes to that are properly propagated down to the daemon.
|
||||
//
|
||||
// @see https://github.com/pterodactyl/panel/issues/1931
|
||||
$this->assertSame($updatedModel->fqdn, $value->fqdn);
|
||||
|
||||
return true;
|
||||
}))->andReturnSelf();
|
||||
|
||||
$this->configurationRepository->expects('update')->with($updatedModel);
|
||||
|
||||
$this->getService()->handle($model, [
|
||||
'name' => $updatedModel->name,
|
||||
'daemonSecret' => $updatedModel->daemonSecret,
|
||||
])->andReturn($model);
|
||||
|
||||
$cloned = $updatedModel->replicate(['daemonSecret']);
|
||||
$cloned->daemonSecret = $model->daemonSecret;
|
||||
|
||||
$this->configRepository->shouldReceive('setNode')->with(m::on(function ($model) use ($updatedModel) {
|
||||
return $model->daemonSecret !== $updatedModel->daemonSecret;
|
||||
}))->once()->andReturnSelf();
|
||||
|
||||
$this->configRepository->shouldReceive('update')->with([
|
||||
'keys' => ['abcd1234'],
|
||||
])->once()->andReturn(new Response);
|
||||
|
||||
$this->connection->shouldReceive('commit')->withNoArgs()->once()->andReturnNull();
|
||||
|
||||
$response = $this->getService()->handle($model, ['name' => $updatedModel->name], true);
|
||||
$this->assertInstanceOf(Node::class, $response);
|
||||
], true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -87,56 +121,115 @@ class NodeUpdateServiceTest extends TestCase
|
|||
*/
|
||||
public function testNodeIsUpdatedAndDaemonSecretIsNotChanged()
|
||||
{
|
||||
$model = factory(Node::class)->make();
|
||||
/** @var \Pterodactyl\Models\Node $model */
|
||||
$model = factory(Node::class)->make(['fqdn' => 'https://example.com']);
|
||||
|
||||
$this->connection->shouldReceive('beginTransaction')->withNoArgs()->once()->andReturnNull();
|
||||
$this->repository->shouldReceive('update')->with($model->id, [
|
||||
'name' => 'NewName',
|
||||
])->andReturn($model);
|
||||
/** @var \Pterodactyl\Models\Node $updatedModel */
|
||||
$updatedModel = factory(Node::class)->make(['name' => 'New Name', 'fqdn' => $model->fqdn]);
|
||||
|
||||
$this->configRepository->shouldReceive('setNode')->with($model)->once()->andReturnSelf()
|
||||
->shouldReceive('update')->withNoArgs()->once()->andReturn(new Response);
|
||||
$this->connection->shouldReceive('commit')->withNoArgs()->once()->andReturnNull();
|
||||
$this->connection->expects('transaction')->with(m::on(function ($closure) use ($updatedModel) {
|
||||
$response = $closure();
|
||||
|
||||
$response = $this->getService()->handle($model, ['name' => 'NewName']);
|
||||
$this->assertInstanceOf(Node::class, $response);
|
||||
$this->assertIsArray($response);
|
||||
$this->assertTrue(count($response) === 2);
|
||||
$this->assertSame($updatedModel, $response[0]);
|
||||
$this->assertFalse($response[1]);
|
||||
|
||||
return true;
|
||||
}))->andReturns([$updatedModel, false]);
|
||||
|
||||
$this->repository->expects('withFreshModel->update')->with($model->id, m::on(function ($value) {
|
||||
$this->assertTrue(is_array($value));
|
||||
$this->assertSame('New Name', $value['name']);
|
||||
$this->assertArrayNotHasKey('daemon_token', $value);
|
||||
$this->assertArrayNotHasKey('daemon_token_id', $value);
|
||||
|
||||
return true;
|
||||
}), true, true)->andReturns($updatedModel);
|
||||
|
||||
$this->configurationRepository->expects('setNode->update')->with($updatedModel);
|
||||
|
||||
$this->getService()->handle($model, ['name' => $updatedModel->name]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that an exception caused by a connection error is handled.
|
||||
*
|
||||
* @expectedException \Pterodactyl\Exceptions\Service\Node\ConfigurationNotPersistedException
|
||||
*/
|
||||
public function testExceptionRelatedToConnection()
|
||||
{
|
||||
$this->configureExceptionMock(ConnectException::class);
|
||||
$model = factory(Node::class)->make();
|
||||
$this->configureExceptionMock(DaemonConnectionException::class);
|
||||
$this->expectException(ConfigurationNotPersistedException::class);
|
||||
|
||||
$this->connection->shouldReceive('beginTransaction')->withNoArgs()->once()->andReturnNull();
|
||||
$this->repository->shouldReceive('update')->andReturn($model);
|
||||
/** @var \Pterodactyl\Models\Node $model */
|
||||
$model = factory(Node::class)->make(['fqdn' => 'https://example.com']);
|
||||
|
||||
$this->configRepository->shouldReceive('setNode->update')->once()->andThrow($this->getExceptionMock());
|
||||
$this->connection->shouldReceive('commit')->withNoArgs()->once()->andReturnNull();
|
||||
/** @var \Pterodactyl\Models\Node $updatedModel */
|
||||
$updatedModel = factory(Node::class)->make(['name' => 'New Name', 'fqdn' => $model->fqdn]);
|
||||
|
||||
$this->getService()->handle($model, ['name' => 'NewName']);
|
||||
$this->connection->expects('transaction')->with(m::on(function ($closure) use ($updatedModel) {
|
||||
$response = $closure();
|
||||
|
||||
$this->assertIsArray($response);
|
||||
$this->assertTrue(count($response) === 2);
|
||||
$this->assertSame($updatedModel, $response[0]);
|
||||
$this->assertTrue($response[1]);
|
||||
|
||||
return true;
|
||||
}))->andReturn([$updatedModel, true]);
|
||||
|
||||
$this->repository->expects('withFreshModel->update')->with($model->id, m::on(function ($value) {
|
||||
$this->assertTrue(is_array($value));
|
||||
$this->assertSame('New Name', $value['name']);
|
||||
$this->assertArrayNotHasKey('daemon_token', $value);
|
||||
$this->assertArrayNotHasKey('daemon_token_id', $value);
|
||||
|
||||
return true;
|
||||
}), true, true)->andReturns($updatedModel);
|
||||
|
||||
$this->configurationRepository->expects('setNode->update')->with($updatedModel)->andThrow(
|
||||
new DaemonConnectionException(
|
||||
new ConnectException('', new Request('GET', 'Test'), new Exception)
|
||||
)
|
||||
);
|
||||
|
||||
$this->getService()->handle($model, ['name' => $updatedModel->name]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that an exception not caused by a daemon connection error is handled.
|
||||
*
|
||||
* @expectedException \Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException
|
||||
*/
|
||||
public function testExceptionNotRelatedToConnection()
|
||||
{
|
||||
$this->configureExceptionMock();
|
||||
$model = factory(Node::class)->make();
|
||||
/** @var \Pterodactyl\Models\Node $model */
|
||||
$model = factory(Node::class)->make(['fqdn' => 'https://example.com']);
|
||||
|
||||
$this->connection->shouldReceive('beginTransaction')->withNoArgs()->once()->andReturnNull();
|
||||
$this->repository->shouldReceive('update')->andReturn($model);
|
||||
/** @var \Pterodactyl\Models\Node $updatedModel */
|
||||
$updatedModel = factory(Node::class)->make(['name' => 'New Name', 'fqdn' => $model->fqdn]);
|
||||
|
||||
$this->configRepository->shouldReceive('setNode->update')->once()->andThrow($this->getExceptionMock());
|
||||
$this->connection->expects('transaction')->with(m::on(function ($closure) use ($updatedModel) {
|
||||
try {
|
||||
$closure();
|
||||
} catch (Exception $exception) {
|
||||
$this->assertInstanceOf(DaemonConnectionException::class, $exception);
|
||||
$this->assertSame(
|
||||
'There was an exception while attempting to communicate with the daemon resulting in a HTTP/E_CONN_REFUSED response code. This exception has been logged.',
|
||||
$exception->getMessage()
|
||||
);
|
||||
|
||||
$this->getService()->handle($model, ['name' => 'NewName']);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}));
|
||||
|
||||
$this->repository->expects('withFreshModel->update')->andReturns($updatedModel);
|
||||
$this->configurationRepository->expects('setNode->update')->andThrow(
|
||||
new DaemonConnectionException(
|
||||
new TransferException('', 500, new Exception)
|
||||
)
|
||||
);
|
||||
|
||||
$this->getService()->handle($model, ['name' => $updatedModel->name]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -146,6 +239,8 @@ class NodeUpdateServiceTest extends TestCase
|
|||
*/
|
||||
private function getService(): NodeUpdateService
|
||||
{
|
||||
return new NodeUpdateService($this->connection, $this->configRepository, $this->repository);
|
||||
return new NodeUpdateService(
|
||||
$this->connection, $this->encrypter, $this->configurationRepository, $this->repository
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue