71 lines
2.6 KiB
PHP
71 lines
2.6 KiB
PHP
<?php
|
|
|
|
use App\Enums\FuelType;
|
|
use App\Models\Station;
|
|
use App\Models\StationPriceCurrent;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
beforeEach(function () {
|
|
$this->withHeaders(['X-Api-Key' => config('app.api_secret_key')]);
|
|
});
|
|
|
|
it('returns a prediction response', function () {
|
|
$this->getJson('/api/prediction')
|
|
->assertOk()
|
|
->assertJsonStructure([
|
|
'fuel_type', 'current_avg', 'predicted_direction', 'predicted_change_pence',
|
|
'confidence_score', 'confidence_label', 'action', 'reasoning',
|
|
'prediction_horizon_days', 'region_key', 'methodology',
|
|
'signals' => [
|
|
'trend' => ['score', 'confidence', 'direction', 'detail', 'data_points', 'enabled'],
|
|
'day_of_week' => ['score', 'confidence', 'direction', 'detail', 'data_points', 'enabled'],
|
|
'brand_behaviour' => ['score', 'confidence', 'direction', 'detail', 'data_points', 'enabled'],
|
|
'national_momentum' => ['score', 'confidence', 'direction', 'detail', 'data_points', 'enabled'],
|
|
'regional_momentum' => ['score', 'confidence', 'direction', 'detail', 'data_points', 'enabled'],
|
|
'price_stickiness' => ['score', 'confidence', 'direction', 'detail', 'data_points', 'enabled'],
|
|
],
|
|
])
|
|
->assertJsonPath('fuel_type', 'e10')
|
|
->assertJsonPath('region_key', 'national');
|
|
});
|
|
|
|
it('includes current average from live prices', function () {
|
|
$station = Station::factory()->create();
|
|
StationPriceCurrent::factory()->create([
|
|
'station_id' => $station->node_id,
|
|
'fuel_type' => FuelType::E10,
|
|
'price_pence' => 14750,
|
|
]);
|
|
|
|
$response = $this->getJson('/api/prediction')->assertOk();
|
|
|
|
expect($response->json('current_avg'))->toBe(147.5);
|
|
});
|
|
|
|
it('returns regional prediction when lat and lng are provided', function () {
|
|
$this->getJson('/api/prediction?lat=52.5&lng=-0.2')
|
|
->assertOk()
|
|
->assertJsonPath('region_key', 'regional')
|
|
->assertJsonPath('fuel_type', 'e10');
|
|
});
|
|
|
|
it('returns national prediction without coordinates', function () {
|
|
$this->getJson('/api/prediction')
|
|
->assertOk()
|
|
->assertJsonPath('region_key', 'national');
|
|
});
|
|
|
|
it('returns 422 for invalid lat', function () {
|
|
$this->getJson('/api/prediction?lat=999&lng=0')
|
|
->assertUnprocessable()
|
|
->assertJsonValidationErrors(['lat']);
|
|
});
|
|
|
|
it('returns 422 for invalid lng', function () {
|
|
$this->getJson('/api/prediction?lat=51.5&lng=999')
|
|
->assertUnprocessable()
|
|
->assertJsonValidationErrors(['lng']);
|
|
});
|