adrema/tests/TestCase.php

44 lines
986 B
PHP

<?php
namespace Tests;
use App\Member\Member;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Illuminate\Testing\TestResponse;
use Tests\Lib\InertiaMixin;
use Zoomyboy\LaravelNami\Backend\FakeBackend;
use Zoomyboy\LaravelNami\Nami;
use Zoomyboy\LaravelNami\NamiUser;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
public function setUp(): void {
parent::setUp();
TestResponse::mixin(new InertiaMixin());
}
public function login(): self
{
app(FakeBackend::class)
->fakeLogin('123')
->addSearch(123, ['entries_vorname' => '::firstname::', 'entries_nachname' => '::lastname::', 'entries_gruppierungId' => 1000]);
$this->post('/login', [
'mglnr' => 123,
'password' => 'secret',
]);
return $this;
}
public function init(): self
{
Member::factory()->defaults()->create();
return $this;
}
}