55 lines
1.5 KiB
PHP
55 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Test API calls and authentication, etc
|
|
*/
|
|
class ApiTest extends TestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->addData('base');
|
|
}
|
|
|
|
/**
|
|
* Ensure authentication against the API works
|
|
*/
|
|
public function testApiAuthentication()
|
|
{
|
|
$airport = factory(App\Models\Airport::class)->create();
|
|
|
|
$uri = '/api/airports/' . $airport->icao;
|
|
|
|
// Missing auth header
|
|
$this->get($uri)->assertStatus(401);
|
|
|
|
// Test invalid API key
|
|
$this->withHeaders(['Authorization' => 'invalidKey'])->get($uri)
|
|
->assertStatus(401);
|
|
|
|
// Test upper/lower case of Authorization header, etc
|
|
$this->withHeaders($this->apiHeaders())->get($uri)
|
|
->assertStatus(200)
|
|
->assertJson(['icao' => $airport->icao], true);
|
|
|
|
$this->withHeaders(['AUTHORIZATION' => 'testadminapikey'])->get($uri)
|
|
->assertStatus(200)
|
|
->assertJson(['icao' => $airport->icao], true);
|
|
}
|
|
|
|
/**
|
|
* Make sure the airport data is returned
|
|
*/
|
|
public function testAirportRequest()
|
|
{
|
|
$airport = factory(App\Models\Airport::class)->create();
|
|
|
|
$this->withHeaders($this->apiHeaders())->get('/api/airports/' . $airport->icao)
|
|
->assertStatus(200)
|
|
->assertJson(['icao' => $airport->icao], true);
|
|
|
|
$this->withHeaders($this->apiHeaders())->get('/api/airports/UNK')
|
|
->assertStatus(404);
|
|
}
|
|
}
|