1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/tests/Integration/SendFailedEmailsTest.php
David Bomba c503d58505
Adjust email quotas - Hosted plan. (#3663)
* Fixes for invitations not being created in RandomDataSeeder

* Resend failed/quota exceeded emails

* Queue email tests

* Refund a client for a ninja account

* Adjust email quotas - hosted plan
2020-04-30 21:45:47 +10:00

69 lines
1.8 KiB
PHP

<?php
namespace Tests\Integration;
use App\Jobs\Invoice\EmailInvoice;
use App\Jobs\Util\SendFailedEmails;
use App\Jobs\Util\SystemLogger;
use App\Models\SystemLog;
use Illuminate\Foundation\Testing\Concerns\InteractsWithDatabase;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Queue;
use Tests\MockAccountData;
use Tests\TestCase;
/**
* @test
* @covers App\Jobs\Util\SendFailedEmails
*/
class SendFailedEmailsTest extends TestCase
{
use MockAccountData;
use DatabaseTransactions;
public function setUp() :void
{
parent::setUp();
$this->makeTestData();
}
public function testReminderFires()
{
$invitation = $this->invoice->invitations->first();
$reminder_template = $this->invoice->calculateTemplate();
$sl = [
'entity_name' => 'App\Models\InvoiceInvitation',
'invitation_key' => $invitation->key,
'reminder_template' => $reminder_template,
'subject' => '',
'body' => '',
];
$system_log = new SystemLog;
$system_log->company_id = $this->invoice->company_id;
$system_log->client_id = $this->invoice->client_id;
$system_log->category_id = SystemLog::CATEGORY_MAIL;
$system_log->event_id = SystemLog::EVENT_MAIL_RETRY_QUEUE;
$system_log->type_id = SystemLog::TYPE_QUOTA_EXCEEDED;
$system_log->log = $sl;
$system_log->save();
$sys_log = SystemLog::where('event_id', SystemLog::EVENT_MAIL_RETRY_QUEUE)->first();
$this->assertNotNull($sys_log);
// Queue::fake();
SendFailedEmails::dispatch();
//Queue::assertPushed(SendFailedEmails::class);
//Queue::assertPushed(EmailInvoice::class);
//$this->expectsJobs(EmailInvoice::class);
}
}