2022-05-07 16:17:37 +02:00
|
|
|
|
import tap from 'tap'
|
|
|
|
|
import assert from 'assert'
|
|
|
|
|
import isRoughlyEqual from 'is-roughly-equal'
|
|
|
|
|
|
|
|
|
|
import {createWhen} from './lib/util.js'
|
|
|
|
|
import {createClient} from '../../index.js'
|
|
|
|
|
import {profile as mobiliteitLuProfile} from '../../p/mobiliteit-lu/index.js'
|
|
|
|
|
import {
|
|
|
|
|
createValidateLine,
|
|
|
|
|
createValidateJourneyLeg,
|
|
|
|
|
createValidateMovement,
|
|
|
|
|
} from './lib/validators.js'
|
|
|
|
|
import {createValidateFptfWith as createValidate} from './lib/validate-fptf-with.js'
|
|
|
|
|
import {testJourneysStationToStation} from './lib/journeys-station-to-station.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 {journeysFailsWithNoProduct} from './lib/journeys-fails-with-no-product.js'
|
|
|
|
|
import {testDepartures} from './lib/departures.js'
|
|
|
|
|
import {testArrivals} from './lib/arrivals.js'
|
2020-11-25 16:23:42 +01:00
|
|
|
|
|
2022-11-09 21:21:55 +01:00
|
|
|
|
const T_MOCK = 1668495600 * 1000 // 2022-11-15T08:00:00+01:00
|
2022-04-23 14:40:51 +02:00
|
|
|
|
const when = createWhen(mobiliteitLuProfile.timezone, mobiliteitLuProfile.locale, T_MOCK)
|
2020-11-25 16:23:42 +01:00
|
|
|
|
|
|
|
|
|
const cfg = {
|
|
|
|
|
when,
|
2022-05-07 16:17:37 +02:00
|
|
|
|
products: mobiliteitLuProfile.products,
|
2020-11-25 16:23:42 +01:00
|
|
|
|
minLatitude: 47.24,
|
|
|
|
|
maxLatitude: 52.9,
|
|
|
|
|
minLongitude: -0.63,
|
|
|
|
|
maxLongitude: 14.07
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const _validateLine = createValidateLine(cfg)
|
|
|
|
|
const validateLine = (validate, l, name) => {
|
|
|
|
|
if (!l.direction) l = Object.assign({}, l, {direction: 'foo'})
|
|
|
|
|
_validateLine(validate, l, name)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const _validateJourneyLeg = createValidateJourneyLeg(cfg)
|
|
|
|
|
const validateJourneyLeg = (validate, l, name) => {
|
|
|
|
|
if (!l.direction) l = Object.assign({}, l, {direction: 'foo'})
|
|
|
|
|
_validateJourneyLeg(validate, l, name)
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-07 16:17:37 +02:00
|
|
|
|
const _validateMovement = createValidateMovement(cfg)
|
2020-11-25 16:23:42 +01:00
|
|
|
|
const validateMovement = (val, m, name = 'movement') => {
|
|
|
|
|
// todo: fix this upstream
|
|
|
|
|
const withFakeLocation = Object.assign({}, m)
|
|
|
|
|
withFakeLocation.location = Object.assign({}, m.location, {
|
|
|
|
|
latitude: 50,
|
|
|
|
|
longitude: 12
|
|
|
|
|
})
|
|
|
|
|
_validateMovement(val, withFakeLocation, name)
|
|
|
|
|
|
|
|
|
|
assert.ok(m.location.latitude <= 55, name + '.location.latitude is too small')
|
|
|
|
|
assert.ok(m.location.latitude >= 45, name + '.location.latitude is too large')
|
|
|
|
|
assert.ok(m.location.longitude >= 1, name + '.location.longitude is too small')
|
|
|
|
|
assert.ok(m.location.longitude <= 11, name + '.location.longitude is too small')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const validate = createValidate(cfg, {
|
|
|
|
|
line: validateLine,
|
|
|
|
|
journeyLeg: validateJourneyLeg,
|
|
|
|
|
movement: validateMovement
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const client = createClient(mobiliteitLuProfile, 'public-transport/hafas-client:test')
|
|
|
|
|
|
|
|
|
|
const ettelbruck = '140701016'
|
|
|
|
|
const mersch = '160904011'
|
2021-08-24 00:43:20 +02:00
|
|
|
|
const luxembourgGareCentrale = '200405060'
|
2020-11-25 16:23:42 +01:00
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
|
tap.test('journeys – Ettelbruck to Luxembourg', async (t) => {
|
2021-08-24 00:43:20 +02:00
|
|
|
|
const res = await client.journeys(ettelbruck, luxembourgGareCentrale, {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
results: 4,
|
|
|
|
|
departure: when,
|
|
|
|
|
stopovers: true
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
await testJourneysStationToStation({
|
|
|
|
|
test: t,
|
|
|
|
|
res,
|
|
|
|
|
validate,
|
|
|
|
|
fromId: ettelbruck,
|
2021-08-24 00:43:20 +02:00
|
|
|
|
toIds: [
|
|
|
|
|
luxembourgGareCentrale,
|
|
|
|
|
'300030001', // Luxembourg, Gare Centrale (Tram)
|
|
|
|
|
'300032002', // Luxembourg, Gare Rocade
|
|
|
|
|
],
|
2020-11-25 16:23:42 +01:00
|
|
|
|
})
|
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// todo: journeys, only one product
|
|
|
|
|
|
2021-12-29 18:53:50 +01:00
|
|
|
|
tap.test('journeys – fails with no product', async (t) => {
|
|
|
|
|
await journeysFailsWithNoProduct({
|
2020-11-25 16:23:42 +01:00
|
|
|
|
test: t,
|
|
|
|
|
fetchJourneys: client.journeys,
|
|
|
|
|
fromId: ettelbruck,
|
2021-08-24 00:43:20 +02:00
|
|
|
|
toId: luxembourgGareCentrale,
|
2020-11-25 16:23:42 +01:00
|
|
|
|
when,
|
2022-05-07 16:17:37 +02:00
|
|
|
|
products: mobiliteitLuProfile.products,
|
2020-11-25 16:23:42 +01:00
|
|
|
|
})
|
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
|
tap.test('Luxembourg to Ettelbruck, Rue des Romains 4', async (t) => {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
const rueDeRomain = {
|
|
|
|
|
type: 'location',
|
|
|
|
|
address: 'Ettelbruck, Rue des Romains 4',
|
|
|
|
|
latitude: 49.847469,
|
|
|
|
|
longitude: 6.097608
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-24 00:43:20 +02:00
|
|
|
|
const res = await client.journeys(luxembourgGareCentrale, rueDeRomain, {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
results: 3,
|
|
|
|
|
departure: when
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
await testJourneysStationToAddress({
|
|
|
|
|
test: t,
|
|
|
|
|
res,
|
|
|
|
|
validate,
|
2021-08-24 00:43:20 +02:00
|
|
|
|
fromId: luxembourgGareCentrale,
|
2020-11-25 16:23:42 +01:00
|
|
|
|
to: rueDeRomain
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
2021-08-24 00:43:20 +02:00
|
|
|
|
// Some journeys don't start or stop at the stop/POI that we queried journeys for.
|
2021-10-19 00:38:04 +02:00
|
|
|
|
tap.test('Luxembourg to Centre Hospitalier du Nord', async (t) => {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
const centreHospitalier = {
|
|
|
|
|
type: 'location',
|
2022-11-09 21:21:55 +01:00
|
|
|
|
id: '980054622',
|
2020-11-25 16:23:42 +01:00
|
|
|
|
poi: true,
|
2021-08-24 00:43:20 +02:00
|
|
|
|
name: 'Ettelbruck, Centre Hospitalier du Nord (CHDN)',
|
|
|
|
|
latitude: 49.853519,
|
|
|
|
|
longitude: 6.094587,
|
2020-11-25 16:23:42 +01:00
|
|
|
|
}
|
2021-08-24 00:43:20 +02:00
|
|
|
|
const res = await client.journeys(luxembourgGareCentrale, centreHospitalier, {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
results: 3,
|
|
|
|
|
departure: when
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
await testJourneysStationToPoi({
|
|
|
|
|
test: t,
|
|
|
|
|
res,
|
|
|
|
|
validate,
|
2021-08-24 00:43:20 +02:00
|
|
|
|
fromId: luxembourgGareCentrale,
|
2020-11-25 16:23:42 +01:00
|
|
|
|
to: centreHospitalier
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// todo: journeys: via works – with detour
|
|
|
|
|
// todo: without detour
|
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
|
tap.test('earlier/later journeys', async (t) => {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
await testEarlierLaterJourneys({
|
|
|
|
|
test: t,
|
|
|
|
|
fetchJourneys: client.journeys,
|
|
|
|
|
validate,
|
2021-08-24 00:43:20 +02:00
|
|
|
|
fromId: luxembourgGareCentrale,
|
2020-11-25 16:23:42 +01:00
|
|
|
|
toId: ettelbruck,
|
|
|
|
|
when,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
|
tap.test('trip', async (t) => {
|
2021-08-24 00:43:20 +02:00
|
|
|
|
const { journeys } = await client.journeys(luxembourgGareCentrale, ettelbruck, {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
results: 1, departure: when
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const p = journeys[0].legs.find(l => !l.walking)
|
|
|
|
|
t.ok(p.tripId, 'precondition failed')
|
|
|
|
|
t.ok(p.line.name, 'precondition failed')
|
|
|
|
|
|
2021-12-29 21:33:42 +01:00
|
|
|
|
const tripRes = await client.trip(p.tripId, {when})
|
2021-12-29 21:23:28 +01:00
|
|
|
|
|
|
|
|
|
validate(t, tripRes, 'tripResult', 'res')
|
2020-11-25 16:23:42 +01:00
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
|
tap.test('departures at Ettelbruck.', async (t) => {
|
2021-12-29 21:11:07 +01:00
|
|
|
|
const res = await client.departures(ettelbruck, {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
duration: 20, when
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
await testDepartures({
|
|
|
|
|
test: t,
|
2021-12-29 21:11:07 +01:00
|
|
|
|
res,
|
2020-11-25 16:23:42 +01:00
|
|
|
|
validate,
|
|
|
|
|
id: ettelbruck
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
|
tap.test('arrivals at Ettelbruck.', async (t) => {
|
2021-12-29 21:11:07 +01:00
|
|
|
|
const res = await client.arrivals(ettelbruck, {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
duration: 20, when
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
await testArrivals({
|
|
|
|
|
test: t,
|
2021-12-29 21:11:07 +01:00
|
|
|
|
res,
|
2020-11-25 16:23:42 +01:00
|
|
|
|
validate,
|
|
|
|
|
id: ettelbruck
|
|
|
|
|
})
|
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
|
tap.test('departures with station object', async (t) => {
|
2021-12-29 21:11:07 +01:00
|
|
|
|
const res = await client.departures({
|
2020-11-25 16:23:42 +01:00
|
|
|
|
type: 'station',
|
|
|
|
|
id: ettelbruck,
|
|
|
|
|
name: 'Ettelbruck',
|
|
|
|
|
location: {
|
|
|
|
|
type: 'location',
|
|
|
|
|
latitude: 49.847298,
|
|
|
|
|
longitude: 6.106157
|
|
|
|
|
}
|
|
|
|
|
}, {when})
|
|
|
|
|
|
2021-12-29 21:11:07 +01:00
|
|
|
|
validate(t, res, 'departuresResponse', 'res')
|
2020-11-25 16:23:42 +01:00
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// todo: nearby
|
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
|
tap.test('locations named Mersch', async (t) => {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
const locations = await client.locations('Mersch', {
|
|
|
|
|
results: 20
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
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((loc) => {
|
|
|
|
|
if (loc.station && loc.station.id === mersch) return true
|
|
|
|
|
return loc.id === mersch
|
|
|
|
|
}))
|
|
|
|
|
|
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
|
tap.test('stop Mersch', async (t) => {
|
2020-11-25 16:23:42 +01:00
|
|
|
|
const s = await client.stop(mersch)
|
|
|
|
|
|
|
|
|
|
validate(t, s, ['stop', 'station'], 'stop')
|
|
|
|
|
t.equal(s.id, mersch)
|
|
|
|
|
|
|
|
|
|
t.end()
|
|
|
|
|
})
|
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
|
tap.test('radar', async (t) => {
|
2021-12-29 21:24:07 +01:00
|
|
|
|
const res = await client.radar({
|
2020-11-25 16:23:42 +01:00
|
|
|
|
north: 49.9,
|
|
|
|
|
west: 6.05,
|
|
|
|
|
south: 49.8,
|
|
|
|
|
east: 6.15
|
|
|
|
|
}, {
|
|
|
|
|
duration: 5 * 60, when, results: 10
|
|
|
|
|
})
|
|
|
|
|
|
2021-12-29 21:24:07 +01:00
|
|
|
|
validate(t, res, 'radarResult', 'res')
|
2020-11-25 16:23:42 +01:00
|
|
|
|
t.end()
|
|
|
|
|
})
|