mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 12:16:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			113 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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\Services\Options;
 | 
						|
 | 
						|
use Mockery as m;
 | 
						|
use Tests\TestCase;
 | 
						|
use Pterodactyl\Models\Egg;
 | 
						|
use Pterodactyl\Services\Eggs\EggUpdateService;
 | 
						|
use Pterodactyl\Exceptions\PterodactylException;
 | 
						|
use Pterodactyl\Contracts\Repository\EggRepositoryInterface;
 | 
						|
use Pterodactyl\Exceptions\Service\Egg\NoParentConfigurationFoundException;
 | 
						|
 | 
						|
class EggUpdateServiceTest extends TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Models\Egg
 | 
						|
     */
 | 
						|
    protected $model;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Contracts\Repository\EggRepositoryInterface|\Mockery\Mock
 | 
						|
     */
 | 
						|
    protected $repository;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Services\Eggs\EggUpdateService
 | 
						|
     */
 | 
						|
    protected $service;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Setup tests.
 | 
						|
     */
 | 
						|
    public function setUp()
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
 | 
						|
        $this->model = factory(Egg::class)->make();
 | 
						|
        $this->repository = m::mock(EggRepositoryInterface::class);
 | 
						|
 | 
						|
        $this->service = new EggUpdateService($this->repository);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test that an Egg is updated when no config_from attribute is passed.
 | 
						|
     */
 | 
						|
    public function testEggIsUpdatedWhenNoConfigFromIsProvided()
 | 
						|
    {
 | 
						|
        $this->repository->shouldReceive('withoutFreshModel->update')
 | 
						|
            ->with($this->model->id, ['test_field' => 'field_value'])->once()->andReturnNull();
 | 
						|
 | 
						|
        $this->service->handle($this->model, ['test_field' => 'field_value']);
 | 
						|
 | 
						|
        $this->assertTrue(true);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test that Egg is updated when a valid config_from attribute is passed.
 | 
						|
     */
 | 
						|
    public function testOptionIsUpdatedWhenValidConfigFromIsPassed()
 | 
						|
    {
 | 
						|
        $this->repository->shouldReceive('findCountWhere')->with([
 | 
						|
            ['nest_id', '=', $this->model->nest_id],
 | 
						|
            ['id', '=', 1],
 | 
						|
        ])->once()->andReturn(1);
 | 
						|
 | 
						|
        $this->repository->shouldReceive('withoutFreshModel->update')
 | 
						|
            ->with($this->model->id, ['config_from' => 1])->once()->andReturnNull();
 | 
						|
 | 
						|
        $this->service->handle($this->model, ['config_from' => 1]);
 | 
						|
 | 
						|
        $this->assertTrue(true);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test that an exception is thrown if an invalid config_from attribute is passed.
 | 
						|
     */
 | 
						|
    public function testExceptionIsThrownIfInvalidParentConfigIsPassed()
 | 
						|
    {
 | 
						|
        $this->repository->shouldReceive('findCountWhere')->with([
 | 
						|
            ['nest_id', '=', $this->model->nest_id],
 | 
						|
            ['id', '=', 1],
 | 
						|
        ])->once()->andReturn(0);
 | 
						|
 | 
						|
        try {
 | 
						|
            $this->service->handle($this->model, ['config_from' => 1]);
 | 
						|
        } catch (PterodactylException $exception) {
 | 
						|
            $this->assertInstanceOf(NoParentConfigurationFoundException::class, $exception);
 | 
						|
            $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 Egg model.
 | 
						|
     */
 | 
						|
    public function testIntegerCanBePassedInPlaceOfModel()
 | 
						|
    {
 | 
						|
        $this->repository->shouldReceive('find')->with($this->model->id)->once()->andReturn($this->model);
 | 
						|
        $this->repository->shouldReceive('withoutFreshModel->update')
 | 
						|
            ->with($this->model->id, ['test_field' => 'field_value'])->once()->andReturnNull();
 | 
						|
 | 
						|
        $this->service->handle($this->model->id, ['test_field' => 'field_value']);
 | 
						|
 | 
						|
        $this->assertTrue(true);
 | 
						|
    }
 | 
						|
}
 |