Back to checks all around
This commit is contained in:
parent
fb03c411ad
commit
910a2d7a23
1 changed files with 8 additions and 9 deletions
|
@ -3,15 +3,12 @@
|
||||||
namespace Pterodactyl\Tests\Integration\Services\Servers;
|
namespace Pterodactyl\Tests\Integration\Services\Servers;
|
||||||
|
|
||||||
use Mockery;
|
use Mockery;
|
||||||
use Exception;
|
|
||||||
use Pterodactyl\Models\Server;
|
use Pterodactyl\Models\Server;
|
||||||
use Pterodactyl\Models\Allocation;
|
use Pterodactyl\Models\Allocation;
|
||||||
use Pterodactyl\Exceptions\DisplayException;
|
use Pterodactyl\Exceptions\DisplayException;
|
||||||
use GuzzleHttp\Exception\BadResponseException;
|
|
||||||
use Pterodactyl\Tests\Integration\IntegrationTestCase;
|
use Pterodactyl\Tests\Integration\IntegrationTestCase;
|
||||||
use Pterodactyl\Repositories\Wings\DaemonServerRepository;
|
use Pterodactyl\Repositories\Wings\DaemonServerRepository;
|
||||||
use Pterodactyl\Services\Servers\BuildModificationService;
|
use Pterodactyl\Services\Servers\BuildModificationService;
|
||||||
use Pterodactyl\Exceptions\Http\Connection\DaemonConnectionException;
|
|
||||||
|
|
||||||
class BuildModificationServiceTest extends IntegrationTestCase
|
class BuildModificationServiceTest extends IntegrationTestCase
|
||||||
{
|
{
|
||||||
|
@ -114,12 +111,14 @@ class BuildModificationServiceTest extends IntegrationTestCase
|
||||||
|
|
||||||
$this->daemonServerRepository->expects('update')->with(Mockery::on(function ($data) {
|
$this->daemonServerRepository->expects('update')->with(Mockery::on(function ($data) {
|
||||||
$this->assertEquals([
|
$this->assertEquals([
|
||||||
|
'build' => [
|
||||||
'memory_limit' => 256,
|
'memory_limit' => 256,
|
||||||
'swap' => 128,
|
'swap' => 128,
|
||||||
'io_weight' => 600,
|
'io_weight' => 600,
|
||||||
'cpu_limit' => 150,
|
'cpu_limit' => 150,
|
||||||
'threads' => '1,2',
|
'threads' => '1,2',
|
||||||
'disk_space' => 1024,
|
'disk_space' => 1024,
|
||||||
|
],
|
||||||
], $data);
|
], $data);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue