Egg tests updated

This commit is contained in:
Dane Everitt 2017-10-08 15:29:46 -05:00
parent 4d52ba2b39
commit 6e02e9491a
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
7 changed files with 99 additions and 102 deletions

View file

@ -59,7 +59,7 @@ class EggCreationService
]); ]);
if ($results !== 1) { if ($results !== 1) {
throw new NoParentConfigurationFoundException(trans('exceptions.service.options.must_be_child')); throw new NoParentConfigurationFoundException(trans('exceptions.nest.egg.must_be_child'));
} }
} }

View file

@ -13,7 +13,7 @@ use Mockery as m;
use Ramsey\Uuid\Uuid; use Ramsey\Uuid\Uuid;
use Ramsey\Uuid\UuidFactory; use Ramsey\Uuid\UuidFactory;
trait KnownUuid trait MocksUuids
{ {
/** /**
* The known UUID string. * The known UUID string.

View file

@ -12,15 +12,18 @@ namespace Tests\Unit\Services\Services\Options;
use Exception; use Exception;
use Mockery as m; use Mockery as m;
use Tests\TestCase; use Tests\TestCase;
use Ramsey\Uuid\Uuid;
use Pterodactyl\Models\Egg; use Pterodactyl\Models\Egg;
use Tests\Traits\MocksUuids;
use Illuminate\Contracts\Config\Repository; use Illuminate\Contracts\Config\Repository;
use Pterodactyl\Exceptions\PterodactylException;
use Pterodactyl\Services\Eggs\EggCreationService;
use Pterodactyl\Contracts\Repository\EggRepositoryInterface; use Pterodactyl\Contracts\Repository\EggRepositoryInterface;
use Pterodactyl\Services\Services\Options\EggCreationService; use Pterodactyl\Exceptions\Service\Egg\NoParentConfigurationFoundException;
use Pterodactyl\Exceptions\Service\ServiceOption\NoParentConfigurationFoundException;
class OptionCreationServiceTest extends TestCase class EggCreationServiceTest extends TestCase
{ {
use MocksUuids;
/** /**
* @var \Illuminate\Contracts\Config\Repository|\Mockery\Mock * @var \Illuminate\Contracts\Config\Repository|\Mockery\Mock
*/ */
@ -32,15 +35,10 @@ class OptionCreationServiceTest extends TestCase
protected $repository; protected $repository;
/** /**
* @var \Pterodactyl\Services\Services\Options\EggCreationService * @var \Pterodactyl\Services\Eggs\EggCreationService
*/ */
protected $service; protected $service;
/**
* @var \Ramsey\Uuid\Uuid|\Mockery\Mock
*/
protected $uuid;
/** /**
* Setup tests. * Setup tests.
*/ */
@ -50,7 +48,6 @@ class OptionCreationServiceTest extends TestCase
$this->config = m::mock(Repository::class); $this->config = m::mock(Repository::class);
$this->repository = m::mock(EggRepositoryInterface::class); $this->repository = m::mock(EggRepositoryInterface::class);
$this->uuid = m::mock('overload:' . Uuid::class);
$this->service = new EggCreationService($this->config, $this->repository); $this->service = new EggCreationService($this->config, $this->repository);
} }
@ -60,52 +57,23 @@ class OptionCreationServiceTest extends TestCase
*/ */
public function testCreateNewModelWithoutUsingConfigFrom() public function testCreateNewModelWithoutUsingConfigFrom()
{ {
$model = factory(Egg::class)->make([ $model = factory(Egg::class)->make();
'tag' => str_random(10),
]);
$this->config->shouldReceive('get')->with('pterodactyl.service.author')->once()->andReturn('test@example.com'); $this->config->shouldReceive('get')->with('pterodactyl.service.author')->once()->andReturn('test@example.com');
$this->uuid->shouldReceive('uuid4->toString')->withNoArgs()->once()->andReturn('uuid-string');
$this->repository->shouldReceive('create')->with([ $this->repository->shouldReceive('create')->with([
'name' => $model->name, 'uuid' => $this->getKnownUuid(),
'tag' => 'test@example.com:' . $model->tag, 'author' => 'test@example.com',
'config_from' => null, 'config_from' => null,
'uuid' => 'uuid-string', 'name' => $model->name,
], true, true)->once()->andReturn($model); ], true, true)->once()->andReturn($model);
$response = $this->service->handle(['name' => $model->name, 'tag' => $model->tag]); $response = $this->service->handle(['name' => $model->name]);
$this->assertNotEmpty($response); $this->assertNotEmpty($response);
$this->assertNull(object_get($response, 'config_from')); $this->assertNull(object_get($response, 'config_from'));
$this->assertEquals($model->name, $response->name); $this->assertEquals($model->name, $response->name);
} }
/**
* Test that passing a bad tag into the function will set the correct tag.
*/
public function testCreateNewModelUsingLongTagForm()
{
$model = factory(Egg::class)->make([
'tag' => 'test@example.com:tag',
]);
$this->config->shouldReceive('get')->with('pterodactyl.service.author')->once()->andReturn('test@example.com');
$this->uuid->shouldReceive('uuid4->toString')->withNoArgs()->once()->andReturn('uuid-string');
$this->repository->shouldReceive('create')->with([
'name' => $model->name,
'config_from' => null,
'tag' => $model->tag,
'uuid' => 'uuid-string',
], true, true)->once()->andReturn($model);
$response = $this->service->handle(['name' => $model->name, 'tag' => 'bad@example.com:tag']);
$this->assertNotEmpty($response);
$this->assertNull(object_get($response, 'config_from'));
$this->assertEquals($model->name, $response->name);
$this->assertEquals('test@example.com:tag', $response->tag);
}
/** /**
* Test that a new model is created when using the config from attribute. * Test that a new model is created when using the config from attribute.
*/ */
@ -113,44 +81,66 @@ class OptionCreationServiceTest extends TestCase
{ {
$model = factory(Egg::class)->make(); $model = factory(Egg::class)->make();
$data = [
'name' => $model->name,
'service_id' => $model->service_id,
'tag' => 'test@example.com:tag',
'config_from' => 1,
'uuid' => 'uuid-string',
];
$this->repository->shouldReceive('findCountWhere')->with([ $this->repository->shouldReceive('findCountWhere')->with([
['service_id', '=', $data['service_id']], ['nest_id', '=', $model->nest_id],
['id', '=', $data['config_from']], ['id', '=', 12345],
])->once()->andReturn(1); ])->once()->andReturn(1);
$this->config->shouldReceive('get')->with('pterodactyl.service.author')->once()->andReturn('test@example.com'); $this->config->shouldReceive('get')->with('pterodactyl.service.author')->once()->andReturn('test@example.com');
$this->uuid->shouldReceive('uuid4->toString')->withNoArgs()->once()->andReturn('uuid-string'); $this->repository->shouldReceive('create')->with([
$this->repository->shouldReceive('create')->with($data, true, true)->once()->andReturn($model); 'nest_id' => $model->nest_id,
'config_from' => 12345,
'uuid' => $this->getKnownUuid(),
'author' => 'test@example.com',
], true, true)->once()->andReturn($model);
$response = $this->service->handle($data); $response = $this->service->handle([
'nest_id' => $model->nest_id,
'config_from' => 12345,
]);
$this->assertNotEmpty($response); $this->assertNotEmpty($response);
$this->assertEquals($response, $model); $this->assertEquals($response, $model);
} }
/**
* Test that certain data, such as the UUID or author takes priority over data
* that is passed into the function.
*/
public function testDataProvidedByHandlerTakesPriorityOverPassedData()
{
$model = factory(Egg::class)->make();
$this->config->shouldReceive('get')->with('pterodactyl.service.author')->once()->andReturn('test@example.com');
$this->repository->shouldReceive('create')->with([
'uuid' => $this->getKnownUuid(),
'author' => 'test@example.com',
'config_from' => null,
'name' => $model->name,
], true, true)->once()->andReturn($model);
$response = $this->service->handle(['name' => $model->name, 'uuid' => 'should-be-ignored', 'author' => 'should-be-ignored']);
$this->assertNotEmpty($response);
$this->assertNull(object_get($response, 'config_from'));
$this->assertEquals($model->name, $response->name);
}
/** /**
* Test that an exception is thrown if no parent configuration can be located. * Test that an exception is thrown if no parent configuration can be located.
*/ */
public function testExceptionIsThrownIfNoParentConfigurationIsFound() public function testExceptionIsThrownIfNoParentConfigurationIsFound()
{ {
$this->repository->shouldReceive('findCountWhere')->with([ $this->repository->shouldReceive('findCountWhere')->with([
['service_id', '=', null], ['nest_id', '=', null],
['id', '=', 1], ['id', '=', 1],
])->once()->andReturn(0); ])->once()->andReturn(0);
try { try {
$this->service->handle(['config_from' => 1]); $this->service->handle(['config_from' => 1]);
} catch (Exception $exception) { } catch (PterodactylException $exception) {
$this->assertInstanceOf(NoParentConfigurationFoundException::class, $exception); $this->assertInstanceOf(NoParentConfigurationFoundException::class, $exception);
$this->assertEquals(trans('exceptions.service.options.must_be_child'), $exception->getMessage()); $this->assertEquals(trans('exceptions.nest.egg.must_be_child'), $exception->getMessage());
} }
} }
} }

