Merge pull request #9171 from mzhubail/add-about-tests_

Add about test
This commit is contained in:
James Cole 2024-09-04 10:35:08 +02:00 committed by GitHub
commit 1b75b778d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 87 additions and 0 deletions

View File

@ -0,0 +1,78 @@
<?php
/*
* AboutControllerTest.php
* Copyright (c) 2021 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\About;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Testing\Fluent\AssertableJson;
use Tests\integration\TestCase;
/**
* Class AboutControllerTest
*
* @internal
*
* @coversNothing
*/
final class AboutControllerTest extends TestCase
{
use RefreshDatabase;
private $user;
public function setUp(): void
{
parent::setUp();
if (!isset($this->user))
$this->user = $this->createAuthenticatedUser();
$this->actingAs($this->user);
}
public function testGivenAuthenticatedRequestReturnsSystemInformation(): void
{
$response = $this->getJson(route('api.v1.about.index'));
$response->assertOk();
$response->assertJsonStructure([
'data' => [
'version',
'api_version',
'php_version',
'os',
'driver'
],
]);
}
public function testGivenAuthenticatedRequestReturnsUserInformation(): void
{
$response = $this->getJson(route('api.v1.about.user'));
$response->assertOk();
$response->assertJson(fn(AssertableJson $json) =>
$json
->where('data.attributes.email', $this->user->email)
->where('data.attributes.role', $this->user->role)
);
}
}

View File

@ -23,6 +23,7 @@ declare(strict_types=1);
namespace Tests\integration;
use FireflyIII\User;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Tests\integration\Traits\CollectsValues;
@ -48,4 +49,12 @@ abstract class TestCase extends BaseTestCase
'custom range' => ['custom'],
];
}
protected function createAuthenticatedUser(): User
{
return User::create([
'email' => 'test@email.com',
'password' => 'password',
]);
}
}