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

113 lines
2.5 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use strict'
const tap = require('tap')
const {createWhen} = require('./lib/util')
const createClient = require('../..')
const sncbProfile = require('../../p/sncb')
const products = require('../../p/sncb/products')
const createValidate = require('./lib/validate-fptf-with')
const testJourneysStationToStation = require('./lib/journeys-station-to-station')
const testArrivals = require('./lib/arrivals')
const testReachableFrom = require('./lib/reachable-from')
const T_MOCK = 1641897000 * 1000 // 2022-01-11T11:30:00+01
const when = createWhen(sncbProfile.timezone, sncbProfile.locale, T_MOCK)
const cfg = {
when,
stationCoordsOptional: false,
products,
minLatitude: 46.513,
maxLatitude: 54.521,
minLongitude: -1.423,
maxLongitude: 15.26
}
const validate = createValidate(cfg)
const client = createClient(sncbProfile, 'public-transport/hafas-client:test')
const gentStPieters = '8892007'
const bruxellesMidi = '8814001'
const gentPaddenhoek = {
type: 'location',
address: 'Gent, Paddenhoek',
latitude: 51.051691, longitude: 3.724914,
}
tap.test('journeys  Gent Sant Pieters to Bruxelles Midi', async (t) => {
const res = await client.journeys(gentStPieters, bruxellesMidi, {
results: 4,
departure: when,
stopovers: true
})
await testJourneysStationToStation({
test: t,
res,
validate,
fromId: gentStPieters,
toId: bruxellesMidi
})
t.end()
})
// todo: via works with detour
// todo: without detour
tap.test('trip details', async (t) => {
const res = await client.journeys(gentStPieters, bruxellesMidi, {
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 trip = await client.trip(p.tripId, p.line.name, {when})
validate(t, trip, 'trip', 'trip')
t.end()
})
tap.test('arrivals at Bruxelles Midi', async (t) => {
const res = await client.arrivals(bruxellesMidi, {
duration: 10, when
})
await testArrivals({
test: t,
res,
validate,
id: bruxellesMidi,
})
t.end()
})
// todo: nearby
tap.test('radar', async (t) => {
const vehicles = await client.radar({
north: 51.065,
west: 3.688,
south: 51.04,
east: 3.748
}, {
duration: 5 * 60, when, results: 10
})
validate(t, vehicles, 'movements', 'vehicles')
t.end()
})
tap.skip('reachableFrom', async (t) => {
await testReachableFrom({
test: t,
reachableFrom: client.reachableFrom,
address: gentPaddenhoek,
when,
maxDuration: 15,
validate
})
t.end()
})