withNamiSettings($mglnr, $password, $groupId); Group::factory()->create(['nami_id' => $groupId]); return $this; } public function withNamiSettings(int $mglnr = 12345, string $password = 'password', int $groupId = 55): self { NamiSettings::fake([ 'mglnr' => $mglnr, 'password' => $password, 'default_group_id' => $groupId, ]); return $this; } public function login(): self { $this->be($user = User::factory()->create()); $this->me = $user; return $this; } public function init(): self { Member::factory()->defaults()->create(); return $this; } /** * @param array $errors */ public function assertErrors(array $errors, TestResponse $response): self { $response->assertSessionHas('errors'); $this->assertInstanceOf(RedirectResponse::class, $response->baseResponse); /** @var RedirectResponse */ $response = $response; $sessionErrors = $response->getSession()->get('errors')->getBag('default'); foreach ($errors as $key => $value) { $this->assertTrue($sessionErrors->has($key), "Cannot find key {$key} in errors '".print_r($sessionErrors, true)); $this->assertEquals($value, $sessionErrors->get($key)[0], "Failed to validate value for session error key {$key}. Actual value: ".print_r($sessionErrors, true)); } return $this; } /** * @param $class */ public function stubIo(string $class, callable $mocker): self { $mock = Phake::mock($class); $mocker($mock); app()->instance($class, $mock); return $this; } public function fakeAllHttp(): self { Http::fake(['*' => Http::response('', 200)]); return $this; } }