withoutExceptionHandling()->login()->loginNami(); $member = $this->member(); $this->fakeRequest(); $response = $this ->from("/member/{$member->id}") ->patch("/member/{$member->id}", array_merge($member->getAttributes(), ['has_nami' => true])); $response->assertRedirect('/member'); } public function testItHasPutRequest(): void { $this->withoutExceptionHandling()->login()->loginNami(); $member = $this->member(); $this->fakeRequest(); $response = $this ->patch("/member/{$member->id}", array_merge($member->getAttributes(), ['has_nami' => true, 'firstname' => '::firstname::'])); Http::assertSent(fn ($request) => 'PUT' === $request->method() && '::firstname::' === $request['vorname'] ); } public function testItMergesExistingData(): void { $this->withoutExceptionHandling()->login()->loginNami(); $member = $this->member(); $this->fakeRequest(); $response = $this ->from("/member/{$member->id}") ->patch("/member/{$member->id}", array_merge($member->getAttributes(), ['has_nami' => true, 'firstname' => '::firstname::'])); Http::assertSent(fn ($request) => 'PUT' === $request->method() && '{"a":"b"}' === $request['kontoverbindung'] && 'missingvalue' === $request['missingkey'] && '::firstname::' === $request['vorname'] ); } public function testItChecksVersion(): void { $this->login()->loginNami(); $member = $this->member(); $member->update(['version' => 43]); $this->fakeRequest(); $response = $this ->from("/member/{$member->id}") ->patch("/member/{$member->id}", array_merge($member->getAttributes(), ['has_nami' => true, 'firstname' => '::firstname::'])); $response->assertRedirect("/member/{$member->id}/edit?conflict=1"); } public function testItUpdatesVersion(): void { $this->withoutExceptionHandling()->login()->loginNami(); $member = $this->member(); $this->fakeRequest(); $response = $this ->from("/member/{$member->id}") ->patch("/member/{$member->id}", array_merge($member->getAttributes(), ['has_nami' => true])); $this->assertEquals(44, $member->fresh()->version); } public function testItUpdatesCriminalRecord(): void { $this->withoutExceptionHandling()->login()->loginNami(); $member = $this->member(); $this->fakeRequest(); $response = $this ->from("/member/{$member->id}") ->patch("/member/{$member->id}", array_merge($member->getAttributes(), [ 'ps_at' => '2021-02-01', 'more_ps_at' => '2021-02-02', 'has_svk' => true, 'has_vk' => true, 'efz' => '2021-02-03', 'without_education_at' => '2021-02-04', 'without_efz_at' => '2021-02-05', 'has_nami' => true, 'multiply_pv' => true, 'multiply_more_pv' => true, ])); $this->assertEquals('2021-02-01', $member->fresh()->ps_at); $this->assertEquals('2021-02-02', $member->fresh()->more_ps_at); $this->assertTrue($member->fresh()->has_svk); $this->assertTrue($member->fresh()->has_vk); $this->assertTrue($member->fresh()->multiply_pv); $this->assertTrue($member->fresh()->multiply_more_pv); $this->assertEquals('2021-02-03', $member->fresh()->efz); $this->assertEquals('2021-02-04', $member->fresh()->without_education_at); $this->assertEquals('2021-02-05', $member->fresh()->without_efz_at); } private function member(): Member { return Member::factory() ->for(Group::factory()->state(['nami_id' => 10])) ->for(Confession::factory()) ->for(Nationality::factory()) ->for(Subscription::factory()->for(Fee::factory())) ->for(Country::factory()) ->create(['nami_id' => 135]); } private function fakeRequest(): void { Http::fake(function ($request) { if ($request->url() === app(FakeBackend::class)->singleMemberUrl(10, 135) && 'GET' === $request->method()) { return Http::response('{ "success": true, "data": {"missingkey": "missingvalue", "kontoverbindung": {"a": "b"} } }', 200); } if ($request->url() === app(FakeBackend::class)->singleMemberUrl(10, 135) && 'PUT' === $request->method() && 43 === $request['version']) { return Http::response('{ "success": false, "message": "Update nicht möglich. Der Datensatz wurde zwischenzeitlich verändert." }', 200); } if ($request->url() === app(FakeBackend::class)->singleMemberUrl(10, 135) && 'PUT' === $request->method()) { return Http::response('{ "success": true, "data": { "version": 44 } }', 200); } }); } }