createOne(); Bus::assertDispatched(SendDiscordNotificationJob::class); } /** * When a user is deleted, a SendDiscordNotification job shall be dispatched. * * @return void */ public function testUserDeletedSendsDiscordNotification(): void { $user = User::factory()->createOne(); Config::set(FlagConstants::ALLOW_DISCORD_NOTIFICATIONS_FLAG_QUALIFIED, true); Bus::fake(SendDiscordNotificationJob::class); $user->delete(); Bus::assertDispatched(SendDiscordNotificationJob::class); } /** * When a user is restored, a SendDiscordNotification job shall be dispatched. * * @return void */ public function testUserRestoredSendsDiscordNotification(): void { $user = User::factory()->createOne(); Config::set(FlagConstants::ALLOW_DISCORD_NOTIFICATIONS_FLAG_QUALIFIED, true); Bus::fake(SendDiscordNotificationJob::class); $user->restore(); Bus::assertDispatched(SendDiscordNotificationJob::class); } /** * When a user is updated, a SendDiscordNotification job shall be dispatched. * * @return void */ public function testUserUpdatedSendsDiscordNotification(): void { $user = User::factory()->createOne(); Config::set(FlagConstants::ALLOW_DISCORD_NOTIFICATIONS_FLAG_QUALIFIED, true); Bus::fake(SendDiscordNotificationJob::class); $changes = User::factory()->makeOne(); $user->fill($changes->getAttributes()); $user->save(); Bus::assertDispatched(SendDiscordNotificationJob::class); } }