mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
139 lines
3.2 KiB
JavaScript
139 lines
3.2 KiB
JavaScript
import tap from 'tap';
|
|
import isRoughlyEqual from 'is-roughly-equal';
|
|
|
|
import {createWhen} from './lib/util.js';
|
|
import {createClient} from '../../index.js';
|
|
import {profile as dbBusradarNrwProfile} from '../../p/db-busradar-nrw/index.js';
|
|
import {createValidateFptfWith as createValidate} from './lib/validate-fptf-with.js';
|
|
import {testDepartures} from './lib/departures.js';
|
|
import {testArrivals} from './lib/arrivals.js';
|
|
|
|
const isObj = o => o !== null && 'object' === typeof o && !Array.isArray(o);
|
|
|
|
const T_MOCK = 1668495600 * 1000; // 2022-11-15T08:00:00+01:00
|
|
const when = createWhen(dbBusradarNrwProfile.timezone, dbBusradarNrwProfile.locale, T_MOCK);
|
|
|
|
const cfg = {
|
|
when,
|
|
stationCoordsOptional: false,
|
|
products: dbBusradarNrwProfile.products,
|
|
minLatitude: 49.5,
|
|
maxLatitude: 55,
|
|
minLongitude: 4,
|
|
maxLongitude: 14,
|
|
};
|
|
|
|
const validate = createValidate(cfg, {});
|
|
|
|
const client = createClient(dbBusradarNrwProfile, 'public-transport/hafas-client:test');
|
|
|
|
const hagenBauhaus = '3307002';
|
|
const bielefeldHbf = '8000036';
|
|
const hagenVorhalle = '8000977';
|
|
|
|
tap.test('departures at Hagen Bauhaus', async (t) => {
|
|
const res = await client.departures(hagenBauhaus, {
|
|
duration: 120, when,
|
|
});
|
|
|
|
await testDepartures({
|
|
test: t,
|
|
res,
|
|
validate,
|
|
id: hagenBauhaus,
|
|
});
|
|
t.end();
|
|
});
|
|
|
|
tap.test('trip details', async (t) => {
|
|
const res = await client.departures(hagenBauhaus, {
|
|
results: 1, duration: 120, when,
|
|
});
|
|
|
|
const p = res.departures[0] || {};
|
|
t.ok(p.tripId, 'precondition failed');
|
|
t.ok(p.line.name, 'precondition failed');
|
|
|
|
const tripRes = await client.trip(p.tripId, {when});
|
|
|
|
validate(t, tripRes, 'tripResult', 'res');
|
|
t.end();
|
|
});
|
|
|
|
tap.test('departures with station object', async (t) => {
|
|
const res = await client.departures({
|
|
type: 'station',
|
|
id: hagenBauhaus,
|
|
name: 'Hagen(Westf) Bauhaus',
|
|
location: {
|
|
type: 'location',
|
|
latitude: 51.375141,
|
|
longitude: 7.455626,
|
|
},
|
|
}, {when, duration: 120});
|
|
|
|
validate(t, res, 'departuresResponse', 'res');
|
|
t.end();
|
|
});
|
|
|
|
// todo: departures at hagenBauhaus in direction of …
|
|
|
|
tap.test('arrivals at Hagen Bauhaus', async (t) => {
|
|
const res = await client.arrivals(hagenBauhaus, {
|
|
duration: 120, when,
|
|
});
|
|
|
|
await testArrivals({
|
|
test: t,
|
|
res,
|
|
validate,
|
|
id: hagenBauhaus,
|
|
});
|
|
t.end();
|
|
});
|
|
|
|
// todo: nearby
|
|
|
|
tap.test('locations named Vorhalle', async (t) => {
|
|
const locations = await client.locations('vorhalle', {
|
|
results: 10,
|
|
});
|
|
|
|
validate(t, locations, 'locations', 'locations');
|
|
t.ok(locations.length <= 20);
|
|
|
|
t.ok(locations.find(s => s.type === 'stop' || s.type === 'station'));
|
|
t.ok(locations.some((l) => {
|
|
return l.station && l.station.id === hagenVorhalle
|
|
|| l.id === hagenVorhalle;
|
|
}));
|
|
|
|
t.end();
|
|
});
|
|
|
|
tap.test('station Hagen-Vorhalle', async (t) => {
|
|
const s = await client.stop(hagenVorhalle);
|
|
|
|
validate(t, s, ['stop', 'station'], 'station');
|
|
t.equal(s.id, hagenVorhalle);
|
|
|
|
t.end();
|
|
});
|
|
|
|
tap.test('radar', async (t) => {
|
|
const res = await client.radar({
|
|
north: 51.5,
|
|
west: 7.2,
|
|
south: 51.2,
|
|
east: 7.8,
|
|
}, {
|
|
duration: 5 * 60, when, results: 10,
|
|
});
|
|
|
|
const validate = createValidate({
|
|
...cfg,
|
|
stationCoordsOptional: true,
|
|
}, {});
|
|
validate(t, res, 'radarResult', 'res');
|
|
t.end();
|
|
});
|