[fn() => User::factory()->create()], 'Asset checked out to asset' => [fn() => Asset::factory()->laptopMbp()->create()], 'Asset checked out to location' => [fn() => Location::factory()->create()], ]; } public function licenseCheckoutTargets(): array { return [ 'License checked out to user' => [fn() => User::factory()->create()], 'License checked out to asset' => [fn() => Asset::factory()->laptopMbp()->create()], ]; } public function testAccessoryCheckinSendsSlackNotificationWhenSettingEnabled() { $this->settings->enableSlackWebhook(); $this->fireCheckInEvent( Accessory::factory()->create(), User::factory()->create(), ); $this->assertSlackNotificationSent(CheckinAccessoryNotification::class); } public function testAccessoryCheckinDoesNotSendSlackNotificationWhenSettingDisabled() { $this->settings->disableSlackWebhook(); $this->fireCheckInEvent( Accessory::factory()->create(), User::factory()->create(), ); $this->assertNoSlackNotificationSent(CheckinAccessoryNotification::class); } /** @dataProvider assetCheckoutTargets */ public function testAssetCheckinSendsSlackNotificationWhenSettingEnabled($checkoutTarget) { $this->settings->enableSlackWebhook(); $this->fireCheckInEvent( Asset::factory()->create(), $checkoutTarget(), ); $this->assertSlackNotificationSent(CheckinAssetNotification::class); } /** @dataProvider assetCheckoutTargets */ public function testAssetCheckinDoesNotSendSlackNotificationWhenSettingDisabled($checkoutTarget) { $this->settings->disableSlackWebhook(); $this->fireCheckInEvent( Asset::factory()->create(), $checkoutTarget(), ); $this->assertNoSlackNotificationSent(CheckinAssetNotification::class); } public function testComponentCheckinDoesNotSendSlackNotification() { $this->settings->enableSlackWebhook(); $this->fireCheckInEvent( Component::factory()->create(), Asset::factory()->laptopMbp()->create(), ); Notification::assertNothingSent(); } public function testConsumableCheckinSendSlackNotificationWhenSettingEnabled() { $this->markTestIncomplete(); } public function testConsumableCheckinDoesNotSendSlackNotificationWhenSettingDisabled() { $this->markTestIncomplete(); } /** @dataProvider licenseCheckoutTargets */ public function testLicenseCheckinSendsSlackNotificationWhenSettingEnabled($checkoutTarget) { $this->settings->enableSlackWebhook(); $this->fireCheckInEvent( LicenseSeat::factory()->create(), $checkoutTarget(), ); $this->assertSlackNotificationSent(CheckinLicenseSeatNotification::class); } /** @dataProvider licenseCheckoutTargets */ public function testLicenseCheckinDoesNotSendSlackNotificationWhenSettingDisabled($checkoutTarget) { $this->settings->disableSlackWebhook(); $this->fireCheckInEvent( LicenseSeat::factory()->create(), $checkoutTarget(), ); $this->assertNoSlackNotificationSent(CheckinLicenseSeatNotification::class); } private function fireCheckInEvent(Model $checkoutable, Model $target) { event(new CheckoutableCheckedIn( $checkoutable, $target, User::factory()->superuser()->create(), '' )); } }