phpvms/tests/FlightTest.php

211 lines
6.0 KiB
PHP
Raw Normal View History

2017-06-20 00:30:39 +08:00
<?php
use App\Services\FlightService;
use App\Models\Flight;
use App\Models\User;
use App\Models\UserBid;
2017-06-20 00:30:39 +08:00
class FlightTest extends TestCase
{
public function setUp()
{
parent::setUp();
2017-08-15 12:36:49 +08:00
$this->addData('base');
$this->flightSvc = app(FlightService::class);
2017-06-20 00:30:39 +08:00
}
public function addFlight()
{
$flight = factory(App\Models\Flight::class)->create();
$flight->subfleets()->syncWithoutDetaching([
factory(App\Models\Subfleet::class)->create()->id
]);
return $flight;
2017-08-15 12:36:49 +08:00
}
2017-11-23 01:52:02 +08:00
public function testGetFlight()
2017-08-15 12:36:49 +08:00
{
$flight = $this->addFlight();
$req = $this->get('/api/flights/' . $flight->id);
$req->assertStatus(200);
$body = $req->json();
$this->assertEquals($flight->id, $body['id']);
$this->assertEquals($flight->dpt_airport_id, $body['dpt_airport_id']);
$this->assertEquals($flight->arr_airport_id, $body['arr_airport_id']);
$this->get('/api/flights/INVALID', self::$auth_headers)
->assertStatus(404);
}
/**
* Search based on all different criteria
*/
public function testSearchFlight()
{
$flight = $this->addFlight();
# search specifically for a flight ID
$query = 'flight_id=' . $flight->id;
$req = $this->get('/api/flights/search?' . $query);
$req->assertStatus(200);
2017-06-20 00:30:39 +08:00
}
/**
* Find all of the flights
*/
public function testFindAllFlights()
{
factory(App\Models\Flight::class, 120)->create();
$res = $this->get('/api/flights');
$body = $res->json();
$this->assertEquals(3, $body['meta']['last_page']);
$res = $this->get('/api/flights?page=3');
$res->assertJsonCount(20, 'data');
}
public function testFlightSearchApi()
{
$flights = factory(App\Models\Flight::class, 100)->create();
$flight = $flights->random();
$query = 'flight_number=' . $flight->flight_number;
$req = $this->get('/api/flights/search?' . $query);
$body = $req->json();
$this->assertEquals($flight->id, $body['data'][0]['id']);
}
/**
* Add/remove a bid, test the API, etc
* @throws \App\Services\Exception
*/
public function testBids()
{
$user = factory(User::class)->create();
2018-01-05 11:05:26 +08:00
$headers = $this->headers($user);
$flight = $this->addFlight();
$bid = $this->flightSvc->addBid($flight, $user);
$this->assertEquals($user->id, $bid->user_id);
$this->assertEquals($flight->id, $bid->flight_id);
$this->assertTrue($flight->has_bid);
# Refresh
$flight = Flight::find($flight->id);
$this->assertTrue($flight->has_bid);
# Check the table and make sure thee entry is there
$user_bid = UserBid::where(['flight_id'=>$flight->id, 'user_id'=>$user->id])->get();
$this->assertNotNull($user_bid);
$user->refresh();
$this->assertEquals(1, $user->bids->count());
# Query the API and see that the user has the bids
# And pull the flight details for the user/bids
$req = $this->get('/api/user', $headers);
$req->assertStatus(200);
$body = $req->json();
$this->assertEquals(1, sizeof($body['bids']));
$this->assertEquals($flight->id, $body['bids'][0]['flight_id']);
$req = $this->get('/api/users/'.$user->id.'/bids', $headers);
$body = $req->json();
$req->assertStatus(200);
$this->assertEquals($flight->id, $body[0]['id']);
# Now remove the flight and check API
$this->flightSvc->removeBid($flight, $user);
$flight = Flight::find($flight->id);
$this->assertFalse($flight->has_bid);
$user->refresh();
$bids = $user->bids()->get();
$this->assertTrue($bids->isEmpty());
$req = $this->get('/api/user', $headers);
$req->assertStatus(200);
$body = $req->json();
$this->assertEquals($user->id, $body['id']);
$this->assertEquals(0, sizeof($body['bids']));
$req = $this->get('/api/users/'.$user->id.'/bids', $headers);
$req->assertStatus(200);
$body = $req->json();
$this->assertEquals(0, sizeof($body));
}
/**
*
*/
public function testMultipleBidsSingleFlight()
{
setting('bids.disable_flight_on_bid', true);
$user1 = factory(User::class)->create();;
2017-12-14 01:33:55 +08:00
$user2 = factory(User::class)->create();
$flight = $this->addFlight();
# Put bid on the flight to block it off
$bid = $this->flightSvc->addBid($flight, $user1);
$bidRepeat = $this->flightSvc->addBid($flight, $user2);
$this->assertNull($bidRepeat);
}
/**
* Delete a flight and make sure all the bids are gone
*/
public function testDeleteFlight()
{
$user = factory(User::class)->create();
2018-01-05 11:05:26 +08:00
$headers = $this->headers($user);
$flight = $this->addFlight();
$bid = $this->flightSvc->addBid($flight, $user);
$this->assertEquals($user->id, $bid->user_id);
$this->assertEquals($flight->id, $bid->flight_id);
$this->assertTrue($flight->has_bid);
$this->flightSvc->deleteFlight($flight);
$empty_flight = Flight::find($flight->id);
$this->assertNull($empty_flight);
# Make sure no bids exist
$user_bids = UserBid::where('flight_id', $flight->id)->get();
#$this->assertEquals(0, $user_bid->count());
# Query the API and see that the user has the bids
# And pull the flight details for the user/bids
$req = $this->get('/api/user', $headers);
$req->assertStatus(200);
$body = $req->json();
$this->assertEquals($user->id, $body['id']);
$this->assertEquals(0, sizeof($body['bids']));
$req = $this->get('/api/users/'.$user->id.'/bids', $headers);
$req->assertStatus(200);
$body = $req->json();
$this->assertEquals(0, sizeof($body));
}
2017-06-20 00:30:39 +08:00
}