mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 11:16:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.3 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\Locations;
 | 
						|
 | 
						|
use Mockery as m;
 | 
						|
use Tests\TestCase;
 | 
						|
use Pterodactyl\Exceptions\DisplayException;
 | 
						|
use Pterodactyl\Services\Locations\LocationDeletionService;
 | 
						|
use Pterodactyl\Contracts\Repository\NodeRepositoryInterface;
 | 
						|
use Pterodactyl\Contracts\Repository\LocationRepositoryInterface;
 | 
						|
use Pterodactyl\Exceptions\Service\Location\HasActiveNodesException;
 | 
						|
 | 
						|
class LocationDeletionServiceTest extends TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Contracts\Repository\NodeRepositoryInterface
 | 
						|
     */
 | 
						|
    protected $nodeRepository;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Contracts\Repository\LocationRepositoryInterface
 | 
						|
     */
 | 
						|
    protected $repository;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var \Pterodactyl\Services\Locations\LocationDeletionService
 | 
						|
     */
 | 
						|
    protected $service;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Setup tests.
 | 
						|
     */
 | 
						|
    public function setUp()
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
 | 
						|
        $this->nodeRepository = m::mock(NodeRepositoryInterface::class);
 | 
						|
        $this->repository = m::mock(LocationRepositoryInterface::class);
 | 
						|
 | 
						|
        $this->service = new LocationDeletionService($this->repository, $this->nodeRepository);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test that a location is deleted.
 | 
						|
     */
 | 
						|
    public function testLocationIsDeleted()
 | 
						|
    {
 | 
						|
        $this->nodeRepository->shouldReceive('findCountWhere')->with([['location_id', '=', 123]])->once()->andReturn(0);
 | 
						|
        $this->repository->shouldReceive('delete')->with(123)->once()->andReturn(1);
 | 
						|
 | 
						|
        $response = $this->service->handle(123);
 | 
						|
        $this->assertEquals(1, $response);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test that an exception is thrown if nodes are attached to a location.
 | 
						|
     */
 | 
						|
    public function testExceptionIsThrownIfNodesAreAttached()
 | 
						|
    {
 | 
						|
        $this->nodeRepository->shouldReceive('findCountWhere')->with([['location_id', '=', 123]])->once()->andReturn(1);
 | 
						|
 | 
						|
        try {
 | 
						|
            $this->service->handle(123);
 | 
						|
        } catch (DisplayException $exception) {
 | 
						|
            $this->assertInstanceOf(HasActiveNodesException::class, $exception);
 | 
						|
            $this->assertEquals(trans('exceptions.locations.has_nodes'), $exception->getMessage());
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |