88ace4e3d9
Accessibility (Pa11y live) / a11y (push) Has been cancelled
Снижение остатка 19 to 5. Всё тест-сторона: - PdErasureServiceTest + AdminPdSubjectRequestsControllerTest: SharesSupplierPdo — перестали коммитить pd_processing_log через pgsql_supplier, что ломало глобальный audit:verify-chains (6 падений) и амплифицировало PhoneRegionSmoke. - ReportFileDeletePdLogTest: SharesSupplierPdo — cron reports:cleanup-expired теперь видит незакоммиченные job'ы теста. - AdminSuppliersControllerTest: устойчивый ассерт (с фазы 3 в suppliers есть direct). - AuthLogCoverageTest/AuthFlowIntegrationTest: новый флоу самозаписи G1/SP1 — register_success пишется после confirm-email; добавлен шаг подтверждения. - ImpersonationTest end: verify (G7-B) ставит маркер impersonation → admin-зона закрыта by design; помечаем токен used напрямую вместо session-takeover. - CleanupInactiveSupplierProjectsJobTest: phase A читает pivot project_supplier_links — добавлена привязка linkProjectToSupplier (раньше был только legacy FK). - Pint-нормализация uses() FQN to import в ранее тронутых файлах. Остаток 5 (НЕ слепой патч): webhook B-префикс ×2 (решение владельца), advisory-lock audit-цепочки (возможный дрейф схемы, флажок), SupplierConnection WARN#2 (cap-3, поведенческое), SupplierPortalClientTest (пре-существующий, не от этих правок). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
62 lines
2.1 KiB
PHP
62 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\Tenant;
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
uses(DatabaseTransactions::class);
|
|
|
|
it('GET requisites returns null when none', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
$this->actingAs(User::factory()->create(['tenant_id' => $tenant->id]));
|
|
|
|
$this->getJson('/api/tenant/requisites')->assertOk()->assertJson(['data' => null]);
|
|
});
|
|
|
|
it('PUT individual requisites succeeds and normalizes phone', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
$this->actingAs(User::factory()->create(['tenant_id' => $tenant->id]));
|
|
|
|
$this->putJson('/api/tenant/requisites', [
|
|
'subject_type' => 'individual',
|
|
'contact_name' => 'Иван',
|
|
'contact_phone' => '8 915 123 45 67',
|
|
])->assertOk()->assertJsonPath('data.contact_phone', '+79151234567');
|
|
});
|
|
|
|
it('PUT legal entity without inn is rejected', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
$this->actingAs(User::factory()->create(['tenant_id' => $tenant->id]));
|
|
|
|
$this->putJson('/api/tenant/requisites', [
|
|
'subject_type' => 'legal_entity',
|
|
'contact_name' => 'A',
|
|
'contact_phone' => '9151234567',
|
|
])->assertStatus(422)->assertJsonValidationErrors('inn');
|
|
});
|
|
|
|
it('PUT legal entity with bad inn checksum is rejected', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
$this->actingAs(User::factory()->create(['tenant_id' => $tenant->id]));
|
|
|
|
$this->putJson('/api/tenant/requisites', [
|
|
'subject_type' => 'legal_entity',
|
|
'contact_name' => 'A',
|
|
'contact_phone' => '9151234567',
|
|
'inn' => '7707083890',
|
|
])->assertStatus(422)->assertJsonValidationErrors('inn');
|
|
});
|
|
|
|
it('PUT bad phone is rejected', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
$this->actingAs(User::factory()->create(['tenant_id' => $tenant->id]));
|
|
|
|
$this->putJson('/api/tenant/requisites', [
|
|
'subject_type' => 'individual',
|
|
'contact_name' => 'A',
|
|
'contact_phone' => '123',
|
|
])->assertStatus(422)->assertJsonValidationErrors('contact_phone');
|
|
});
|