mobil.nrw: E2E/integration tests

This commit is contained in:
Jannis R 2021-01-10 20:44:33 +01:00 committed by Jannis Redmann
parent ad6cfd2288
commit 3407ad6b5b
2 changed files with 253 additions and 0 deletions

View file

@ -21,6 +21,7 @@ require('./vrn')
require('./rmv') require('./rmv')
require('./rsag') require('./rsag')
require('./db-busradar-nrw') require('./db-busradar-nrw')
require('./mobil-nrw')
require('./invg') require('./invg')
require('./pkp') require('./pkp')
require('./sncb') require('./sncb')

252
test/e2e/mobil-nrw.js Normal file
View file

@ -0,0 +1,252 @@
'use strict'
const {createWhen} = require('./lib/util')
const createClient = require('../..')
const mobilNrwProfile = require('../../p/mobil-nrw')
const products = require('../../p/mobil-nrw/products')
const createValidate = require('./lib/validate-fptf-with')
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 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(mobilNrwProfile.timezone, mobilNrwProfile.locale)
const cfg = {
when,
stationCoordsOptional: false,
products,
minLatitude: 48.089,
minLongitude: 1.659,
maxLatitude: 53.531,
maxLongitude: 14.689,
}
const validate = createValidate(cfg)
const client = createClient(mobilNrwProfile, 'public-transport/hafas-client:test')
const soest = '8000076'
const aachenHbf = '8000001'
const dortmundStadtgarten = '655672'
test('journeys  Soest to Aachen Hbf', async (t) => {
const res = await client.journeys(soest, aachenHbf, {
results: 4,
departure: when,
stopovers: true
})
await testJourneysStationToStation({
test: t,
res,
validate,
fromId: soest,
toId: aachenHbf
})
t.end()
})
// todo: journeys, only one product
test('Aachen Hbf to Schillingstr. 3, Dortmund', async (t) => {
const schillingstr3 = {
type: 'location',
id: '980288407',
address: 'Dortmund - Mitte, Schillingstraße 3',
latitude: 51.504891,
longitude: 7.457802,
}
const res = await client.journeys(aachenHbf, schillingstr3, {
results: 3,
departure: when
})
await testJourneysStationToAddress({
test: t,
res,
validate,
fromId: aachenHbf,
to: schillingstr3
})
t.end()
})
test('Aachen Hbf to Sportanlage Schulzentrum, Dortmund', async (t) => {
const sportanlage = {
type: 'location',
id: '991557725',
poi: true,
name: 'Dortmund, Sportanlage Schulzentrum (Grünanlagen)',
latitude: 51.491201,
longitude: 7.562859,
}
const res = await client.journeys(aachenHbf, sportanlage, {
results: 3,
departure: when
})
await testJourneysStationToPoi({
test: t,
res,
validate,
fromId: aachenHbf,
to: sportanlage
})
t.end()
})
// todo: walkingSpeed "2107 MELRIDGE PL" -> 000002148
// todo: via works with detour
// todo: without detour
test('earlier/later journeys', async (t) => {
await testEarlierLaterJourneys({
test: t,
fetchJourneys: client.journeys,
validate,
fromId: soest,
toId: aachenHbf,
when
})
t.end()
})
test('refreshJourney', async (t) => {
await testRefreshJourney({
test: t,
fetchJourneys: client.journeys,
refreshJourney: client.refreshJourney,
validate,
fromId: soest,
toId: aachenHbf,
when
})
t.end()
})
test('trip details', async (t) => {
const res = await client.journeys(soest, aachenHbf, {
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()
})
test('departures at Soest', async (t) => {
const departures = await client.departures(soest, {
duration: 10, when,
})
await testDepartures({
test: t,
departures,
validate,
id: soest
})
t.end()
})
test('departures with station object', async (t) => {
const deps = await client.departures({
type: 'station',
id: soest,
name: 'Magdeburg Hbf',
location: {
type: 'location',
latitude: 1.23,
longitude: 2.34
}
}, {when})
validate(t, deps, 'departures', 'departures')
t.end()
})
test('arrivals at Soest', async (t) => {
const arrivals = await client.arrivals(soest, {
duration: 10, when,
})
await testArrivals({
test: t,
arrivals,
validate,
id: soest
})
t.end()
})
// todo: nearby
test('locations named "stadtgarten dortmund"', async (t) => {
const locations = await client.locations('stadtgarten dortmund', {
results: 10,
})
validate(t, locations, 'locations', 'locations')
t.ok(locations.length <= 10)
t.ok(locations.find(s => s.type === 'stop' || s.type === 'station'))
t.ok(locations.find(s => s.poi)) // POIs
t.ok(locations.some((l) => {
return l.station && l.station.id === dortmundStadtgarten || l.id === dortmundStadtgarten
}))
t.end()
})
test('station Aachen Hbf', async (t) => {
const s = await client.stop(aachenHbf)
validate(t, s, ['stop', 'station'], 'station')
t.equal(s.id, aachenHbf)
t.end()
})
test('radar', async (t) => {
const vehicles = await client.radar({
north: 51.4358,
west: 6.7625,
south: 51.4214,
east: 6.7900,
}, {
duration: 5 * 60, when, results: 10,
})
validate(t, vehicles, 'movements', 'vehicles')
t.end()
})
test('reachableFrom', async (t) => {
await testReachableFrom({
test: t,
reachableFrom: client.reachableFrom,
address: {
type: 'location',
id: '980301639',
latitude: 51.387609,
longitude: 6.684019,
address: 'Duisburg, Am Mühlenberg 1',
},
when,
maxDuration: 15,
validate
})
t.end()
})