phpvms/tests/AwardsTest.php
Nabeel S 7e742518bc
Module/plugin installation working #593 (#594)
* Remove the Sample module

* 593-Fix-Modules-From-Composer

* Fix pre/post install scripts in composer #593

* Formatting
2020-02-28 16:06:45 -05:00

67 lines
1.7 KiB
PHP

<?php
use App\Models\UserAward;
use App\Services\AwardService;
use App\Services\PirepService;
class AwardsTest extends TestCase
{
/** @var AwardService */
private $awardSvc;
private $pirepSvc;
public function setUp(): void
{
parent::setUp();
$this->addData('base');
$this->addData('fleet');
$this->awardSvc = app(AwardService::class);
$this->pirepSvc = app(PirepService::class);
}
/**
* Make sure the awards classes are returned
*/
public function testGetAwardsClasses()
{
$classes = $this->awardSvc->findAllAwardClasses();
$this->assertCount(2, $classes);
}
/**
* Test to make sure that the award is actually given out
*/
public function testAwardsGiven()
{
// Create one award that's given out with one flight
$award = factory(App\Models\Award::class)->create([
'ref_model' => Modules\Awards\Awards\PilotFlightAwards::class,
'ref_model_params' => 1,
]);
$user = factory(App\Models\User::class)->create([
'flights' => 0,
]);
$pirep = factory(App\Models\Pirep::class)->create([
'airline_id' => $user->airline->id,
'user_id' => $user->id,
]);
$this->pirepSvc->create($pirep);
$this->pirepSvc->accept($pirep);
$w = [
'user_id' => $user->id,
'award_id' => $award->id,
];
// Make sure only one is awarded
$this->assertEquals(1, UserAward::where($w)->count(['id']));
$found_award = UserAward::where($w)->first();
$this->assertNotNull($found_award);
}
}