import tap from 'tap'; import isRoughlyEqual from 'is-roughly-equal'; import {createWhen} from './lib/util.js'; import {createClient} from '../../index.js'; import {profile as nvvProfile} from '../../p/nvv/index.js'; import {createValidateFptfWith as createValidate} from './lib/validate-fptf-with.js'; import {testJourneysStationToStation} from './lib/journeys-station-to-station.js'; import {journeysFailsWithNoProduct} from './lib/journeys-fails-with-no-product.js'; import {testJourneysStationToAddress} from './lib/journeys-station-to-address.js'; import {testJourneysStationToPoi} from './lib/journeys-station-to-poi.js'; import {testEarlierLaterJourneys} from './lib/earlier-later-journeys.js'; import {testDepartures} from './lib/departures.js'; import {testDeparturesInDirection} from './lib/departures-in-direction.js'; import {testArrivals} from './lib/arrivals.js'; import {testJourneysWithDetour} from './lib/journeys-with-detour.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(nvvProfile.timezone, nvvProfile.locale, T_MOCK); const cfg = { when, stationCoordsOptional: false, products: nvvProfile.products, minLatitude: 48, minLongitude: 8, maxLatitude: 53, maxLongitude: 14, }; const validate = createValidate(cfg, {}); const client = createClient(nvvProfile, 'public-transport/hafas-client:test'); const scheidemannplatz = '2200073'; const auestadion = '2200042'; const weigelstr = '2200056'; const friedrichsplatz = '2200006'; tap.test('journeys – Kassel Scheidemannplatz to Kassel Auestadion', async (t) => { const res = await client.journeys(scheidemannplatz, auestadion, { results: 4, departure: when, stopovers: true, }); await testJourneysStationToStation({ test: t, res, validate, fromId: scheidemannplatz, toId: auestadion, }); t.end(); }); // todo: journeys, only one product tap.test('journeys – fails with no product', async (t) => { await journeysFailsWithNoProduct({ test: t, fetchJourneys: client.journeys, fromId: scheidemannplatz, toId: auestadion, when, products: nvvProfile.products, }); t.end(); }); tap.test('Kassel Scheidemannplatz to Heckerstraße 2', async (t) => { const heckerstr2 = { type: 'location', id: '990100251', address: 'Kassel, Heckerstraße 2', latitude: 51.308108, longitude: 9.475152, }; const res = await client.journeys(scheidemannplatz, heckerstr2, { results: 3, departure: when, }); await testJourneysStationToAddress({ test: t, res, validate, fromId: scheidemannplatz, to: heckerstr2, }); t.end(); }); tap.test('Kassel Scheidemannplatz to Grimmwelt', async (t) => { const grimmwelt = { type: 'location', id: '1500490', poi: true, name: 'Grimmwelt Kassel', latitude: 51.309313, longitude: 9.489283, }; const res = await client.journeys(scheidemannplatz, grimmwelt, { results: 3, departure: when, }); await testJourneysStationToPoi({ test: t, res, validate, fromId: scheidemannplatz, to: grimmwelt, }); t.end(); }); tap.test('journeys: via works – with detour', async (t) => { // Going from Scheidemannplatz to Rathaus/Fünffensterstr. via Kassel Wilhelmshöhe // implies a detour. We check if the routing engine computes a detour. const rathausFünffensterstr = '2200436'; const wilhelmshöhe = '2200007'; const res = await client.journeys(scheidemannplatz, rathausFünffensterstr, { via: wilhelmshöhe, results: 1, departure: when, stopovers: true, }); await testJourneysWithDetour({ test: t, res, validate, detourIds: [wilhelmshöhe], }); t.end(); }); // todo: without detour tap.test('earlier/later journeys', async (t) => { await testEarlierLaterJourneys({ test: t, fetchJourneys: client.journeys, validate, fromId: scheidemannplatz, toId: auestadion, when, }); t.end(); }); tap.test('trip details', async (t) => { const res = await client.journeys(scheidemannplatz, auestadion, { results: 1, departure: when, }); const p = res.journeys[0].legs.find(l => !l.walking); 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 at Kassel Auestadion.', async (t) => { const res = await client.departures(auestadion, { duration: 11, when, }); await testDepartures({ test: t, res, validate, id: auestadion, }); t.end(); }); tap.test('departures with station object', async (t) => { const res = await client.departures({ type: 'station', id: auestadion, name: 'Kassel Auestadion', location: { type: 'location', latitude: 1.23, longitude: 2.34, }, }, {when}); validate(t, res, 'departuresResponse', 'res'); t.end(); }); tap.test('departures at Auestadion in direction of Friedrichsplatz', async (t) => { await testDeparturesInDirection({ test: t, fetchDepartures: client.departures, fetchTrip: client.trip, id: weigelstr, directionIds: [friedrichsplatz], when, validate, }); t.end(); }); tap.test('arrivals at Kassel Weigelstr.', async (t) => { const res = await client.arrivals(weigelstr, { duration: 5, when, }); await testArrivals({ test: t, res, validate, id: weigelstr, }); t.end(); }); // todo: nearby tap.test('locations named Auestadion', async (t) => { const locations = await client.locations('auestadion', {results: 10}); validate(t, locations, 'locations', 'locations'); t.ok(locations.length <= 10); t.ok(locations.find(s => s.type === 'stop' || s.type === 'station')); t.ok(locations.find(s => s.poi)); // POIs t.ok(locations.some(l => l.station && l.station.id === auestadion || l.id === auestadion)); t.end(); }); tap.test('station Auestadion', async (t) => { const s = await client.stop(auestadion); validate(t, s, ['stop', 'station'], 'station'); t.equal(s.id, auestadion); t.end(); }); tap.test('radar', async (t) => { const res = await client.radar({ north: 51.320153, west: 9.458359, south: 51.304304, east: 9.493672, }, { duration: 5 * 60, when, results: 10, }); validate(t, res, 'radarResult', 'res'); t.end(); });