mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 23:29:35 +02:00
158 lines
3.6 KiB
JavaScript
158 lines
3.6 KiB
JavaScript
'use strict'
|
||
|
||
const assert = require('assert')
|
||
const tapePromise = require('tape-promise').default
|
||
const tape = require('tape')
|
||
|
||
const { createWhen } = require('./lib/util')
|
||
const createClient = require('../..')
|
||
const pkpProfile = require('../../p/pkp')
|
||
const products = require('../../p/pkp/products')
|
||
const {
|
||
line: createValidateLine,
|
||
journeyLeg: createValidateJourneyLeg,
|
||
movement: _validateMovement
|
||
} = require('./lib/validators')
|
||
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 when = createWhen(pkpProfile.timezone, pkpProfile.locale)
|
||
|
||
const cfg = {
|
||
when,
|
||
stationCoordsOptional: false,
|
||
products,
|
||
minLatitude: 40,
|
||
maxLatitude: 65,
|
||
minLongitude: 10,
|
||
maxLongitude: 30,
|
||
}
|
||
|
||
const _validateLine = createValidateLine(cfg)
|
||
const validateLine = (validate, l, name) => {
|
||
if (!l.direction) l = Object.assign({}, l, { direction: 'foo' })
|
||
_validateLine(validate, l, name)
|
||
}
|
||
|
||
const _validateJourneyLeg = createValidateJourneyLeg(cfg)
|
||
const validateJourneyLeg = (validate, l, name) => {
|
||
if (!l.direction) l = Object.assign({}, l, { direction: 'foo' })
|
||
_validateJourneyLeg(validate, l, name)
|
||
}
|
||
|
||
const validateMovement = (val, m, name) => {
|
||
if (!m.direction) m = Object.assign({}, m, { direction: 'foo' })
|
||
_validateMovement(val, m, name)
|
||
}
|
||
|
||
const validate = createValidate(cfg, {
|
||
line: validateLine,
|
||
journeyLeg: validateJourneyLeg,
|
||
movement: validateMovement
|
||
})
|
||
|
||
const test = tapePromise(tape)
|
||
const client = createClient(pkpProfile, 'public-transport/hafas-client:test')
|
||
|
||
const wrocławGł = '5100069'
|
||
const krakówGł = '5100028'
|
||
const dworcowa100 = {
|
||
type: 'location',
|
||
address: 'Bydgoszcz, Dworcowa 100',
|
||
latitude: 53.1336648,
|
||
longitude: 17.9908571
|
||
}
|
||
const filharmonia = {
|
||
type: 'location',
|
||
id: '980013218',
|
||
latitude: 54.351487,
|
||
longitude: 18.659548,
|
||
name: 'Gdańsk, Filharmonia',
|
||
poi: true
|
||
}
|
||
|
||
test('journeys – Wrocław Główny to Kraków Główny', async (t) => {
|
||
const res = await client.journeys(wrocławGł, krakówGł, {
|
||
results: 4,
|
||
departure: when,
|
||
stopovers: true
|
||
})
|
||
|
||
await testJourneysStationToStation({
|
||
test: t,
|
||
res,
|
||
validate,
|
||
fromId: wrocławGł,
|
||
toId: krakówGł
|
||
})
|
||
t.end()
|
||
})
|
||
|
||
// todo: via works – with detour
|
||
// todo: without detour
|
||
|
||
test('trip details', async (t) => {
|
||
const res = await client.journeys(wrocławGł, krakówGł, {
|
||
results: 1, departure: when
|
||
})
|
||
|
||
const p = res.journeys[0].legs[0]
|
||
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('arrivals at Kraków Główny', async (t) => {
|
||
const arrivals = await client.arrivals(krakówGł, {
|
||
duration: 10, when
|
||
})
|
||
await testArrivals({
|
||
test: t,
|
||
arrivals,
|
||
id: krakówGł,
|
||
validate
|
||
})
|
||
t.end()
|
||
})
|
||
|
||
test('nearby', async (t) => {
|
||
const nearby = await client.nearby(dworcowa100, { distance: 500 })
|
||
|
||
validate(t, nearby, 'locations', 'nearby')
|
||
|
||
const bydgoszczGł = '5100005'
|
||
t.ok(nearby.find(l => l.id === bydgoszczGł))
|
||
|
||
t.end()
|
||
})
|
||
|
||
test('radar', async (t) => {
|
||
const vehicles = await client.radar({
|
||
north: 48.74453,
|
||
west: 11.42733,
|
||
south: 48.73453,
|
||
east: 11.43733
|
||
}, {
|
||
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: dworcowa100,
|
||
when,
|
||
maxDuration: 20,
|
||
validate
|
||
})
|
||
t.end()
|
||
})
|