mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
Add test coverage for resource utilization
This commit is contained in:
parent
6312b627a3
commit
7546d54b4e
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace Pterodactyl\Tests\Integration\Api\Client\Server;
|
||||
|
||||
use Mockery;
|
||||
use Pterodactyl\Models\Permission;
|
||||
use Pterodactyl\Repositories\Wings\DaemonServerRepository;
|
||||
use Pterodactyl\Tests\Integration\Api\Client\ClientApiIntegrationTestCase;
|
||||
|
||||
class ResourceUtilitizationControllerTest extends ClientApiIntegrationTestCase
|
||||
{
|
||||
/**
|
||||
* Test that the resource utilization for a server is returned in the expected format.
|
||||
*/
|
||||
public function testServerResourceUtilizationIsReturned()
|
||||
{
|
||||
$service = Mockery::mock(DaemonServerRepository::class);
|
||||
$this->app->instance(DaemonServerRepository::class, $service);
|
||||
|
||||
[$user, $server] = $this->generateTestAccount([Permission::ACTION_WEBSOCKET_CONNECT]);
|
||||
|
||||
$service->expects('setServer')->with(Mockery::on(function ($value) use ($server) {
|
||||
return $server->uuid === $value->uuid;
|
||||
}))->andReturnSelf()->getMock()->expects('getDetails')->andReturns([]);
|
||||
|
||||
$response = $this->actingAs($user)->getJson("/api/client/servers/{$server->uuid}/resources");
|
||||
|
||||
$response->assertOk();
|
||||
$response->assertJson([
|
||||
'object' => 'stats',
|
||||
'attributes' => [
|
||||
'current_state' => 'stopped',
|
||||
'is_suspended' => false,
|
||||
'resources' => [
|
||||
'memory_bytes' => 0,
|
||||
'cpu_absolute' => 0,
|
||||
'disk_bytes' => 0,
|
||||
'network_rx_bytes' => 0,
|
||||
'network_tx_bytes' => 0,
|
||||
],
|
||||
],
|
||||
]);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user