Files
firefly-iii/tests/integration/Api/Models/Account/ListControllerTest.php

96 lines
3.0 KiB
PHP
Raw Permalink Normal View History

<?php
/*
* AccountControllerTest.php
* Copyright (c) 2025 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace Tests\integration\Api\Models\Account;
use FireflyIII\Enums\AccountTypeEnum;
use FireflyIII\Factory\AttachmentFactory;
use FireflyIII\Models\Account;
use FireflyIII\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
2026-01-23 15:09:50 +01:00
use Override;
use Tests\integration\TestCase;
/**
* @internal
*
* @covers \FireflyIII\Api\V1\Controllers\Models\Account\ListController
*/
final class ListControllerTest extends TestCase
{
use RefreshDatabase;
2026-01-23 15:09:50 +01:00
private User $user;
private Account $account;
2025-11-09 09:08:03 +01:00
#[Override]
protected function setUp(): void
{
parent::setUp();
$this->user = $this->createAuthenticatedUser();
$this->actingAs($this->user);
2026-01-23 15:09:50 +01:00
$this->account = Account::factory()
->for($this->user)
->withType(AccountTypeEnum::ASSET)
->create()
;
2026-01-23 15:09:50 +01:00
app(AttachmentFactory::class)
->setUser($this->user)
->create([
'filename' => 'test 1',
'title' => 'test 1',
'attachable_type' => Account::class,
'attachable_id' => $this->account->id,
])
;
2026-01-23 15:09:50 +01:00
app(AttachmentFactory::class)
->setUser($this->user)
->create([
'filename' => 'test 2',
'title' => 'test 2',
'attachable_type' => Account::class,
'attachable_id' => $this->account->id,
])
;
}
public function testIndex(): void
{
$this->actingAs($this->user);
$response = $this->getJson(route('api.v1.accounts.attachments', ['account' => $this->account->id]));
$response->assertStatus(200);
2026-01-23 15:09:50 +01:00
$response->assertJson(['meta' => ['pagination' => ['total' => 2, 'total_pages' => 1]]]);
}
public function testIndexCanChangePageSize(): void
{
$this->actingAs($this->user);
2026-01-23 15:09:50 +01:00
$response = $this->getJson(route('api.v1.accounts.attachments', ['account' => $this->account->id, 'limit' => 1]));
$response->assertStatus(200);
2026-01-23 15:09:50 +01:00
$response->assertJson(['meta' => ['pagination' => ['total' => 2, 'total_pages' => 2]]]);
}
}