2017-09-16 22:39:52 +00:00
|
|
|
<?php
|
2017-09-26 02:43:01 +00:00
|
|
|
/**
|
2017-09-16 22:39:52 +00:00
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 02:43:01 +00:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-09-16 22:39:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Tests\Unit\Commands\Location;
|
|
|
|
|
|
|
|
use Mockery as m;
|
|
|
|
use Pterodactyl\Models\Location;
|
2017-09-22 05:30:09 +00:00
|
|
|
use Tests\Unit\Commands\CommandTestCase;
|
2017-09-16 22:39:52 +00:00
|
|
|
use Pterodactyl\Services\Locations\LocationDeletionService;
|
|
|
|
use Pterodactyl\Console\Commands\Location\DeleteLocationCommand;
|
|
|
|
use Pterodactyl\Contracts\Repository\LocationRepositoryInterface;
|
|
|
|
|
2017-09-22 05:30:09 +00:00
|
|
|
class DeleteLocationCommandTest extends CommandTestCase
|
2017-09-16 22:39:52 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Console\Commands\Location\DeleteLocationCommand
|
|
|
|
*/
|
|
|
|
protected $command;
|
|
|
|
|
|
|
|
/**
|
2017-09-22 05:30:09 +00:00
|
|
|
* @var \Pterodactyl\Services\Locations\LocationDeletionService|\Mockery\Mock
|
2017-09-16 22:39:52 +00:00
|
|
|
*/
|
|
|
|
protected $deletionService;
|
|
|
|
|
|
|
|
/**
|
2017-09-22 05:30:09 +00:00
|
|
|
* @var \Pterodactyl\Contracts\Repository\LocationRepositoryInterface|\Mockery\Mock
|
2017-09-16 22:39:52 +00:00
|
|
|
*/
|
|
|
|
protected $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup tests.
|
|
|
|
*/
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->deletionService = m::mock(LocationDeletionService::class);
|
|
|
|
$this->repository = m::mock(LocationRepositoryInterface::class);
|
|
|
|
|
|
|
|
$this->command = new DeleteLocationCommand($this->deletionService, $this->repository);
|
|
|
|
$this->command->setLaravel($this->app);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that a location can be deleted.
|
|
|
|
*/
|
|
|
|
public function testLocationIsDeleted()
|
|
|
|
{
|
|
|
|
$locations = collect([
|
|
|
|
$location1 = factory(Location::class)->make(),
|
|
|
|
$location2 = factory(Location::class)->make(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->repository->shouldReceive('all')->withNoArgs()->once()->andReturn($locations);
|
|
|
|
$this->deletionService->shouldReceive('handle')->with($location2->id)->once()->andReturnNull();
|
|
|
|
|
2017-09-22 05:30:09 +00:00
|
|
|
$display = $this->runCommand($this->command, [], [$location2->short]);
|
2017-09-16 22:39:52 +00:00
|
|
|
|
|
|
|
$this->assertNotEmpty($display);
|
|
|
|
$this->assertContains(trans('command/messages.location.deleted'), $display);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that a location is deleted if passed in as an option.
|
|
|
|
*/
|
|
|
|
public function testLocationIsDeletedIfPassedInOption()
|
|
|
|
{
|
|
|
|
$locations = collect([
|
|
|
|
$location1 = factory(Location::class)->make(),
|
|
|
|
$location2 = factory(Location::class)->make(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->repository->shouldReceive('all')->withNoArgs()->once()->andReturn($locations);
|
|
|
|
$this->deletionService->shouldReceive('handle')->with($location2->id)->once()->andReturnNull();
|
|
|
|
|
2017-09-22 05:30:09 +00:00
|
|
|
$display = $this->withoutInteraction()->runCommand($this->command, [
|
2017-09-16 22:39:52 +00:00
|
|
|
'--short' => $location2->short,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertNotEmpty($display);
|
|
|
|
$this->assertContains(trans('command/messages.location.deleted'), $display);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that prompt shows back up if the user enters the wrong parameters.
|
|
|
|
*/
|
|
|
|
public function testInteractiveEnvironmentAllowsReAttemptingSearch()
|
|
|
|
{
|
|
|
|
$locations = collect([
|
|
|
|
$location1 = factory(Location::class)->make(),
|
|
|
|
$location2 = factory(Location::class)->make(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->repository->shouldReceive('all')->withNoArgs()->once()->andReturn($locations);
|
|
|
|
$this->deletionService->shouldReceive('handle')->with($location2->id)->once()->andReturnNull();
|
|
|
|
|
2017-09-22 05:30:09 +00:00
|
|
|
$display = $this->runCommand($this->command, [], ['123_not_exist', 'another_not_exist', $location2->short]);
|
2017-09-16 22:39:52 +00:00
|
|
|
|
|
|
|
$this->assertNotEmpty($display);
|
|
|
|
$this->assertContains(trans('command/messages.location.no_location_found'), $display);
|
|
|
|
$this->assertContains(trans('command/messages.location.deleted'), $display);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that no re-attempt is performed in a non-interactive environment.
|
|
|
|
*/
|
|
|
|
public function testNonInteractiveEnvironmentThrowsErrorIfNoLocationIsFound()
|
|
|
|
{
|
|
|
|
$locations = collect([
|
|
|
|
$location1 = factory(Location::class)->make(),
|
|
|
|
$location2 = factory(Location::class)->make(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->repository->shouldReceive('all')->withNoArgs()->once()->andReturn($locations);
|
|
|
|
$this->deletionService->shouldNotReceive('handle');
|
|
|
|
|
2017-09-22 05:30:09 +00:00
|
|
|
$display = $this->withoutInteraction()->runCommand($this->command, ['--short' => 'randomTestString']);
|
2017-09-16 22:39:52 +00:00
|
|
|
|
|
|
|
$this->assertNotEmpty($display);
|
|
|
|
$this->assertContains(trans('command/messages.location.no_location_found'), $display);
|
|
|
|
}
|
|
|
|
}
|