View file

@ -11,14 +11,14 @@ namespace Tests\Unit\Services\Services\Options;
use Mockery as m; use Mockery as m;
use Tests\TestCase; use Tests\TestCase;
use Pterodactyl\Exceptions\DisplayException; use Pterodactyl\Exceptions\PterodactylException;
use Pterodactyl\Services\Eggs\EggDeletionService;
use Pterodactyl\Contracts\Repository\EggRepositoryInterface; use Pterodactyl\Contracts\Repository\EggRepositoryInterface;
use Pterodactyl\Exceptions\Service\Egg\HasChildrenException;
use Pterodactyl\Exceptions\Service\HasActiveServersException; use Pterodactyl\Exceptions\Service\HasActiveServersException;
use Pterodactyl\Services\Services\Options\EggDeletionService;
use Pterodactyl\Contracts\Repository\ServerRepositoryInterface; use Pterodactyl\Contracts\Repository\ServerRepositoryInterface;
use Pterodactyl\Exceptions\Service\ServiceOption\HasChildrenException;
class OptionDeletionServiceTest extends TestCase class EggDeletionServiceTest extends TestCase
{ {
/** /**
* @var \Pterodactyl\Contracts\Repository\EggRepositoryInterface|\Mockery\Mock * @var \Pterodactyl\Contracts\Repository\EggRepositoryInterface|\Mockery\Mock
@ -31,7 +31,7 @@ class OptionDeletionServiceTest extends TestCase
protected $serverRepository; protected $serverRepository;
/** /**
* @var \Pterodactyl\Services\Services\Options\EggDeletionService * @var \Pterodactyl\Services\Eggs\EggDeletionService
*/ */
protected $service; protected $service;
@ -49,11 +49,11 @@ class OptionDeletionServiceTest extends TestCase
} }
/** /**
* Test that option is deleted if no servers are found. * Test that Egg is deleted if no servers are found.
*/ */
public function testOptionIsDeletedIfNoServersAreFound() public function testEggIsDeletedIfNoServersAreFound()
{ {
$this->serverRepository->shouldReceive('findCountWhere')->with([['option_id', '=', 1]])->once()->andReturn(0); $this->serverRepository->shouldReceive('findCountWhere')->with([['egg_id', '=', 1]])->once()->andReturn(0);
$this->repository->shouldReceive('findCountWhere')->with([['config_from', '=', 1]])->once()->andReturn(0); $this->repository->shouldReceive('findCountWhere')->with([['config_from', '=', 1]])->once()->andReturn(0);
$this->repository->shouldReceive('delete')->with(1)->once()->andReturn(1); $this->repository->shouldReceive('delete')->with(1)->once()->andReturn(1);
@ -61,33 +61,33 @@ class OptionDeletionServiceTest extends TestCase
} }
/** /**
* Test that option is not deleted if servers are found. * Test that Egg is not deleted if servers are found.
*/ */
public function testExceptionIsThrownIfServersAreFound() public function testExceptionIsThrownIfServersAreFound()
{ {
$this->serverRepository->shouldReceive('findCountWhere')->with([['option_id', '=', 1]])->once()->andReturn(1); $this->serverRepository->shouldReceive('findCountWhere')->with([['egg_id', '=', 1]])->once()->andReturn(1);
try { try {
$this->service->handle(1); $this->service->handle(1);
} catch (DisplayException $exception) { } catch (PterodactylException $exception) {
$this->assertInstanceOf(HasActiveServersException::class, $exception); $this->assertInstanceOf(HasActiveServersException::class, $exception);
$this->assertEquals(trans('exceptions.service.options.delete_has_servers'), $exception->getMessage()); $this->assertEquals(trans('exceptions.nest.egg.delete_has_servers'), $exception->getMessage());
} }
} }
/** /**
* Test that an exception is thrown if children options exist. * Test that an exception is thrown if children Eggs exist.
*/ */
public function testExceptionIsThrownIfChildrenArePresent() public function testExceptionIsThrownIfChildrenArePresent()
{ {
$this->serverRepository->shouldReceive('findCountWhere')->with([['option_id', '=', 1]])->once()->andReturn(0); $this->serverRepository->shouldReceive('findCountWhere')->with([['egg_id', '=', 1]])->once()->andReturn(0);
$this->repository->shouldReceive('findCountWhere')->with([['config_from', '=', 1]])->once()->andReturn(1); $this->repository->shouldReceive('findCountWhere')->with([['config_from', '=', 1]])->once()->andReturn(1);
try { try {
$this->service->handle(1); $this->service->handle(1);
} catch (DisplayException $exception) { } catch (PterodactylException $exception) {
$this->assertInstanceOf(HasChildrenException::class, $exception); $this->assertInstanceOf(HasChildrenException::class, $exception);
$this->assertEquals(trans('exceptions.service.options.has_children'), $exception->getMessage()); $this->assertEquals(trans('exceptions.nest.egg.has_children'), $exception->getMessage());
} }
} }
} }

