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

485 lines
12 KiB
JavaScript
Raw Normal View History

'use strict'
2021-05-20 16:42:43 +01:00
const tap = require('tap')
const isRoughlyEqual = require('is-roughly-equal')
2018-10-08 20:16:20 +02:00
const maxBy = require('lodash/maxBy')
const flatMap = require('lodash/flatMap')
const last = require('lodash/last')
2018-04-19 14:55:17 +02:00
const {createWhen} = require('./lib/util')
2019-08-30 18:31:39 +02:00
const createClient = require('../..')
const dbProfile = require('../../p/db')
const products = require('../../p/db/products')
const {
station: createValidateStation,
trip: createValidateTrip
2018-04-19 14:55:17 +02:00
} = require('./lib/validators')
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 testEarlierLaterJourneys = require('./lib/earlier-later-journeys')
const testLegCycleAlternatives = require('./lib/leg-cycle-alternatives')
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 testServerInfo = require('./lib/server-info')
2018-04-19 14:55:17 +02:00
const isObj = o => o !== null && 'object' === typeof o && !Array.isArray(o)
2018-10-08 20:16:20 +02:00
const minute = 60 * 1000
const T_MOCK = 1657618200 * 1000 // 2022-07-12T11:30+02:00
const when = createWhen(dbProfile.timezone, dbProfile.locale, T_MOCK)
2018-04-19 14:55:17 +02:00
const cfg = {
when,
stationCoordsOptional: false,
2019-02-15 14:53:01 +01:00
products,
minLatitude: 46.673100,
maxLatitude: 55.030671,
minLongitude: 6.896517,
maxLongitude: 16.180237
}
const validateStation = createValidateStation(cfg)
2017-11-12 21:23:29 +01:00
2018-04-19 14:55:17 +02:00
const validate = createValidate(cfg, {
station: validateStation
})
2017-11-12 21:23:29 +01:00
2017-12-11 16:06:37 +01:00
const assertValidPrice = (t, p) => {
t.ok(p)
if (p.amount !== null) {
t.equal(typeof p.amount, 'number')
t.ok(p.amount > 0)
}
if (p.hint !== null) {
t.equal(typeof p.hint, 'string')
t.ok(p.hint)
}
}
2018-07-19 21:55:54 +02:00
const client = createClient(dbProfile, 'public-transport/hafas-client:test')
const berlinHbf = '8011160'
const münchenHbf = '8000261'
2018-04-19 14:55:17 +02:00
const jungfernheide = '8011167'
const blnSchwedterStr = '732652'
const westhafen = '8089116'
const wedding = '8089131'
2018-04-19 14:55:17 +02:00
const württembergallee = '731084'
const regensburgHbf = '8000309'
const blnOstbahnhof = '8010255'
const blnTiergarten = '8089091'
const blnJannowitzbrücke = '8089019'
2019-01-09 10:51:46 +01:00
const potsdamHbf = '8012666'
2018-10-08 20:16:20 +02:00
const berlinSüdkreuz = '8011113'
const kölnHbf = '8000207'
2021-05-20 16:42:43 +01:00
tap.test('journeys  Berlin Schwedter Str. to München Hbf', async (t) => {
const res = await client.journeys(blnSchwedterStr, münchenHbf, {
results: 4,
departure: when,
stopovers: true
})
2018-11-21 19:07:37 +01:00
await testJourneysStationToStation({
test: t,
res,
validate,
fromId: blnSchwedterStr,
toId: münchenHbf
})
// todo: find a journey where there pricing info is always available
for (let journey of res.journeys) {
2017-12-11 16:06:37 +01:00
if (journey.price) assertValidPrice(t, journey.price)
}
t.end()
2018-11-21 19:07:37 +01:00
})
2018-04-19 14:55:17 +02:00
// todo: journeys, only one product
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: blnSchwedterStr,
toId: münchenHbf,
when,
products
})
t.end()
})
2018-04-19 14:55:17 +02:00
2021-05-20 16:42:43 +01:00
tap.test('Berlin Schwedter Str. to Torfstraße 17', async (t) => {
const torfstr = {
type: 'location',
address: 'Torfstraße 17',
latitude: 52.5416823,
longitude: 13.3491223
}
const res = await client.journeys(blnSchwedterStr, torfstr, {
2018-05-31 13:42:54 +02:00
results: 3,
departure: when
})
2018-11-21 19:07:37 +01:00
await testJourneysStationToAddress({
test: t,
res,
validate,
fromId: blnSchwedterStr,
to: torfstr
})
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('Berlin Schwedter Str. to ATZE Musiktheater', async (t) => {
const atze = {
type: 'location',
id: '991598902',
2019-02-07 17:47:50 +01:00
poi: true,
2021-08-24 00:43:20 +02:00
name: 'Berlin, Atze Musiktheater für Kinder (Kultur und U',
latitude: 52.542417,
longitude: 13.350437
}
const res = await client.journeys(blnSchwedterStr, atze, {
2018-05-31 13:42:54 +02:00
results: 3,
departure: when
})
2018-11-21 19:07:37 +01:00
await testJourneysStationToPoi({
test: t,
res,
validate,
fromId: blnSchwedterStr,
to: atze
})
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: walkingSpeed "Berlin - Charlottenburg, Hallerstraße" -> jungfernheide
// todo: without detour
2021-05-20 16:42:43 +01:00
tap.test('earlier/later journeys, Jungfernheide -> München Hbf', async (t) => {
2018-11-21 19:07:37 +01:00
await testEarlierLaterJourneys({
test: t,
fetchJourneys: client.journeys,
validate,
fromId: jungfernheide,
toId: münchenHbf,
when
})
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.skip('journeys  leg cycle & alternatives', async (t) => {
2018-11-21 19:07:37 +01:00
await testLegCycleAlternatives({
test: t,
fetchJourneys: client.journeys,
fromId: blnTiergarten,
toId: blnJannowitzbrücke,
when,
})
t.end()
2018-11-21 19:07:37 +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: jungfernheide,
toId: münchenHbf,
when
})
t.end()
2018-11-21 19:07:37 +01:00
})
tap.skip('journeysFromTrip U Mehringdamm to U Naturkundemuseum, reroute to Spittelmarkt.', async (t) => {
2018-10-08 20:16:20 +02:00
const blnMehringdamm = '730939'
const blnStadtmitte = '732541'
const blnNaturkundemuseum = '732539'
const blnSpittelmarkt = '732543'
const isU6Leg = leg => (
leg.line && leg.line.name
&& leg.line.name.toUpperCase().replace(/\s+/g, '') === 'U6'
)
const sameStopOrStation = (stopA) => (stopB) => {
if (stopA.id && stopB.id && stopA.id === stopB.id) return true
const statA = stopA.stat && stopA.stat.id || NaN
const statB = stopB.stat && stopB.stat.id || NaN
return (statA === statB || stopA.id === statB || stopB.id === statA)
}
const departureOf = st => +new Date(st.departure || st.scheduledDeparture)
const arrivalOf = st => +new Date(st.arrival || st.scheduledArrival)
// `journeysFromTrip` only supports queries *right now*, so we can't use `when` as in all
// other tests. To make the test less brittle, we pick a connection that is served all night. 🙄
const when = new Date()
const validate = createValidate({...cfg, when})
const findTripBetween = async (stopAId, stopBId, products = {}) => {
const {journeys} = await client.journeys(stopAId, stopBId, {
departure: new Date(when - 10 * minute),
transfers: 0, products,
results: 8, stopovers: false, remarks: false,
})
for (const j of journeys) {
const l = j.legs.find(isU6Leg)
if (!l) continue
const t = await client.trip(l.tripId, l.line && l.line.name, {
stopovers: true, remarks: false
})
const pastStopovers = t.stopovers
2018-10-08 20:16:20 +02:00
.filter(st => departureOf(st) < Date.now()) // todo: <= ?
const hasStoppedAtA = pastStopovers
2018-10-08 20:16:20 +02:00
.find(sameStopOrStation({id: stopAId}))
const willStopAtB = t.stopovers
.filter(st => arrivalOf(st) > Date.now()) // todo: >= ?
.find(sameStopOrStation({id: stopBId}))
if (hasStoppedAtA && willStopAtB) {
const prevStopover = maxBy(pastStopovers, departureOf)
return {trip: t, prevStopover}
}
}
return {trip: null, prevStopover: null}
}
// Find a vehicle from U Mehringdamm to U Stadtmitte (to the north) that is currently
// between these two stations.
const {trip, prevStopover} = await findTripBetween(blnMehringdamm, blnStadtmitte, {
regionalExp: false, regional: false, suburban: false
})
t.ok(trip, 'precondition failed: trip not found')
t.ok(prevStopover, 'precondition failed: previous stopover missing')
// todo: "Error: Suche aus dem Zug: Vor Abfahrt des Zuges"
const newJourneys = await client.journeysFromTrip(trip.id, prevStopover, blnSpittelmarkt, {
results: 3, stopovers: true, remarks: false
})
// Validate with fake prices.
const withFakePrice = (j) => {
const clone = Object.assign({}, j)
clone.price = {amount: 123, currency: 'EUR'}
return clone
}
// todo: there is no such validator!
validate(t, newJourneys.map(withFakePrice), 'journeysFromTrip', 'newJourneys')
2018-10-08 20:16:20 +02:00
for (let i = 0; i < newJourneys.length; i++) {
const j = newJourneys[i]
const n = `newJourneys[${i}]`
const legOnTrip = j.legs.find(l => l.tripId === trip.id)
t.ok(legOnTrip, n + ': leg with trip ID not found')
t.equal(last(legOnTrip.stopovers).stop.id, blnStadtmitte)
}
})
2021-05-20 16:42:43 +01:00
tap.test('trip details', async (t) => {
const res = await client.journeys(berlinHbf, münchenHbf, {
2018-05-31 13:42:54 +02:00
results: 1, departure: when
2018-04-19 14:55:17 +02:00
})
const p = res.journeys[0].legs.find(l => !l.walking)
t.ok(p.tripId, 'precondition failed')
2018-04-19 14:55:17 +02:00
t.ok(p.line.name, 'precondition failed')
const trip = await client.trip(p.tripId, p.line.name, {when})
2018-04-19 14:55:17 +02:00
const validateTrip = createValidateTrip(cfg)
const validate = createValidate(cfg, {
trip: (validate, trip, name) => {
trip = Object.assign({}, trip)
if (!trip.direction) trip.direction = 'foo' // todo, see #49
validateTrip(validate, trip, name)
}
})
validate(t, trip, 'trip', 'trip')
2018-04-19 14:55:17 +02:00
t.end()
2018-11-21 19:07:37 +01:00
})
2018-04-19 14:55:17 +02:00
2021-05-20 16:42:43 +01:00
tap.test('departures at Berlin Schwedter Str.', async (t) => {
2018-11-21 19:07:37 +01:00
const departures = await client.departures(blnSchwedterStr, {
duration: 5, when,
})
2018-11-21 19:07:37 +01:00
await testDepartures({
2018-04-24 16:58:17 +02:00
test: t,
departures,
validate,
id: blnSchwedterStr
})
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) => {
2018-11-21 19:07:37 +01:00
const deps = await client.departures({
type: 'station',
2018-04-19 14:55:17 +02:00
id: jungfernheide,
name: 'Berlin Jungfernheide',
location: {
type: 'location',
latitude: 1.23,
longitude: 2.34
}
}, {when})
2018-04-19 14:55:17 +02:00
validate(t, deps, 'departures', 'departures')
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('departures at Berlin Hbf in direction of Berlin Ostbahnhof', async (t) => {
2018-11-21 19:07:37 +01:00
await testDeparturesInDirection({
test: t,
fetchDepartures: client.departures,
fetchTrip: client.trip,
id: berlinHbf,
directionIds: [blnOstbahnhof, '8089185', '732676'],
when,
validate
})
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('arrivals at Berlin Schwedter Str.', async (t) => {
2018-11-21 19:07:37 +01:00
const arrivals = await client.arrivals(blnSchwedterStr, {
duration: 5, when,
})
2018-11-21 19:07:37 +01:00
await testArrivals({
test: t,
arrivals,
validate,
id: blnSchwedterStr
})
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('nearby Berlin Jungfernheide', async (t) => {
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.530273,
longitude: 13.299433
}, {
results: 2, distance: 400
})
2018-04-19 14:55:17 +02:00
validate(t, nearby, 'locations', 'nearby')
t.equal(nearby.length, 2)
2018-04-19 14:55:17 +02:00
const s0 = nearby[0]
t.equal(s0.id, jungfernheide)
2018-04-19 14:55:17 +02:00
t.equal(s0.name, 'Berlin Jungfernheide')
t.ok(isRoughlyEqual(.0005, s0.location.latitude, 52.530408))
t.ok(isRoughlyEqual(.0005, s0.location.longitude, 13.299424))
2018-04-19 14:55:17 +02:00
t.ok(s0.distance >= 0)
t.ok(s0.distance <= 100)
2017-12-11 19:53:26 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('locations named Jungfernheide', async (t) => {
2018-11-21 19:07:37 +01:00
const locations = await client.locations('Jungfernheide', {
results: 10
})
2018-04-19 14:55:17 +02:00
validate(t, locations, 'locations', 'locations')
t.ok(locations.length <= 10)
2018-04-19 14:55:17 +02:00
t.ok(locations.some((l) => {
return l.station && l.station.id === jungfernheide || l.id === jungfernheide
2018-04-19 14:55:17 +02:00
}), 'Jungfernheide not found')
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('stop', async (t) => {
const s = await client.stop(regensburgHbf)
2018-01-26 17:08:07 +01:00
validate(t, s, ['stop', 'station'], 'stop')
2018-04-19 14:55:17 +02:00
t.equal(s.id, regensburgHbf)
2018-01-26 17:08:07 +01:00
t.end()
2018-11-21 19:07:37 +01:00
})
2021-05-20 16:42:43 +01:00
tap.test('line with additionalName', async (t) => {
2018-11-21 19:07:37 +01:00
const departures = await client.departures(potsdamHbf, {
when,
2019-01-09 10:51:46 +01:00
duration: 12 * 60, // 12 minutes
products: {bus: false, suburban: false, tram: false}
})
t.ok(departures.some(d => d.line && d.line.additionalName))
t.end()
2018-11-21 19:07:37 +01:00
})
2019-01-09 10:51:46 +01:00
2021-05-20 16:42:43 +01:00
tap.test('radar', async (t) => {
2019-07-20 12:47:32 +02:00
const vehicles = await client.radar({
north: 52.52411,
west: 13.41002,
south: 52.51942,
east: 13.41709
}, {
duration: 5 * 60, when
})
validate(t, vehicles, 'movements', 'vehicles')
t.end()
})
tap.test('reachableFrom', {timeout: 20 * 1000}, async (t) => {
const torfstr17 = {
type: 'location',
address: 'Torfstraße 17',
latitude: 52.5416823,
longitude: 13.3491223
}
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
})
2021-05-20 16:42:43 +01:00
tap.test('serverInfo works', async (t) => {
await testServerInfo({
test: t,
fetchServerInfo: client.serverInfo,
})
})