113 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			113 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\Invoice;
 | |
| 
 | |
| use App\Invoice\Actions\InvoiceSendAction;
 | |
| use App\Invoice\BillDocument;
 | |
| use App\Invoice\BillKind;
 | |
| use App\Invoice\Enums\InvoiceStatus;
 | |
| use App\Invoice\Mails\BillMail;
 | |
| use App\Invoice\Mails\RememberMail;
 | |
| use App\Invoice\Models\Invoice;
 | |
| use App\Invoice\Models\InvoicePosition;
 | |
| use App\Invoice\RememberDocument;
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use Illuminate\Support\Facades\Mail;
 | |
| use Illuminate\Support\Facades\Storage;
 | |
| use Modules\Invoice\InvoiceSettings;
 | |
| use Tests\TestCase;
 | |
| use Zoomyboy\Tex\Tex;
 | |
| 
 | |
| class InvoiceSendActionTest extends TestCase
 | |
| {
 | |
|     use DatabaseTransactions;
 | |
| 
 | |
|     public function testItSendsInvoices(): void
 | |
|     {
 | |
|         Mail::fake();
 | |
|         Tex::spy();
 | |
|         Storage::fake('temp');
 | |
|         $this->withoutExceptionHandling()->login()->loginNami();
 | |
|         $invoice = Invoice::factory()
 | |
|             ->to(ReceiverRequestFactory::new()->name('Familie Muster'))
 | |
|             ->has(InvoicePosition::factory()->withMember(), 'positions')
 | |
|             ->via(BillKind::EMAIL)
 | |
|             ->create(['mail_email' => 'max@muster.de']);
 | |
| 
 | |
|         InvoiceSendAction::run();
 | |
| 
 | |
|         Mail::assertSent(BillMail::class, fn ($mail) => $mail->build() && $mail->hasTo('max@muster.de', 'Familie Muster') && Storage::disk('temp')->path('rechnung-fur-familie-muster.pdf') === $mail->filename && Storage::disk('temp')->exists('rechnung-fur-familie-muster.pdf'));
 | |
|         Tex::assertCompiled(BillDocument::class, fn ($document) => 'Familie Muster' === $document->toName);
 | |
|         $this->assertEquals(InvoiceStatus::SENT, $invoice->fresh()->status);
 | |
|         $this->assertEquals(now()->format('Y-m-d'), $invoice->fresh()->sent_at->format('Y-m-d'));
 | |
|     }
 | |
| 
 | |
|     public function testItRemembersInvoices(): void
 | |
|     {
 | |
|         Mail::fake();
 | |
|         Tex::spy();
 | |
|         Storage::fake('temp');
 | |
|         $this->withoutExceptionHandling()->login()->loginNami();
 | |
|         $invoice = Invoice::factory()
 | |
|             ->to(ReceiverRequestFactory::new()->name('Familie Muster'))
 | |
|             ->has(InvoicePosition::factory()->withMember(), 'positions')
 | |
|             ->via(BillKind::EMAIL)
 | |
|             ->status(InvoiceStatus::SENT)
 | |
|             ->create(['sent_at' => now()->subMonths(6), 'mail_email' => 'max@muster.de', 'last_remembered_at' => now()->subMonths(6)]);
 | |
| 
 | |
|         InvoiceSendAction::run();
 | |
| 
 | |
|         Mail::assertSent(RememberMail::class, fn ($mail) => $mail->build() && $mail->hasTo('max@muster.de', 'Familie Muster') && Storage::disk('temp')->path('zahlungserinnerung-fur-familie-muster.pdf') === $mail->filename && Storage::disk('temp')->exists('zahlungserinnerung-fur-familie-muster.pdf'));
 | |
|         Tex::assertCompiled(RememberDocument::class, fn ($document) => 'Familie Muster' === $document->toName);
 | |
|         $this->assertEquals(now()->format('Y-m-d'), $invoice->fresh()->last_remembered_at->format('Y-m-d'));
 | |
|     }
 | |
| 
 | |
|     public function testItDoesntRememberWhenNotDue(): void
 | |
|     {
 | |
|         Mail::fake();
 | |
|         $this->withoutExceptionHandling()->login()->loginNami();
 | |
|         Invoice::factory()
 | |
|             ->has(InvoicePosition::factory()->withMember(), 'positions')
 | |
|             ->via(BillKind::EMAIL)
 | |
|             ->status(InvoiceStatus::SENT)
 | |
|             ->create(['sent_at' => now()->subMonths(6), 'last_remembered_at' => now()->subMonth()]);
 | |
| 
 | |
|         InvoiceSendAction::run();
 | |
| 
 | |
|         Mail::assertNotSent(RememberMail::class);
 | |
|     }
 | |
| 
 | |
|     public function testItRemembersWhenWeeksSettingIsReached(): void
 | |
|     {
 | |
|         Mail::fake();
 | |
|         $this->withoutExceptionHandling()->login()->loginNami();
 | |
|         Invoice::factory()
 | |
|             ->has(InvoicePosition::factory()->withMember(), 'positions')
 | |
|             ->via(BillKind::EMAIL)
 | |
|             ->status(InvoiceStatus::SENT)
 | |
|             ->create(['sent_at' => now()->subYear(), 'last_remembered_at' => now()->subWeeks(5)->subDay()]);
 | |
| 
 | |
|         app(InvoiceSettings::class)->fill(['rememberWeeks' => 6])->save();
 | |
|         InvoiceSendAction::run();
 | |
|         Mail::assertNotSent(RememberMail::class);
 | |
| 
 | |
|         app(InvoiceSettings::class)->fill(['rememberWeeks' => 5])->save();
 | |
|         InvoiceSendAction::run();
 | |
|         Mail::assertSent(RememberMail::class);
 | |
|     }
 | |
| 
 | |
|     public function testItDoesntSendPostInvoices(): void
 | |
|     {
 | |
|         Mail::fake();
 | |
|         $this->withoutExceptionHandling()->login()->loginNami();
 | |
|         Invoice::factory()
 | |
|             ->has(InvoicePosition::factory()->withMember(), 'positions')
 | |
|             ->via(BillKind::POST)
 | |
|             ->create();
 | |
| 
 | |
|         InvoiceSendAction::run();
 | |
| 
 | |
|         Mail::assertNotSent(BillMail::class);
 | |
|     }
 | |
| }
 |