2017-08-31 11:14:21 -07:00
|
|
|
<?php
|
2017-09-18 12:29:08 -07:00
|
|
|
use App\Exceptions\CheckoutNotAllowed;
|
2017-08-31 11:14:21 -07:00
|
|
|
use App\Models\Asset;
|
|
|
|
use App\Models\AssetModel;
|
|
|
|
use App\Models\Category;
|
|
|
|
use App\Models\Location;
|
|
|
|
use App\Models\User;
|
2018-03-25 13:46:57 -07:00
|
|
|
use App\Notifications\CheckoutAssetNotification;
|
2017-08-31 11:14:21 -07:00
|
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
use Illuminate\Support\Facades\Notification;
|
|
|
|
|
|
|
|
class NotificationTest extends BaseTest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \UnitTester
|
|
|
|
*/
|
|
|
|
protected $tester;
|
|
|
|
|
2018-07-23 06:48:21 -07:00
|
|
|
public function testAUserIsEmailedIfTheyCheckoutAnAssetWithEULA()
|
|
|
|
{
|
|
|
|
$admin = factory(User::class)->states('superuser')->create();
|
|
|
|
Auth::login($admin);
|
|
|
|
$cat = $this->createValidCategory('asset-laptop-category', ['require_acceptance' => true]);
|
|
|
|
$model = $this->createValidAssetModel('mbp-13-model', ['category_id' => $cat->id]);
|
|
|
|
$asset = $this->createValidAsset(['model_id' => $model->id]);
|
|
|
|
$user = factory(User::class)->create();
|
|
|
|
Notification::fake();
|
|
|
|
$asset->checkOut($user, 1);
|
2017-08-31 11:14:21 -07:00
|
|
|
|
2018-07-23 06:48:21 -07:00
|
|
|
Notification::assertSentTo($user, CheckoutAssetNotification::class);
|
|
|
|
}
|
2017-08-31 11:14:21 -07:00
|
|
|
}
|