View file

@ -13,11 +13,12 @@ use Exception;
use Mockery as m; use Mockery as m;
use Tests\TestCase; use Tests\TestCase;
use Pterodactyl\Models\Egg; use Pterodactyl\Models\Egg;
use Pterodactyl\Services\Services\Options\EggUpdateService; use Pterodactyl\Services\Eggs\EggUpdateService;
use Pterodactyl\Exceptions\PterodactylException;
use Pterodactyl\Contracts\Repository\EggRepositoryInterface; use Pterodactyl\Contracts\Repository\EggRepositoryInterface;
use Pterodactyl\Exceptions\Service\ServiceOption\NoParentConfigurationFoundException; use Pterodactyl\Exceptions\Service\Egg\NoParentConfigurationFoundException;
class OptionUpdateServiceTest extends TestCase class EggUpdateServiceTest extends TestCase
{ {
/** /**
* @var \Pterodactyl\Models\Egg * @var \Pterodactyl\Models\Egg
@ -25,12 +26,12 @@ class OptionUpdateServiceTest extends TestCase
protected $model; protected $model;
/** /**
* @var \Pterodactyl\Contracts\Repository\EggRepositoryInterface * @var \Pterodactyl\Contracts\Repository\EggRepositoryInterface|\Mockery\Mock
*/ */
protected $repository; protected $repository;
/** /**
* @var \Pterodactyl\Services\Services\Options\EggUpdateService * @var \Pterodactyl\Services\Eggs\EggUpdateService
*/ */
protected $service; protected $service;
@ -48,30 +49,34 @@ class OptionUpdateServiceTest extends TestCase
} }
/** /**
* Test that an option is updated when no config_from attribute is passed. * Test that an Egg is updated when no config_from attribute is passed.
*/ */
public function testOptionIsUpdatedWhenNoConfigFromIsProvided() public function testEggIsUpdatedWhenNoConfigFromIsProvided()
{ {
$this->repository->shouldReceive('withoutFresh')->withNoArgs()->once()->andReturnSelf() $this->repository->shouldReceive('withoutFresh->update')
->shouldReceive('update')->with($this->model->id, ['test_field' => 'field_value'])->once()->andReturnNull(); ->with($this->model->id, ['test_field' => 'field_value'])->once()->andReturnNull();
$this->service->handle($this->model, ['test_field' => 'field_value']); $this->service->handle($this->model, ['test_field' => 'field_value']);
$this->assertTrue(true);
} }
/** /**
* Test that option is updated when a valid config_from attribute is passed. * Test that Egg is updated when a valid config_from attribute is passed.
*/ */
public function testOptionIsUpdatedWhenValidConfigFromIsPassed() public function testOptionIsUpdatedWhenValidConfigFromIsPassed()
{ {
$this->repository->shouldReceive('findCountWhere')->with([ $this->repository->shouldReceive('findCountWhere')->with([
['service_id', '=', $this->model->service_id], ['nest_id', '=', $this->model->nest_id],
['id', '=', 1], ['id', '=', 1],
])->once()->andReturn(1); ])->once()->andReturn(1);
$this->repository->shouldReceive('withoutFresh')->withNoArgs()->once()->andReturnSelf() $this->repository->shouldReceive('withoutFresh->update')
->shouldReceive('update')->with($this->model->id, ['config_from' => 1])->once()->andReturnNull(); ->with($this->model->id, ['config_from' => 1])->once()->andReturnNull();
$this->service->handle($this->model, ['config_from' => 1]); $this->service->handle($this->model, ['config_from' => 1]);
$this->assertTrue(true);
} }
/** /**
@ -80,27 +85,29 @@ class OptionUpdateServiceTest extends TestCase
public function testExceptionIsThrownIfInvalidParentConfigIsPassed() public function testExceptionIsThrownIfInvalidParentConfigIsPassed()
{ {
$this->repository->shouldReceive('findCountWhere')->with([ $this->repository->shouldReceive('findCountWhere')->with([
['service_id', '=', $this->model->service_id], ['nest_id', '=', $this->model->nest_id],
['id', '=', 1], ['id', '=', 1],
])->once()->andReturn(0); ])->once()->andReturn(0);
try { try {
$this->service->handle($this->model, ['config_from' => 1]); $this->service->handle($this->model, ['config_from' => 1]);
} catch (Exception $exception) { } catch (PterodactylException $exception) {
$this->assertInstanceOf(NoParentConfigurationFoundException::class, $exception); $this->assertInstanceOf(NoParentConfigurationFoundException::class, $exception);
$this->assertEquals(trans('exceptions.service.options.must_be_child'), $exception->getMessage()); $this->assertEquals(trans('exceptions.nest.egg.must_be_child'), $exception->getMessage());
} }
} }
/** /**
* Test that an integer linking to a model can be passed in place of the ServiceOption model. * Test that an integer linking to a model can be passed in place of the Egg model.
*/ */
public function testIntegerCanBePassedInPlaceOfModel() public function testIntegerCanBePassedInPlaceOfModel()
{ {
$this->repository->shouldReceive('find')->with($this->model->id)->once()->andReturn($this->model); $this->repository->shouldReceive('find')->with($this->model->id)->once()->andReturn($this->model);
$this->repository->shouldReceive('withoutFresh')->withNoArgs()->once()->andReturnSelf() $this->repository->shouldReceive('withoutFresh->update')
->shouldReceive('update')->with($this->model->id, ['test_field' => 'field_value'])->once()->andReturnNull(); ->with($this->model->id, ['test_field' => 'field_value'])->once()->andReturnNull();
$this->service->handle($this->model->id, ['test_field' => 'field_value']); $this->service->handle($this->model->id, ['test_field' => 'field_value']);
$this->assertTrue(true);
} }
} }

