Add more API resources; user bid management and tests #35 #36

This commit is contained in:
Nabeel Shahzad
2017-12-12 16:58:27 -06:00
parent 5b25a464ba
commit 248a8d1488
27 changed files with 470 additions and 166 deletions

View File

@@ -1,5 +1,8 @@
<?php
use App\Services\FlightService;
use App\Models\Flight;
use App\Models\User;
class FlightTest extends TestCase
{
@@ -7,6 +10,8 @@ class FlightTest extends TestCase
{
parent::setUp();
$this->addData('base');
$this->flightSvc = app(FlightService::class);
}
public function addFlight()
@@ -18,15 +23,22 @@ class FlightTest extends TestCase
$flight->arr_airport_id = 'KJFK';
$flight->save();
# subfleet ID is in the base.yml
$flight->subfleets()->syncWithoutDetaching([1]);
return $flight->id;
}
public function testGetFlight()
{
$flight_id = $this->addFlight();
$this->get('/api/flights/'.$flight_id, self::$auth_headers)
->assertStatus(200)
->assertJson(['dpt_airport_id' => 'KAUS']);
$req = $this->get('/api/flights/'.$flight_id, self::$auth_headers);
$req->assertStatus(200);
$body = $req->json();
$this->assertEquals($flight_id, $body['id']);
$this->assertEquals('KAUS', $body['dpt_airport_id']);
$this->assertEquals('KJFK', $body['arr_airport_id']);
$this->get('/api/flights/INVALID', self::$auth_headers)
->assertStatus(404);
@@ -44,4 +56,62 @@ class FlightTest extends TestCase
$req = $this->get('/api/flights/search?' . $query, self::$auth_headers);
$req->assertStatus(200);
}
/**
* Add/remove a bid, test the API, etc
* @throws \App\Services\Exception
*/
public function testBids()
{
$flight_id = $this->addFlight();
$user = User::find(1);
$flight = Flight::find($flight_id);
$bid = $this->flightSvc->addBid($flight, $user);
$this->assertEquals(1, $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);
# 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', self::$auth_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/1/bids', self::$auth_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 = User::find(1);
$bids = $user->bids()->get();
$this->assertTrue($bids->isEmpty());
$req = $this->get('/api/user', self::$auth_headers);
$req->assertStatus(200);
$body = $req->json();
$this->assertEquals(0, sizeof($body['bids']));
$req = $this->get('/api/users/1/bids', self::$auth_headers);
$req->assertStatus(200);
$body = $req->json();
$this->assertEquals(0, sizeof($body));
}
}