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

278 lines
6.2 KiB
JavaScript
Raw Normal View History

'use strict'
const {createWhen} = require('./lib/util')
2019-08-30 18:31:39 +02:00
const createClient = require('../..')
const sMunichProfile = require('../../p/sbahn-muenchen')
const products = require('../../p/sbahn-muenchen/products')
const {movement: _validateMovement} = require('./lib/validators')
const createValidate = require('./lib/validate-fptf-with')
2020-05-21 19:04:22 +02:00
const {test} = require('./lib/util')
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 testRefreshJourney = require('./lib/refresh-journey')
const journeysFailsWithNoProduct = require('./lib/journeys-fails-with-no-product')
const testDepartures = require('./lib/departures')
const testArrivals = require('./lib/arrivals')
const testJourneysWithDetour = require('./lib/journeys-with-detour')
const testReachableFrom = require('./lib/reachable-from')
const when = createWhen(sMunichProfile.timezone, sMunichProfile.locale)
const cfg = {
when,
stationCoordsOptional: false,
2019-02-15 14:53:01 +01:00
products,
minLatitude: 48,
maxLatitude: 48.3,
minLongitude: 11.3,
maxLongitude: 11.8
}
const validateMovement = (val, m, name = 'movement') => {
const dummyStopA = {type: 'stop', id: '123'}
const dummyStopB = {type: 'stop', id: '321'}
const withFakeFrame = Object.assign({}, m)
if (!m.frames.length) {
withFakeFrame.frames = [
{t: 5, origin: dummyStopA, destination: dummyStopB}
]
}
_validateMovement(val, withFakeFrame, name)
}
const validate = createValidate(cfg, {
movement: validateMovement
})
const client = createClient(sMunichProfile, 'public-transport/hafas-client:test')
const mittersendling = '8004154'
const karlTheodorStr = '621790' // Karl-Theodor-Straße
const lehel = '000624826'
const poetschnerstr = {
type: 'location',
address: 'Pötschnerstraße 3, Neuhausen',
latitude: 48.152499,
longitude: 11.531695
}
2018-11-21 19:07:37 +01:00
test('journeys  Mittersendling to Karl-Theodor-Straße', async (t) => {
const res = await client.journeys(mittersendling, karlTheodorStr, {
results: 4,
departure: when,
stopovers: true
})
2018-11-21 19:07:37 +01:00
await testJourneysStationToStation({
test: t,
res,
validate,
fromId: mittersendling,
toId: karlTheodorStr
})
t.end()
2018-11-21 19:07:37 +01:00
})
// todo: journeys, only one product
test('journeys  fails with no product', (t) => {
journeysFailsWithNoProduct({
test: t,
fetchJourneys: client.journeys,
fromId: mittersendling,
toId: karlTheodorStr,
when,
products
})
t.end()
})
2018-11-21 19:07:37 +01:00
test('Karl-Theodor-Straße to Pötschnerstraße 3, Neuhausen', async (t) => {
const res = await client.journeys(karlTheodorStr, poetschnerstr, {
results: 3,
departure: when
})
2018-11-21 19:07:37 +01:00
await testJourneysStationToAddress({
test: t,
res,
validate,
fromId: karlTheodorStr,
to: poetschnerstr
})
t.end()
2018-11-21 19:07:37 +01:00
})
2018-11-21 19:07:37 +01:00
test('Karl-Theodor-Straße to Hofbräuhaus', async (t) => {
const hofbraeuhaus = {
type: 'location',
id: '970006201',
2019-02-07 17:47:50 +01:00
poi: true,
name: 'München, Hofbräuhaus',
latitude: 48.137739,
longitude: 11.579823
}
const res = await client.journeys(karlTheodorStr, hofbraeuhaus, {
results: 3,
departure: when
})
2018-11-21 19:07:37 +01:00
await testJourneysStationToPoi({
test: t,
res,
validate,
fromId: karlTheodorStr,
to: hofbraeuhaus
})
t.end()
2018-11-21 19:07:37 +01:00
})
// todo: walkingSpeed "München - Freimann, Gyßlingstraße 78" -> lehel
// todo: via works with detour
// todo: without detour
2018-11-21 19:07:37 +01:00
test('earlier/later journeys', async (t) => {
await testEarlierLaterJourneys({
test: t,
fetchJourneys: client.journeys,
validate,
fromId: mittersendling,
toId: karlTheodorStr,
when
})
t.end()
2018-11-21 19:07:37 +01:00
})
2018-11-21 19:07:37 +01:00
test('refreshJourney', async (t) => {
await testRefreshJourney({
test: t,
fetchJourneys: client.journeys,
refreshJourney: client.refreshJourney,
validate,
fromId: mittersendling,
toId: karlTheodorStr,
when
})
t.end()
2018-11-21 19:07:37 +01:00
})
2018-11-21 19:07:37 +01:00
test('trip details', async (t) => {
const res = await client.journeys(mittersendling, karlTheodorStr, {
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()
2018-11-21 19:07:37 +01:00
})
test('departures at Dietlindenstraße', async (t) => {
const dietlindenstr = '624391'
const departures = await client.departures(dietlindenstr, {
duration: 10, when,
stopovers: true
})
2018-11-21 19:07:37 +01:00
await testDepartures({
test: t,
departures,
validate,
id: dietlindenstr
})
t.end()
2018-11-21 19:07:37 +01:00
})
2018-11-21 19:07:37 +01:00
test('departures with station object', async (t) => {
const deps = await client.departures({
type: 'station',
id: mittersendling,
name: 'Mittersendling',
location: {
type: 'location',
latitude: 48.107418,
longitude: 11.536306
}
}, {when})
validate(t, deps, 'departures', 'departures')
t.end()
2018-11-21 19:07:37 +01:00
})
2018-11-21 19:07:37 +01:00
test('arrivals at Karl-Theodor-Straße', async (t) => {
const arrivals = await client.arrivals(karlTheodorStr, {
duration: 10, when,
stopovers: true
})
2018-11-21 19:07:37 +01:00
await testArrivals({
test: t,
arrivals,
validate,
id: karlTheodorStr
})
t.end()
2018-11-21 19:07:37 +01:00
})
// todo: nearby
2018-11-21 19:07:37 +01:00
test('locations named "Nationaltheater"', async (t) => {
const nationaltheater = '624639'
2018-11-21 19:07:37 +01:00
const locations = await client.locations('Nationaltheater', {
results: 10
})
validate(t, locations, 'locations', 'locations')
t.ok(locations.length <= 10)
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
t.ok(locations.some((l) => {
return l.station && l.station.id === nationaltheater || l.id === nationaltheater
}))
t.end()
2018-11-21 19:07:37 +01:00
})
2018-11-21 19:07:37 +01:00
test('station Karl-Theodor-Straße', async (t) => {
const s = await client.stop(karlTheodorStr)
validate(t, s, ['stop', 'station'], 'station')
t.equal(s.id, karlTheodorStr)
t.end()
2018-11-21 19:07:37 +01:00
})
2018-11-21 19:07:37 +01:00
test('radar', async (t) => {
const vehicles = await client.radar({
north: 48.145121,
west: 11.543736,
south: 48.138339,
east: 11.553776
}, {
duration: 5 * 60, when, results: 10
})
validate(t, vehicles, 'movements', 'vehicles')
t.end()
2018-11-21 19:07:37 +01:00
})
2018-11-21 19:07:37 +01:00
test('reachableFrom', async (t) => {
await testReachableFrom({
test: t,
reachableFrom: client.reachableFrom,
address: poetschnerstr,
when,
maxDuration: 15,
validate
})
t.end()
2018-11-21 19:07:37 +01:00
})