View file

@ -12,8 +12,8 @@ namespace Tests\Unit\Services\Services\Sharing;
use Mockery as m; use Mockery as m;
use Tests\TestCase; use Tests\TestCase;
use Pterodactyl\Models\Egg; use Pterodactyl\Models\Egg;
use Tests\Traits\KnownUuid;
use Pterodactyl\Models\Nest; use Pterodactyl\Models\Nest;
use Tests\Traits\MocksUuids;
use Illuminate\Http\UploadedFile; use Illuminate\Http\UploadedFile;
use Pterodactyl\Models\EggVariable; use Pterodactyl\Models\EggVariable;
use Illuminate\Database\ConnectionInterface; use Illuminate\Database\ConnectionInterface;
@ -26,7 +26,7 @@ use Pterodactyl\Contracts\Repository\EggVariableRepositoryInterface;
class EggImporterServiceTest extends TestCase class EggImporterServiceTest extends TestCase
{ {
use KnownUuid; use MocksUuids;
/** /**
* @var \Illuminate\Database\ConnectionInterface|\Mockery\Mock * @var \Illuminate\Database\ConnectionInterface|\Mockery\Mock

View file

@ -12,15 +12,15 @@ namespace Tests\Unit\Services\Services;
use Mockery as m; use Mockery as m;
use Tests\TestCase; use Tests\TestCase;
use Ramsey\Uuid\Uuid; use Ramsey\Uuid\Uuid;
use Tests\Traits\KnownUuid;
use Pterodactyl\Models\Nest; use Pterodactyl\Models\Nest;
use Tests\Traits\MocksUuids;
use Illuminate\Contracts\Config\Repository; use Illuminate\Contracts\Config\Repository;
use Pterodactyl\Services\Nests\NestCreationService; use Pterodactyl\Services\Nests\NestCreationService;
use Pterodactyl\Contracts\Repository\NestRepositoryInterface; use Pterodactyl\Contracts\Repository\NestRepositoryInterface;
class NestCreationServiceTest extends TestCase class NestCreationServiceTest extends TestCase
{ {
use KnownUuid; use MocksUuids;
/** /**
* @var \Illuminate\Contracts\Config\Repository|\Mockery\Mock * @var \Illuminate\Contracts\Config\Repository|\Mockery\Mock