PteroTheme/tests/Unit/Services/Services/Options/OptionCreationServiceTest.php

123 lines
4.2 KiB
PHP
Raw Normal View History

2017-08-12 22:30:27 +01:00
<?php
/**
* Pterodactyl - Panel
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
namespace Tests\Unit\Services\Services\Options;
use Exception;
use Mockery as m;
use Tests\TestCase;
use Pterodactyl\Models\ServiceOption;
use Pterodactyl\Services\Services\Options\OptionCreationService;
use Pterodactyl\Contracts\Repository\ServiceOptionRepositoryInterface;
use Pterodactyl\Exceptions\Service\ServiceOption\NoParentConfigurationFoundException;
2017-08-12 22:30:27 +01:00
class OptionCreationServiceTest extends TestCase
{
/**
* @var \Pterodactyl\Models\ServiceOption
*/
protected $model;
/**
* @var \Pterodactyl\Contracts\Repository\ServiceOptionRepositoryInterface
*/
protected $repository;
/**
* @var \Pterodactyl\Services\Services\Options\OptionCreationService
*/
protected $service;
/**
* Setup tests.
*/
public function setUp()
{
parent::setUp();
$this->model = factory(ServiceOption::class)->make();
$this->repository = m::mock(ServiceOptionRepositoryInterface::class);
$this->service = new OptionCreationService($this->repository);
}
/**
* Test that a new model is created when not using the config from attribute.
*/
public function testCreateNewModelWithoutUsingConfigFrom()
{
$this->repository->shouldReceive('create')->with(['name' => $this->model->name, 'config_from' => null])
->once()->andReturn($this->model);
$response = $this->service->handle(['name' => $this->model->name]);
$this->assertNotEmpty($response);
$this->assertNull(object_get($response, 'config_from'));
$this->assertEquals($this->model->name, $response->name);
}
/**
* Test that a new model is created when using the config from attribute.
*/
public function testCreateNewModelUsingConfigFrom()
{
$data = [
'name' => $this->model->name,
'service_id' => $this->model->service_id,
'config_from' => 1,
];
$this->repository->shouldReceive('findCountWhere')->with([
['service_id', '=', $data['service_id']],
2017-08-16 05:21:01 +01:00
['id', '=', $data['config_from']],
2017-08-12 22:30:27 +01:00
])->once()->andReturn(1);
$this->repository->shouldReceive('create')->with($data)
->once()->andReturn($this->model);
$response = $this->service->handle($data);
$this->assertNotEmpty($response);
$this->assertEquals($response, $this->model);
}
/**
* Test that an exception is thrown if no parent configuration can be located.
*/
public function testExceptionIsThrownIfNoParentConfigurationIsFound()
{
$this->repository->shouldReceive('findCountWhere')->with([
['service_id', '=', null],
2017-08-16 05:21:01 +01:00
['id', '=', 1],
2017-08-12 22:30:27 +01:00
])->once()->andReturn(0);
try {
$this->service->handle(['config_from' => 1]);
} catch (Exception $exception) {
$this->assertInstanceOf(NoParentConfigurationFoundException::class, $exception);
$this->assertEquals(trans('exceptions.service.options.must_be_child'), $exception->getMessage());
2017-08-12 22:30:27 +01:00
}
}
}