Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
90 lines
2.4 KiB
PHP
90 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\Services\Contact\Reminder;
|
|
|
|
use Carbon\Carbon;
|
|
use Tests\TestCase;
|
|
use App\Models\User\User;
|
|
use App\Models\Contact\Reminder;
|
|
use App\Models\Contact\ReminderRule;
|
|
use App\Services\Contact\Reminder\DestroyReminder;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
class DestroyReminderTest extends TestCase
|
|
{
|
|
use DatabaseTransactions;
|
|
|
|
/** @test */
|
|
public function it_destroys_a_reminder()
|
|
{
|
|
$reminder = factory(Reminder::class)->create([
|
|
'initial_date' => '2017-02-02',
|
|
'frequency_type' => 'year',
|
|
'frequency_number' => 1,
|
|
'title' => 'title',
|
|
'description' => 'description',
|
|
]);
|
|
|
|
$request = [
|
|
'account_id' => $reminder->account_id,
|
|
'reminder_id' => $reminder->id,
|
|
];
|
|
|
|
$this->assertDatabaseHas('reminders', [
|
|
'id' => $reminder->id,
|
|
]);
|
|
|
|
app(DestroyReminder::class)->execute($request);
|
|
|
|
$this->assertDatabaseMissing('reminders', [
|
|
'id' => $reminder->id,
|
|
]);
|
|
}
|
|
|
|
/** @test */
|
|
public function it_destroys_scheduled_reminders()
|
|
{
|
|
// prepare a reminder and schedule some notifications
|
|
Carbon::setTestNow(Carbon::create(2017, 2, 1));
|
|
$user = factory(User::class)->create([]);
|
|
$reminder = factory(Reminder::class)->create([
|
|
'account_id' => $user->account_id,
|
|
'initial_date' => '2017-02-02',
|
|
'frequency_type' => 'year',
|
|
'frequency_number' => 1,
|
|
'title' => 'title',
|
|
'description' => 'description',
|
|
]);
|
|
$reminderRule = factory(ReminderRule::class)->create([
|
|
'account_id' => $reminder->account_id,
|
|
'number_of_days_before' => 30,
|
|
'active' => 1,
|
|
]);
|
|
|
|
$reminder->schedule($user);
|
|
|
|
$this->assertDatabaseHas('reminder_outbox', [
|
|
'reminder_id' => $reminder->id,
|
|
]);
|
|
|
|
$request = [
|
|
'account_id' => $reminder->account_id,
|
|
'reminder_id' => $reminder->id,
|
|
];
|
|
|
|
$this->assertDatabaseHas('reminders', [
|
|
'id' => $reminder->id,
|
|
]);
|
|
|
|
app(DestroyReminder::class)->execute($request);
|
|
|
|
$this->assertDatabaseMissing('reminders', [
|
|
'id' => $reminder->id,
|
|
]);
|
|
|
|
$this->assertDatabaseMissing('reminder_outbox', [
|
|
'reminder_id' => $reminder->id,
|
|
]);
|
|
}
|
|
}
|