db-vendo-client/test/e2e/vbb.js

436 lines
9.8 KiB
JavaScript
Raw Normal View History

'use strict'
2021-05-20 16:42:43 +01:00
const tap = require('tap')
const {createWhen} = require('./lib/util')
2019-08-30 18:31:39 +02:00
const createClient = require('../..')
const vbbProfile = require('../../p/vbb')
const products = require('../../p/vbb/products')
const createVbbValidators = require('./lib/vbb-bvg-validators')
2018-04-18 23:56:11 +02:00
const createValidate = require('./lib/validate-fptf-with')
const testJourneysStationToStation = require('./lib/journeys-station-to-station')
const testJourneysStationToAddress = require('./lib/journeys-station-to-address')
const testJourneysStationToPoi = require('./lib/journeys-station-to-poi')
const testJourneysWalkingSpeed = require('./lib/journeys-walking-speed')
const testEarlierLaterJourneys = require('./lib/earlier-later-journeys')
const testRefreshJourney = require('./lib/refresh-journey')
const journeysFailsWithNoProduct = require('./lib/journeys-fails-with-no-product')
2018-04-24 16:58:17 +02:00
const testDepartures = require('./lib/departures')
const testDeparturesInDirection = require('./lib/departures-in-direction')
const testArrivals = require('./lib/arrivals')
2018-05-13 00:34:26 +02:00
const testJourneysWithDetour = require('./lib/journeys-with-detour')
const testReachableFrom = require('./lib/reachable-from')
const T_MOCK = 1657618200 * 1000 // 2022-07-12T11:30+02:00
const when = createWhen(vbbProfile.timezone, vbbProfile.locale, T_MOCK)
const {
cfg,
validateStation,
validateJourneyLeg,
validateDeparture,
validateMovement
} = createVbbValidators({
when,
})
2018-04-18 23:56:11 +02:00
const validate = createValidate(cfg, {
station: validateStation,
journeyLeg: validateJourneyLeg,
departure: validateDeparture,
movement: validateMovement
})
2018-07-19 21:55:54 +02:00
const client = createClient(vbbProfile, 'public-transport/hafas-client:test')
const amrumerStr = '900009101'
const spichernstr = '900042101'
const bismarckstr = '900024201'
const westhafen = '900001201'
const wedding = '900009104'
const württembergallee = '900026153'
2017-11-20 01:05:48 +01:00
2022-04-28 22:11:34 +02:00
tap.test('journeys Spichernstr. to Bismarckstr.', async (t) => {
const res = await client.journeys({
type: 'stop',
id: spichernstr,
name: 'U Spichernstr.'
}, bismarckstr, {
results: 4,
2018-05-31 13:42:54 +02:00
departure: when,
stopovers: true
})
2017-11-14 02:59:17 +01:00
2018-11-21 19:07:37 +01:00
await testJourneysStationToStation({
test: t,
res,
validate,
fromId: spichernstr,
toId: bismarckstr
})
// todo: find a journey where there ticket info is always available
2017-11-14 02:59:17 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2022-04-28 22:11:34 +02:00
tap.test('journeys only subway', async (t) => {
const res = await client.journeys(spichernstr, bismarckstr, {
2018-05-31 13:42:54 +02:00
results: 20,
departure: when,
products: {
suburban: false,
subway: true,
tram: false,
bus: false,
ferry: false,
express: false,
regional: false
}
})
2017-11-14 02:59:17 +01:00
validate(t, res, 'journeysResult', 'res')
t.ok(res.journeys.length > 1)
for (let i = 0; i < res.journeys.length; i++) {
const journey = res.journeys[i]
2018-04-18 23:56:11 +02:00
for (let j = 0; j < journey.legs.length; j++) {
const leg = journey.legs[j]
2017-11-14 02:59:17 +01:00
const name = `res.journeys[${i}].legs[${i}].line`
if (leg.line) {
2018-04-18 23:56:11 +02:00
t.equal(leg.line.mode, 'train', name + '.mode is invalid')
t.equal(leg.line.product, 'subway', name + '.product is invalid')
}
2018-04-18 23:56:11 +02:00
t.ok(journey.legs.some(l => l.line), name + '.legs has no subway leg')
}
2017-11-14 02:59:17 +01:00
}
2018-04-18 23:56:11 +02:00
2017-11-14 02:59:17 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2022-04-28 22:11:34 +02:00
// todo: journeys with arrival time
2021-12-29 18:53:50 +01:00
tap.test('journeys fails with no product', async (t) => {
await journeysFailsWithNoProduct({
test: t,
fetchJourneys: client.journeys,
fromId: spichernstr,
toId: bismarckstr,
2018-05-24 12:13:24 +02:00
when,
products
2018-05-24 12:13:24 +02:00
})
t.end()
2018-04-18 23:56:11 +02:00
})
2018-05-24 12:13:24 +02:00
2021-05-20 16:42:43 +01:00
tap.test('journeys: walkingSpeed', async (t) => {
const havelchaussee = {
type: 'location',
address: 'Havelchaussee',
latitude: 52.443576,
longitude: 13.198973
}
const wannsee = '900053301'
await testJourneysWalkingSpeed({
test: t,
journeys: client.journeys,
validate,
from: havelchaussee,
to: wannsee,
when,
products: {bus: false},
minTimeDifference: 5 * 60 * 1000
})
})
2021-05-20 16:42:43 +01:00
tap.test('earlier/later journeys', async (t) => {
2018-11-21 19:07:37 +01:00
await testEarlierLaterJourneys({
test: t,
fetchJourneys: client.journeys,
validate,
fromId: spichernstr,
toId: bismarckstr,
when
})
2018-03-04 19:54:21 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2018-03-04 19:54:21 +01:00
2021-05-20 16:42:43 +01:00
tap.test('refreshJourney', async (t) => {
2018-11-21 19:07:37 +01:00
await testRefreshJourney({
test: t,
fetchJourneys: client.journeys,
refreshJourney: client.refreshJourney,
validate,
fromId: spichernstr,
toId: bismarckstr,
when
2018-03-04 19:54:21 +01:00
})
t.end()
2018-11-21 19:07:37 +01:00
})
2018-03-04 19:54:21 +01:00
2021-05-20 16:42:43 +01:00
tap.test('trip details', async (t) => {
const res = await client.journeys(spichernstr, amrumerStr, {
2018-05-28 20:35:01 +02:00
results: 1, departure: when
})
const p = res.journeys[0].legs.find(l => !l.walking)
t.ok(p.tripId, 'precondition failed')
2017-11-14 02:59:17 +01:00
t.ok(p.line.name, 'precondition failed')
const tripRes = await client.trip(p.tripId, p.line.name, {when})
validate(t, tripRes, 'tripResult', 'res')
2017-11-14 02:59:17 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
// This currently fails because some trips' departure/arrival is out of the range
// around `when`, as expected by `assertValidWhen`, as called by `validate`.
// todo: allow turning this off?
tap.skip('trips', async (t) => {
const {trips: r1} = await client.tripsByName('S1')
t.ok(Array.isArray(r1))
t.ok(r1.length > 0)
t.ok(r1.every(t => t.line.name.trim() === 'S1'))
for (let i = 0; i < r1.length; i++) {
validate(t, r1[i], 'trip', `r1[${i}]`)
}
const {trips: r2} = await client.tripsByName('S1', {
onlyCurrentlyRunning: false,
})
t.ok(Array.isArray(r2))
t.ok(r2.length > r1.length)
t.ok(r2.every(t => t.line.name.trim() === 'S1'))
for (let i = 0; i < r2.length; i++) {
validate(t, r2[i], 'trip', `r2[${i}]`)
}
const {trips: r3} = await client.tripsByName('*', {
onlyCurrentlyRunning: false,
})
t.ok(Array.isArray(r3))
t.ok(r3.length > r2.length)
for (let i = 0; i < r3.length; i++) {
validate(t, r3[i], 'trip', `r3[${i}]`)
}
t.end()
})
2022-04-28 22:11:34 +02:00
tap.test('journeys station to address', async (t) => {
const torfstr = {
type: 'location',
address: '13353 Berlin-Wedding, Torfstr. 17',
latitude: 52.541797,
longitude: 13.350042
}
const res = await client.journeys(spichernstr, torfstr, {
2018-05-31 13:42:54 +02:00
results: 3,
departure: when
})
2017-11-14 02:59:17 +01:00
2018-11-21 19:07:37 +01:00
await testJourneysStationToAddress({
test: t,
res,
validate,
fromId: spichernstr,
to: torfstr
})
2017-11-14 02:59:17 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2022-04-28 22:11:34 +02:00
tap.test('journeys station to POI', async (t) => {
const atze = {
type: 'location',
id: '900980720',
2019-02-07 17:47:50 +01:00
poi: true,
name: 'Berlin, Atze Musiktheater für Kinder',
latitude: 52.543333,
longitude: 13.351686
}
const res = await client.journeys(spichernstr, atze, {
2018-05-31 13:42:54 +02:00
results: 3,
departure: when
})
2017-11-14 02:59:17 +01:00
2018-11-21 19:07:37 +01:00
await testJourneysStationToPoi({
test: t,
res,
validate,
fromId: spichernstr,
to: atze
})
2017-11-14 02:59:17 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('journeys: via works with detour', async (t) => {
2018-03-16 14:30:49 +01:00
// Going from Westhafen to Wedding via Württembergalle without detour
2018-03-16 14:34:37 +01:00
// is currently impossible. We check if the routing engine computes a detour.
const res = await client.journeys(westhafen, wedding, {
via: württembergallee,
results: 1,
2018-05-28 20:35:01 +02:00
departure: when,
stopovers: true
})
2018-11-21 19:07:37 +01:00
await testJourneysWithDetour({
2018-05-13 00:34:26 +02:00
test: t,
res,
2018-05-13 00:34:26 +02:00
validate,
detourIds: [württembergallee]
})
t.end()
2018-11-21 19:07:37 +01:00
})
// todo: without detour test
2021-05-20 16:42:43 +01:00
tap.test('departures', async (t) => {
const res = await client.departures(spichernstr, {
duration: 5, when,
2018-04-24 16:58:17 +02:00
})
2018-04-18 23:56:11 +02:00
2018-11-21 19:07:37 +01:00
await testDepartures({
2018-04-24 16:58:17 +02:00
test: t,
res,
2018-04-24 16:58:17 +02:00
validate,
id: spichernstr
})
2017-11-14 02:59:17 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('departures with station object', async (t) => {
const res = await client.departures({
type: 'station',
id: spichernstr,
name: 'U Spichernstr',
location: {
type: 'location',
latitude: 1.23,
longitude: 2.34
}
}, {when})
validate(t, res, 'departuresResponse', 'res')
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('departures at Spichernstr. in direction of Westhafen', async (t) => {
2018-11-21 19:07:37 +01:00
await testDeparturesInDirection({
test: t,
fetchDepartures: client.departures,
fetchTrip: client.trip,
id: spichernstr,
directionIds: [westhafen],
when,
validate
})
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('departures at 7-digit station', async (t) => {
const eisenach = '8010097' // see derhuerst/vbb-hafas#22
2018-11-21 19:07:37 +01:00
await client.departures(eisenach, {when})
2017-11-14 02:59:17 +01:00
t.pass('did not fail')
t.end()
2018-11-21 19:07:37 +01:00
})
2017-11-14 02:59:17 +01:00
2021-05-20 16:42:43 +01:00
tap.test('arrivals', async (t) => {
const res = await client.arrivals(spichernstr, {
duration: 5, when,
})
2018-11-21 19:07:37 +01:00
await testArrivals({
test: t,
res,
validate,
id: spichernstr
})
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('nearby', async (t) => {
const berlinerStr = '900044201'
const landhausstr = '900043252'
2017-11-14 02:59:17 +01:00
// Berliner Str./Bundesallee
2018-11-21 19:07:37 +01:00
const nearby = await client.nearby({
2018-01-05 14:53:03 +01:00
type: 'location',
latitude: 52.4873452,
longitude: 13.3310411
}, {
// Even though HAFAS reports Landhausstr. to be 179m, we have to pass way more here. 🙄
distance: 600,
})
2018-04-18 23:56:11 +02:00
validate(t, nearby, 'locations', 'nearby')
2018-04-18 23:56:11 +02:00
t.equal(nearby[0].id, berlinerStr)
t.equal(nearby[0].name, 'U Berliner Str. (Berlin)')
2017-11-14 02:59:17 +01:00
t.ok(nearby[0].distance > 0)
t.ok(nearby[0].distance < 100)
const res = nearby.find(s => s.id === landhausstr)
t.ok(res, `Landhausstr. ${landhausstr} is not among the nearby stops`)
t.equal(nearby[1].name, 'Landhausstr. (Berlin)')
2017-11-14 02:59:17 +01:00
t.ok(nearby[1].distance > 100)
t.ok(nearby[1].distance < 200)
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('locations', async (t) => {
2018-11-21 19:07:37 +01:00
const locations = await client.locations('Alexanderplatz', {results: 20})
2017-11-14 02:59:17 +01:00
2018-04-18 23:56:11 +02:00
validate(t, locations, 'locations', 'locations')
2018-02-15 17:31:43 +01:00
t.ok(locations.length <= 20)
2018-04-18 23:56:11 +02:00
2018-07-11 13:25:22 +02:00
t.ok(locations.find(s => s.type === 'stop' || s.type === 'station'))
2019-02-07 17:47:50 +01:00
t.ok(locations.find(s => s.poi)) // POIs
2017-12-11 19:53:26 +01:00
t.ok(locations.find(s => !s.name && s.address)) // addresses
2017-11-14 02:59:17 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('stop', async (t) => {
const s = await client.stop(spichernstr)
2018-01-26 17:08:07 +01:00
validate(t, s, ['stop', 'station'], 'stop')
2018-04-18 23:56:11 +02:00
t.equal(s.id, spichernstr)
2018-01-26 17:08:07 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2018-01-26 17:08:07 +01:00
2021-05-20 16:42:43 +01:00
tap.test('radar', async (t) => {
const res = await client.radar({
north: 52.52411,
west: 13.41002,
south: 52.51942,
east: 13.41709
}, {
2017-11-14 02:59:17 +01:00
duration: 5 * 60, when
})
validate(t, res, 'radarResult', 'res')
2017-11-14 02:59:17 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('reachableFrom', async (t) => {
const torfstr17 = {
type: 'location',
address: '13353 Berlin-Wedding, Torfstr. 17',
latitude: 52.541797,
longitude: 13.350042
}
2018-11-21 19:07:37 +01:00
await testReachableFrom({
test: t,
reachableFrom: client.reachableFrom,
address: torfstr17,
when,
maxDuration: 15,
validate
})
t.end()
2018-11-21 19:07:37 +01:00
})