2022-08-12 22:07:59 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature\Member;
|
|
|
|
|
2024-03-08 22:59:43 +01:00
|
|
|
use App\Actions\PullMemberAction;
|
|
|
|
use App\Actions\PullMembershipsAction;
|
2022-08-12 22:07:59 +02:00
|
|
|
use App\Activity;
|
2024-03-08 22:59:43 +01:00
|
|
|
use App\Confession;
|
2022-08-12 22:07:59 +02:00
|
|
|
use App\Country;
|
|
|
|
use App\Fee;
|
|
|
|
use App\Gender;
|
2022-11-16 22:59:49 +01:00
|
|
|
use App\Member\Actions\NamiPutMemberAction;
|
2022-08-12 22:07:59 +02:00
|
|
|
use App\Member\Member;
|
|
|
|
use App\Nationality;
|
|
|
|
use App\Payment\Subscription;
|
|
|
|
use App\Region;
|
|
|
|
use App\Subactivity;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Tests\Lib\MergesAttributes;
|
|
|
|
use Tests\TestCase;
|
2024-03-08 22:59:43 +01:00
|
|
|
use Zoomyboy\LaravelNami\Fakes\MemberFake;
|
2022-08-12 22:07:59 +02:00
|
|
|
|
|
|
|
class StoreTest extends TestCase
|
|
|
|
{
|
|
|
|
use DatabaseTransactions;
|
|
|
|
use MergesAttributes;
|
|
|
|
|
|
|
|
public function testItCanStoreAMember(): void
|
|
|
|
{
|
2024-03-08 22:59:43 +01:00
|
|
|
app(MemberFake::class)->stores(55, 103);
|
2022-08-12 22:07:59 +02:00
|
|
|
Fee::factory()->create();
|
|
|
|
$this->withoutExceptionHandling()->login()->loginNami();
|
|
|
|
$country = Country::factory()->create();
|
|
|
|
$gender = Gender::factory()->create();
|
|
|
|
$region = Region::factory()->create();
|
|
|
|
$nationality = Nationality::factory()->create();
|
2024-03-08 22:59:43 +01:00
|
|
|
$activity = Activity::factory()->inNami(89)->create();
|
|
|
|
$subactivity = Subactivity::factory()->inNami(90)->create();
|
2022-08-12 22:07:59 +02:00
|
|
|
$subscription = Subscription::factory()->create();
|
2024-03-08 22:59:43 +01:00
|
|
|
$confesstion = Confession::factory()->create(['is_null' => true]);
|
|
|
|
PullMemberAction::shouldRun();
|
|
|
|
PullMembershipsAction::shouldRun();
|
2022-08-12 22:07:59 +02:00
|
|
|
|
|
|
|
$response = $this
|
|
|
|
->from('/member/create')
|
|
|
|
->post('/member', $this->attributes([
|
|
|
|
'country_id' => $country->id,
|
|
|
|
'gender_id' => $gender->id,
|
|
|
|
'region_id' => $region->id,
|
|
|
|
'nationality_id' => $nationality->id,
|
|
|
|
'first_activity_id' => $activity->id,
|
|
|
|
'first_subactivity_id' => $subactivity->id,
|
|
|
|
'subscription_id' => $subscription->id,
|
2022-12-06 23:11:57 +01:00
|
|
|
'bill_kind' => 'Post',
|
2023-02-27 22:40:47 +01:00
|
|
|
'salutation' => 'Doktor',
|
2023-02-27 23:15:57 +01:00
|
|
|
'comment' => 'Lorem bla',
|
2023-07-24 16:55:07 +02:00
|
|
|
]))->assertSessionHasNoErrors();
|
2022-08-12 22:07:59 +02:00
|
|
|
|
2023-02-17 12:29:33 +01:00
|
|
|
$response->assertRedirect('/member')->assertSessionHasNoErrors();
|
2022-08-12 22:07:59 +02:00
|
|
|
$member = Member::firstWhere('firstname', 'Joe');
|
|
|
|
$this->assertDatabaseHas('members', [
|
|
|
|
'address' => 'Bavert 50',
|
2022-12-06 23:11:57 +01:00
|
|
|
'bill_kind' => 'Post',
|
2022-08-12 22:07:59 +02:00
|
|
|
'birthday' => '2013-02-19',
|
2023-03-03 00:30:33 +01:00
|
|
|
'children_phone' => '+49 176 8574112',
|
2022-08-12 22:07:59 +02:00
|
|
|
'country_id' => $country->id,
|
|
|
|
'email_parents' => 'osloot@aol.com',
|
|
|
|
'firstname' => 'Joe',
|
|
|
|
'gender_id' => $gender->id,
|
|
|
|
'joined_at' => '2022-08-12',
|
|
|
|
'lastname' => 'Muster',
|
|
|
|
'letter_address' => null,
|
|
|
|
'location' => 'Solingen',
|
|
|
|
'main_phone' => '+49 212 2334322',
|
2023-03-03 00:30:33 +01:00
|
|
|
'mobile_phone' => '+49 176 3033053',
|
2022-08-12 22:07:59 +02:00
|
|
|
'nationality_id' => $nationality->id,
|
|
|
|
'region_id' => $region->id,
|
|
|
|
'send_newspaper' => '1',
|
|
|
|
'subscription_id' => $subscription->id,
|
|
|
|
'zip' => '42719',
|
2023-03-03 00:30:33 +01:00
|
|
|
'fax' => '+49 212 4732223',
|
2023-02-27 22:40:47 +01:00
|
|
|
'salutation' => 'Doktor',
|
2023-02-27 23:15:57 +01:00
|
|
|
'comment' => 'Lorem bla',
|
2022-08-12 22:07:59 +02:00
|
|
|
]);
|
2024-03-08 22:59:43 +01:00
|
|
|
|
|
|
|
app(MemberFake::class)->assertStored(55, [
|
|
|
|
'ersteTaetigkeitId' => 89,
|
|
|
|
'ersteUntergliederungId' => 90,
|
|
|
|
]);
|
2022-11-16 22:59:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testItCanStoreAMemberWithoutNami(): void
|
|
|
|
{
|
|
|
|
$this->withoutExceptionHandling()->login()->loginNami();
|
|
|
|
$activity = Activity::factory()->create();
|
|
|
|
$subactivity = Subactivity::factory()->create();
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
->from('/member/create')
|
|
|
|
->post('/member', $this->attributes([
|
|
|
|
'first_activity_id' => $activity->id,
|
|
|
|
'first_subactivity_id' => $subactivity->id,
|
|
|
|
'has_nami' => false,
|
|
|
|
]));
|
|
|
|
|
2023-02-17 12:29:33 +01:00
|
|
|
$response->assertSessionHasNoErrors();
|
2022-11-16 22:59:49 +01:00
|
|
|
$this->assertDatabaseHas('members', [
|
|
|
|
'nami_id' => null,
|
|
|
|
]);
|
|
|
|
NamiPutMemberAction::spy()->shouldNotHaveReceived('handle');
|
|
|
|
}
|
|
|
|
|
2023-03-03 00:30:33 +01:00
|
|
|
public function testItUpdatesPhoneNumber(): void
|
|
|
|
{
|
|
|
|
$this->withoutExceptionHandling()->login()->loginNami();
|
|
|
|
|
|
|
|
$this->post('/member', $this->attributes([
|
|
|
|
'has_nami' => false,
|
|
|
|
'main_phone' => '02103 4455129',
|
|
|
|
'fax' => '02103 4455130',
|
|
|
|
'children_phone' => '02103 4455130',
|
|
|
|
]));
|
|
|
|
|
|
|
|
$this->assertDatabaseHas('members', [
|
|
|
|
'main_phone' => '+49 2103 4455129',
|
|
|
|
'fax' => '+49 2103 4455130',
|
|
|
|
'children_phone' => '+49 2103 4455130',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testItHasErrorWhenPhoneNumberIsInvalid(): void
|
|
|
|
{
|
|
|
|
$this->login()->loginNami();
|
|
|
|
|
|
|
|
$response = $this->post('/member', $this->attributes([
|
|
|
|
'has_nami' => false,
|
|
|
|
'main_phone' => '1111111111111111',
|
|
|
|
'mobile_phone' => '1111111111111111',
|
|
|
|
'fax' => '1111111111111111',
|
|
|
|
'children_phone' => '1111111111111111',
|
|
|
|
]));
|
|
|
|
|
|
|
|
$response->assertSessionHasErrors([
|
|
|
|
'main_phone' => 'Telefon (Eltern) ist keine valide Nummer.',
|
|
|
|
'mobile_phone' => 'Handy (Eltern) ist keine valide Nummer.',
|
|
|
|
'children_phone' => 'Telefon (Kind) ist keine valide Nummer.',
|
|
|
|
'fax' => 'Fax ist keine valide Nummer.',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2023-07-24 16:55:07 +02:00
|
|
|
public function testItDoesntRequireBirthdayWhenNotInNami(): void
|
|
|
|
{
|
|
|
|
$this->login()->loginNami();
|
|
|
|
|
|
|
|
$this
|
|
|
|
->post('/member', $this->attributes([
|
|
|
|
'nationality_id' => null,
|
|
|
|
'birthday' => null,
|
|
|
|
'has_nami' => false,
|
|
|
|
'address' => null,
|
|
|
|
'zip' => null,
|
|
|
|
'location' => null,
|
|
|
|
'joined_at' => null,
|
2023-09-07 16:48:51 +02:00
|
|
|
]))->assertSessionDoesntHaveErrors();
|
2023-07-24 16:55:07 +02:00
|
|
|
$this->assertDatabaseHas('members', [
|
|
|
|
'nationality_id' => null,
|
|
|
|
'birthday' => null,
|
|
|
|
'address' => null,
|
|
|
|
'zip' => null,
|
|
|
|
'location' => null,
|
|
|
|
'joined_at' => null,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2023-09-07 16:48:51 +02:00
|
|
|
public function testItDoesntNeedSubscription(): void
|
|
|
|
{
|
|
|
|
$this->login()->loginNami();
|
|
|
|
|
|
|
|
$this
|
|
|
|
->post('/member', $this->attributes([
|
|
|
|
'has_nami' => false,
|
|
|
|
'subscription_id' => null,
|
|
|
|
]))->assertSessionDoesntHaveErrors();
|
|
|
|
$this->assertDatabaseHas('members', [
|
|
|
|
'subscription_id' => null,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2023-02-14 13:57:21 +01:00
|
|
|
public function testItRequiresFields(): void
|
|
|
|
{
|
|
|
|
$this->login()->loginNami();
|
|
|
|
|
2023-02-17 12:29:33 +01:00
|
|
|
$this
|
2023-02-14 13:57:21 +01:00
|
|
|
->post('/member', $this->attributes([
|
|
|
|
'nationality_id' => null,
|
2023-07-24 16:55:07 +02:00
|
|
|
'birthday' => '',
|
|
|
|
'address' => '',
|
|
|
|
'zip' => '',
|
|
|
|
'location' => '',
|
|
|
|
'joined_at' => '',
|
2023-02-17 12:29:33 +01:00
|
|
|
]))
|
2023-07-24 16:55:07 +02:00
|
|
|
->assertSessionHasErrors(['nationality_id', 'birthday', 'address', 'zip', 'location', 'joined_at']);
|
2023-02-14 13:57:21 +01:00
|
|
|
}
|
|
|
|
|
2022-11-16 22:59:49 +01:00
|
|
|
public function testSubscriptionIsRequiredIfFirstActivityIsPaid(): void
|
|
|
|
{
|
|
|
|
$this->login()->loginNami();
|
2023-02-17 12:29:33 +01:00
|
|
|
$activity = Activity::factory()->name('€ Mitglied')->create();
|
2022-11-16 22:59:49 +01:00
|
|
|
$subactivity = Subactivity::factory()->create();
|
|
|
|
|
2023-02-17 12:29:33 +01:00
|
|
|
$this
|
2022-11-16 22:59:49 +01:00
|
|
|
->from('/member/create')
|
|
|
|
->post('/member', $this->attributes([
|
|
|
|
'first_activity_id' => $activity->id,
|
|
|
|
'first_subactivity_id' => $subactivity->id,
|
|
|
|
'subscription_id' => null,
|
2023-02-17 12:29:33 +01:00
|
|
|
]))
|
|
|
|
->assertSessionHasErrors(['subscription_id' => 'Beitragsart ist erforderlich.']);
|
2022-08-12 22:07:59 +02:00
|
|
|
}
|
|
|
|
|
2023-09-19 20:14:52 +02:00
|
|
|
/**
|
|
|
|
* @return array<string, mixed>
|
|
|
|
*/
|
2022-08-12 22:07:59 +02:00
|
|
|
public function defaults(): array
|
|
|
|
{
|
2023-02-17 12:29:33 +01:00
|
|
|
$country = Country::factory()->create();
|
|
|
|
$nationality = Nationality::factory()->create();
|
|
|
|
$subscription = Subscription::factory()->create();
|
|
|
|
|
2022-08-12 22:07:59 +02:00
|
|
|
return [
|
|
|
|
'address' => 'Bavert 50',
|
|
|
|
'birthday' => '2013-02-19',
|
2023-03-03 00:30:33 +01:00
|
|
|
'children_phone' => '+49 176 8574112',
|
2022-08-12 22:07:59 +02:00
|
|
|
'efz' => '',
|
|
|
|
'email' => '',
|
|
|
|
'email_parents' => 'osloot@aol.com',
|
2023-03-03 00:30:33 +01:00
|
|
|
'fax' => '+49 212 4732223',
|
2022-08-12 22:07:59 +02:00
|
|
|
'firstname' => 'Joe',
|
|
|
|
'further_address' => '',
|
|
|
|
'has_nami' => true,
|
|
|
|
'has_svk' => false,
|
|
|
|
'has_vk' => false,
|
|
|
|
'joined_at' => '2022-08-12',
|
|
|
|
'lastname' => 'Muster',
|
|
|
|
'letter_address' => '',
|
|
|
|
'location' => 'Solingen',
|
|
|
|
'main_phone' => '+49 212 2334322',
|
2023-03-03 00:30:33 +01:00
|
|
|
'mobile_phone' => '+49 176 3033053',
|
2022-08-12 22:07:59 +02:00
|
|
|
'more_ps_at' => '',
|
|
|
|
'multiply_more_pv' => false,
|
|
|
|
'multiply_pv' => false,
|
|
|
|
'other_country' => '',
|
|
|
|
'ps_at' => '',
|
|
|
|
'send_newspaper' => true,
|
|
|
|
'without_education_at' => '',
|
|
|
|
'without_efz_at' => '',
|
|
|
|
'work_phone' => '',
|
|
|
|
'zip' => '42719',
|
2023-02-17 12:29:33 +01:00
|
|
|
'country_id' => $country->id,
|
|
|
|
'nationality_id' => $nationality->id,
|
|
|
|
'subscription_id' => $subscription->id,
|
2022-08-12 22:07:59 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|