167 lines
4.9 KiB
PHP
167 lines
4.9 KiB
PHP
<?php
|
|
|
|
use App\Models\Acars;
|
|
use App\Models\Enums\AcarsType;
|
|
use App\Models\Navdata;
|
|
use App\Models\Pirep;
|
|
use App\Models\User;
|
|
use App\Models\Enums\PirepState;
|
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
|
|
class PIREPTest extends TestCase
|
|
{
|
|
use WithoutMiddleware;
|
|
|
|
protected $pirepSvc;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp(); // TODO: Change the autogenerated stub
|
|
$this->addData('base');
|
|
$this->pirepSvc = app('App\Services\PIREPService');
|
|
}
|
|
|
|
protected function createNewRoute()
|
|
{
|
|
$route = [];
|
|
$navpoints = factory(App\Models\Navdata::class, 5)->create();
|
|
foreach ($navpoints as $point) {
|
|
$route[] = $point->id;
|
|
}
|
|
|
|
return $route;
|
|
}
|
|
|
|
protected function getAcarsRoute($pirep)
|
|
{
|
|
$pirep->refresh();
|
|
|
|
$saved_route = [];
|
|
$route_points = Acars::where(
|
|
['pirep_id' => $pirep->id, 'type' => AcarsType::ROUTE]
|
|
)->orderBy('order', 'asc')->get();
|
|
|
|
foreach ($route_points as $point) {
|
|
$saved_route[] = $point->name;
|
|
}
|
|
|
|
return $saved_route;
|
|
}
|
|
|
|
/**
|
|
*/
|
|
public function testAddPirep()
|
|
{
|
|
$route = $this->createNewRoute();
|
|
$pirep = factory(App\Models\Pirep::class)->create([
|
|
'route' => implode(' ', $route)
|
|
]);
|
|
|
|
print_r($route);
|
|
$pirep = $this->pirepSvc->create($pirep, []);
|
|
|
|
/**
|
|
* Check the initial state info
|
|
*/
|
|
$this->assertEquals($pirep->state, PirepState::PENDING);
|
|
|
|
/**
|
|
* Now set the PIREP state to ACCEPTED
|
|
*/
|
|
$new_pirep_count = $pirep->pilot->flights + 1;
|
|
$original_flight_time = $pirep->pilot->flight_time ;
|
|
$new_flight_time = $pirep->pilot->flight_time + $pirep->flight_time;
|
|
|
|
$this->pirepSvc->changeState($pirep, PirepState::ACCEPTED);
|
|
$this->assertEquals($new_pirep_count, $pirep->pilot->flights);
|
|
$this->assertEquals($new_flight_time, $pirep->pilot->flight_time);
|
|
$this->assertEquals($pirep->arr_airport_id, $pirep->pilot->curr_airport_id);
|
|
#$this->assertEquals(1, $pirep->pilot->rank_id);
|
|
|
|
/**
|
|
* Now go from ACCEPTED to REJECTED
|
|
*/
|
|
$new_pirep_count = $pirep->pilot->flights - 1;
|
|
$new_flight_time = $pirep->pilot->flight_time - $pirep->flight_time;
|
|
$this->pirepSvc->changeState($pirep, PirepState::REJECTED);
|
|
$this->assertEquals($new_pirep_count, $pirep->pilot->flights);
|
|
$this->assertEquals($new_flight_time, $pirep->pilot->flight_time);
|
|
$this->assertEquals($pirep->arr_airport_id, $pirep->pilot->curr_airport_id);
|
|
|
|
/**
|
|
* Check the ACARS table
|
|
*/
|
|
$saved_route = $this->getAcarsRoute($pirep);
|
|
print_r($saved_route);
|
|
$this->assertEquals($route, $saved_route);
|
|
|
|
/**
|
|
* Recreate the route with new options points. Make sure that the
|
|
* old route is erased from the ACARS table and then recreated
|
|
*/
|
|
$route = $this->createNewRoute();
|
|
$pirep->route = implode(' ', $route);
|
|
$pirep->save();
|
|
|
|
# this should delete the old route from the acars table
|
|
$this->pirepSvc->saveRoute($pirep);
|
|
|
|
$saved_route = $this->getAcarsRoute($pirep);
|
|
$this->assertEquals($route, $saved_route);
|
|
}
|
|
|
|
/**
|
|
* check the stats/ranks, etc have incremented properly
|
|
*/
|
|
public function testPilotStatsIncr()
|
|
{
|
|
$original_pilot = User::find(1);
|
|
|
|
# Submit two PIREPs
|
|
$pireps = factory(Pirep::class, 2)->create([
|
|
'airline_id' => 1,
|
|
'user_id' => 1,
|
|
# 360min == 6 hours, rank should bump up
|
|
'flight_time' => 360,
|
|
]);
|
|
|
|
foreach ($pireps as $pirep) {
|
|
$this->pirepSvc->create($pirep);
|
|
$this->pirepSvc->accept($pirep);
|
|
}
|
|
|
|
$pilot = User::find(1);
|
|
$last_pirep = Pirep::where('id', $pilot->last_pirep_id)->first();
|
|
|
|
# Make sure rank went up
|
|
$this->assertGreaterThan($original_pilot->rank_id, $pilot->rank_id);
|
|
$this->assertEquals($last_pirep->arr_airport_id, $pilot->curr_airport_id);
|
|
|
|
#
|
|
# Submit another PIREP, adding another 6 hours
|
|
# it should automatically be accepted
|
|
#
|
|
$pirep = factory(Pirep::class)->create([
|
|
'airline_id' => 1,
|
|
'user_id' => 1,
|
|
# 120min == 2 hours, currently at 9 hours
|
|
# Rank bumps up at 10 hours
|
|
'flight_time' => 120,
|
|
]);
|
|
|
|
# Pilot should be at rank 2, where accept should be automatic
|
|
$this->pirepSvc->create($pirep);
|
|
|
|
$pilot->refresh();
|
|
$latest_pirep = Pirep::where('id', $pilot->last_pirep_id)->first();
|
|
|
|
# Make sure PIREP was auto updated
|
|
$this->assertEquals(PirepState::ACCEPTED, $latest_pirep->state);
|
|
|
|
# Make sure latest PIREP was updated
|
|
$this->assertNotEquals($last_pirep->id, $latest_pirep->id);
|
|
}
|
|
}
|