56 lines
2.5 KiB
PHP
56 lines
2.5 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||
|
|
use Illuminate\Support\Facades\DB;
|
||
|
|
|
||
|
|
uses(DatabaseTransactions::class);
|
||
|
|
|
||
|
|
beforeEach(function () {
|
||
|
|
DB::table('external_service_balances')->delete();
|
||
|
|
});
|
||
|
|
|
||
|
|
it('GET /api/admin/dashboard/balances возвращает строки сервисов + topup_url', function () {
|
||
|
|
config()->set('services.yandex_cloud.console_billing_url', 'https://console.yandex.cloud/billing/accounts');
|
||
|
|
config()->set('services.yandex_cloud.billing_account_id', 'dn2w7fcvynjxe6elljct');
|
||
|
|
|
||
|
|
DB::table('external_service_balances')->insert([
|
||
|
|
['service_key' => 'dadata', 'balance_amount' => 4500, 'currency' => 'RUB', 'daily_spend_estimate' => 100,
|
||
|
|
'days_left' => 9, 'light' => 'green', 'ok' => true, 'checked_at' => now(), 'created_at' => now(), 'updated_at' => now()],
|
||
|
|
['service_key' => 'yandex_cloud', 'balance_amount' => -540.48, 'currency' => 'RUB', 'daily_spend_estimate' => 600,
|
||
|
|
'days_left' => 0, 'light' => 'red', 'ok' => true, 'checked_at' => now(), 'created_at' => now(), 'updated_at' => now()],
|
||
|
|
]);
|
||
|
|
|
||
|
|
$res = $this->getJson('/api/admin/dashboard/balances');
|
||
|
|
|
||
|
|
$res->assertOk();
|
||
|
|
$res->assertJsonStructure([
|
||
|
|
'light',
|
||
|
|
'services' => [['service_key', 'balance_amount', 'currency', 'days_left', 'light', 'ok', 'checked_at', 'topup_url']],
|
||
|
|
]);
|
||
|
|
expect($res->json('light'))->toBe('red'); // худший из сервисов
|
||
|
|
$yc = collect($res->json('services'))->firstWhere('service_key', 'yandex_cloud');
|
||
|
|
expect($yc['topup_url'])->toBe('https://console.yandex.cloud/billing/accounts/dn2w7fcvynjxe6elljct/payments');
|
||
|
|
});
|
||
|
|
|
||
|
|
it('неуспешный сервис показывается серым (grey), не красным', function () {
|
||
|
|
DB::table('external_service_balances')->insert([
|
||
|
|
'service_key' => 'supplier', 'balance_amount' => 12000, 'currency' => 'RUB',
|
||
|
|
'light' => 'red', 'ok' => false, 'error' => 'кабинет недоступен',
|
||
|
|
'checked_at' => now(), 'created_at' => now(), 'updated_at' => now(),
|
||
|
|
]);
|
||
|
|
|
||
|
|
$res = $this->getJson('/api/admin/dashboard/balances');
|
||
|
|
$res->assertOk();
|
||
|
|
$svc = collect($res->json('services'))->firstWhere('service_key', 'supplier');
|
||
|
|
expect($svc['light'])->toBe('grey');
|
||
|
|
expect($svc['ok'])->toBeFalse();
|
||
|
|
});
|
||
|
|
|
||
|
|
it('summary включает плитку balances', function () {
|
||
|
|
$res = $this->getJson('/api/admin/dashboard?period=30d');
|
||
|
|
$res->assertOk();
|
||
|
|
$res->assertJsonStructure(['balances' => ['light', 'count', 'red']]);
|
||
|
|
});
|