phpvms/tests/AircraftTest.php

140 lines
3.8 KiB
PHP
Raw Normal View History

2017-06-10 03:47:02 +08:00
<?php
class AircraftTest extends TestCase
{
protected $ac_svc,
$ICAO = 'B777';
2017-06-10 03:47:02 +08:00
public function setUp()
{
2017-06-10 03:47:02 +08:00
parent::setUp();
2017-06-20 00:50:25 +08:00
$this->addData('aircraft_test');
2017-06-10 14:50:00 +08:00
}
2017-06-11 07:41:35 +08:00
protected function getAircraftClass()
{
return app('App\Repositories\AircraftClassRepository')
->findByField('code', 'H')->first();
}
2017-06-10 14:50:00 +08:00
2017-06-11 07:41:35 +08:00
protected function findByICAO($icao)
{
$ac_repo = app('App\Repositories\AircraftRepository');
return $ac_repo->findByICAO($icao);
2017-06-10 03:47:02 +08:00
}
2017-06-11 07:41:35 +08:00
protected function getFareByCode($code)
2017-06-10 03:47:02 +08:00
{
return app('App\Repositories\FareRepository')->findByCode($code);
}
/**
* Check the association of the aircraft class to an aircraft
* Mostly to experiment with the ORM type stuff. This isn't
* where most of the testing, etc is required.
*/
2017-06-11 07:41:35 +08:00
protected function addAircraft()
{
$svc = app('App\Services\AircraftService');
$err = $svc->create([
'icao' => $this->ICAO,
2017-06-10 14:50:00 +08:00
'name' => 'Boeing 777',
2017-06-11 07:41:35 +08:00
], $this->getAircraftClass());
$this->assertNotFalse($err);
2017-06-11 07:41:35 +08:00
return $this->findByICAO($this->ICAO);
}
public function testAircraftClasses()
{
2017-06-11 07:41:35 +08:00
$aircraft = $this->addAircraft();
$this->assertEquals($this->ICAO, $aircraft->icao, 'ICAO matching');
$this->assertEquals(
2017-06-11 07:41:35 +08:00
$this->getAircraftClass(),
$aircraft->class,
'Check belongsTo relationship'
);
}
public function testAircraftFaresNoOverride()
{
$fare_svc = app('App\Services\FareService');
2017-06-11 07:41:35 +08:00
$aircraft = $this->addAircraft();
$fare = $this->getFareByCode('Y');
2017-06-11 07:41:35 +08:00
$fare_svc->setForAircraft($aircraft, $fare);
$ac_fares = $fare_svc->getForAircraft($aircraft);
$this->assertCount(1, $ac_fares);
$this->assertEquals($fare->price, $ac_fares[0]->price);
$this->assertEquals($fare->capacity, $ac_fares[0]->capacity);
#
# set an override now
#
2017-06-11 07:41:35 +08:00
$fare_svc->setForAircraft($aircraft, $fare, [
'price' => 50, 'capacity' => 400
]);
# look for them again
2017-06-11 07:41:35 +08:00
$ac_fares = $fare_svc->getForAircraft($aircraft);
$this->assertCount(1, $ac_fares);
$this->assertEquals(50, $ac_fares[0]->price);
$this->assertEquals(400, $ac_fares[0]->capacity);
# delete
2017-06-11 07:41:35 +08:00
$fare_svc->delFromAircraft($aircraft, $fare);
$this->assertCount(0, $fare_svc->getForAircraft($aircraft));
}
public function testAircraftFaresOverride()
{
$fare_svc = app('App\Services\FareService');
2017-06-11 07:41:35 +08:00
$aircraft = $this->addAircraft();
$fare = $this->getFareByCode('Y');
2017-06-11 07:41:35 +08:00
$fare_svc->setForAircraft($aircraft, $fare, [
'price' => 50, 'capacity' => 400
]);
2017-06-11 07:41:35 +08:00
$ac_fares = $fare_svc->getForAircraft($aircraft);
$this->assertCount(1, $ac_fares);
$this->assertEquals(50, $ac_fares[0]->price);
$this->assertEquals(400, $ac_fares[0]->capacity);
#
# update the override to a different amount and make sure it updates
#
2017-06-11 07:41:35 +08:00
$fare_svc->setForAircraft($aircraft, $fare, [
'price' => 150, 'capacity' => 50
]);
2017-06-11 07:41:35 +08:00
$ac_fares = $fare_svc->getForAircraft($aircraft);
$this->assertCount(1, $ac_fares);
$this->assertEquals(150, $ac_fares[0]->price);
$this->assertEquals(50, $ac_fares[0]->capacity);
2017-06-10 14:50:00 +08:00
# delete
2017-06-11 07:41:35 +08:00
$fare_svc->delFromAircraft($aircraft, $fare);
$this->assertCount(0, $fare_svc->getForAircraft($aircraft));
}
/**
* @expectedException Exception
*/
public function testAircraftMissingField()
{
# missing the name field
$svc = app('App\Services\AircraftService');
$svc->create(['icao' => $this->ICAO]);
2017-06-10 03:47:02 +08:00
}
}