mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 23:29:35 +02:00
INSA tests: use new validators
This commit is contained in:
parent
a92afc3c28
commit
0ce5e9114f
1 changed files with 168 additions and 238 deletions
404
test/insa.js
404
test/insa.js
|
@ -3,94 +3,56 @@
|
||||||
const tapePromise = require('tape-promise').default
|
const tapePromise = require('tape-promise').default
|
||||||
const tape = require('tape')
|
const tape = require('tape')
|
||||||
const isRoughlyEqual = require('is-roughly-equal')
|
const isRoughlyEqual = require('is-roughly-equal')
|
||||||
const validateFptf = require('validate-fptf')
|
|
||||||
|
|
||||||
|
const {createWhen} = require('./lib/util')
|
||||||
const co = require('./lib/co')
|
const co = require('./lib/co')
|
||||||
const createClient = require('..')
|
const createClient = require('..')
|
||||||
const insaProfile = require('../p/insa')
|
const insaProfile = require('../p/insa')
|
||||||
const allProducts = require('../p/insa/products')
|
const products = require('../p/insa/products')
|
||||||
const {
|
const createValidate = require('./lib/validate-fptf-with')
|
||||||
assertValidStation: _assertValidStation,
|
|
||||||
assertValidPoi,
|
const isObj = o => o !== null && 'object' === typeof o && !Array.isArray(o)
|
||||||
assertValidAddress,
|
|
||||||
assertValidLocation,
|
|
||||||
assertValidLine,
|
|
||||||
assertValidStopover,
|
|
||||||
hour,
|
|
||||||
createWhen,
|
|
||||||
assertValidWhen
|
|
||||||
} = require('./lib/util.js')
|
|
||||||
|
|
||||||
const when = createWhen('Europe/Berlin', 'de-DE')
|
const when = createWhen('Europe/Berlin', 'de-DE')
|
||||||
|
|
||||||
// todo: DRY with other tests, move into lib
|
const cfg = {
|
||||||
const assertValidStation = (t, s, coordsOptional = false) => {
|
when,
|
||||||
_assertValidStation(t, s, coordsOptional)
|
stationCoordsOptional: false,
|
||||||
t.ok(s.products)
|
products
|
||||||
for (let product of allProducts) {
|
|
||||||
product = product.id
|
|
||||||
const msg = `station.products[${product}] must be a boolean`
|
|
||||||
t.equal(typeof s.products[product], 'boolean', msg)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const isMagdeburgHbf = s => {
|
const validate = createValidate(cfg, {})
|
||||||
return (
|
|
||||||
s.type === 'station' &&
|
|
||||||
(s.id === '8010224' || s.id === '008010224') &&
|
|
||||||
s.name === 'Magdeburg Hbf' &&
|
|
||||||
s.location &&
|
|
||||||
isRoughlyEqual(s.location.latitude, 52.130352, 0.001) &&
|
|
||||||
isRoughlyEqual(s.location.longitude, 11.626891, 0.001)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
const assertIsMagdeburgHbf = (t, s) => {
|
|
||||||
t.equal(s.type, 'station')
|
|
||||||
t.ok(s.id === '8010224' || s.id === '008010224', 'id should be 8010224')
|
|
||||||
t.equal(s.name, 'Magdeburg Hbf')
|
|
||||||
t.ok(s.location)
|
|
||||||
t.ok(isRoughlyEqual(s.location.latitude, 52.130352, 0.001))
|
|
||||||
t.ok(isRoughlyEqual(s.location.longitude, 11.626891, 0.001))
|
|
||||||
}
|
|
||||||
|
|
||||||
const test = tapePromise(tape)
|
const test = tapePromise(tape)
|
||||||
const client = createClient(insaProfile)
|
const client = createClient(insaProfile)
|
||||||
|
|
||||||
test('Magdeburg Hbf to Magdeburg-Buckau', co(function*(t) {
|
|
||||||
const magdeburgHbf = '8010224'
|
const magdeburgHbf = '8010224'
|
||||||
const magdeburgBuckau = '8013456'
|
const magdeburgBuckau = '8013456'
|
||||||
|
const hasselbachplatzSternstrasse = '000006545'
|
||||||
|
const stendal = '008010334'
|
||||||
|
const dessau = '008010077'
|
||||||
|
|
||||||
|
test('Magdeburg Hbf to Magdeburg-Buckau', co(function*(t) {
|
||||||
const journeys = yield client.journeys(magdeburgHbf, magdeburgBuckau, {
|
const journeys = yield client.journeys(magdeburgHbf, magdeburgBuckau, {
|
||||||
when,
|
when,
|
||||||
passedStations: true
|
passedStations: true
|
||||||
})
|
})
|
||||||
|
|
||||||
t.ok(Array.isArray(journeys))
|
validate(t, journeys, 'journeys', 'journeys')
|
||||||
t.ok(journeys.length > 0, 'no journeys')
|
|
||||||
for (let journey of journeys) {
|
|
||||||
t.ok(Array.isArray(journey.legs))
|
|
||||||
t.ok(journey.legs.length > 0, 'no legs')
|
|
||||||
const leg = journey.legs[0] // todo: all legs
|
|
||||||
|
|
||||||
assertValidStation(t, leg.origin)
|
for (let j of journeys) {
|
||||||
assertValidWhen(t, leg.departure, when)
|
const firstLeg = j.legs[0]
|
||||||
t.equal(typeof leg.departurePlatform, 'string')
|
const lastLeg = j.legs[j.legs.length - 1]
|
||||||
|
t.strictEqual(firstLeg.origin.id, magdeburgHbf)
|
||||||
assertValidStation(t, leg.destination)
|
t.strictEqual(lastLeg.destination.id, magdeburgBuckau)
|
||||||
assertValidWhen(t, leg.arrival, when)
|
|
||||||
t.equal(typeof leg.arrivalPlatform, 'string')
|
|
||||||
|
|
||||||
assertValidLine(t, leg.line)
|
|
||||||
|
|
||||||
t.ok(Array.isArray(leg.passed))
|
|
||||||
for (let stopover of leg.passed) assertValidStopover(t, stopover)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
t.end()
|
t.end()
|
||||||
}))
|
}))
|
||||||
|
|
||||||
|
// todo: journeys, only one product
|
||||||
|
// todo: journeys, fails with no product
|
||||||
|
|
||||||
test('Magdeburg Hbf to 39104 Magdeburg, Sternstr. 10', co(function*(t) {
|
test('Magdeburg Hbf to 39104 Magdeburg, Sternstr. 10', co(function*(t) {
|
||||||
const magdeburgHbf = '8010224'
|
|
||||||
const sternStr = {
|
const sternStr = {
|
||||||
type: 'location',
|
type: 'location',
|
||||||
latitude: 52.118414,
|
latitude: 52.118414,
|
||||||
|
@ -101,253 +63,221 @@ test('Magdeburg Hbf to 39104 Magdeburg, Sternstr. 10', co(function*(t) {
|
||||||
const journeys = yield client.journeys(magdeburgHbf, sternStr, {
|
const journeys = yield client.journeys(magdeburgHbf, sternStr, {
|
||||||
when
|
when
|
||||||
})
|
})
|
||||||
|
validate(t, journeys, 'journeys', 'journeys')
|
||||||
|
|
||||||
t.ok(Array.isArray(journeys))
|
for (let journey of journeys) {
|
||||||
t.ok(journeys.length >= 1, 'no journeys')
|
const i = journey.legs.length - 1
|
||||||
const journey = journeys[0]
|
const d = journey.legs[i].destination
|
||||||
const firstLeg = journey.legs[0]
|
t.equal(d.address, sternStr.address)
|
||||||
const lastLeg = journey.legs[journey.legs.length - 1]
|
t.ok(isRoughlyEqual(0.0001, d.latitude, sternStr.latitude))
|
||||||
|
t.ok(isRoughlyEqual(0.0001, d.longitude, sternStr.longitude))
|
||||||
assertValidStation(t, firstLeg.origin)
|
}
|
||||||
assertValidWhen(t, firstLeg.departure, when)
|
|
||||||
assertValidWhen(t, firstLeg.arrival, when)
|
|
||||||
assertValidWhen(t, lastLeg.departure, when)
|
|
||||||
assertValidWhen(t, lastLeg.arrival, when)
|
|
||||||
|
|
||||||
const d = lastLeg.destination
|
|
||||||
assertValidAddress(t, d)
|
|
||||||
t.equal(d.address, 'Magdeburg - Altenstadt, Sternstraße 10')
|
|
||||||
t.ok(isRoughlyEqual(0.0001, d.latitude, 52.118414))
|
|
||||||
t.ok(isRoughlyEqual(0.0001, d.longitude, 11.422332))
|
|
||||||
|
|
||||||
t.end()
|
t.end()
|
||||||
}))
|
}))
|
||||||
|
|
||||||
test('Kloster Unser Lieben Frauen to Magdeburg Hbf', co(function*(t) {
|
test('Kloster Unser Lieben Frauen to Magdeburg Hbf', co(function*(t) {
|
||||||
const kloster = {
|
const kloster = {
|
||||||
type: 'location',
|
type: 'location',
|
||||||
latitude: 52.127601,
|
id: '970012223',
|
||||||
longitude: 11.636437,
|
|
||||||
name: 'Magdeburg, Kloster Unser Lieben Frauen (Denkmal)',
|
name: 'Magdeburg, Kloster Unser Lieben Frauen (Denkmal)',
|
||||||
id: '970012223'
|
latitude: 52.127601,
|
||||||
|
longitude: 11.636437
|
||||||
}
|
}
|
||||||
const magdeburgHbf = '8010224'
|
|
||||||
const journeys = yield client.journeys(kloster, magdeburgHbf, {
|
const journeys = yield client.journeys(magdeburgHbf, kloster, {
|
||||||
when
|
when
|
||||||
})
|
})
|
||||||
|
validate(t, journeys, 'journeys', 'journeys')
|
||||||
|
|
||||||
t.ok(Array.isArray(journeys))
|
for (let journey of journeys) {
|
||||||
t.ok(journeys.length >= 1, 'no journeys')
|
const i = journey.legs.length - 1
|
||||||
const journey = journeys[0]
|
const d = journey.legs[i].destination
|
||||||
const firstLeg = journey.legs[0]
|
t.equal(d.id, kloster.id)
|
||||||
const lastLeg = journey.legs[journey.legs.length - 1]
|
t.equal(d.name, kloster.name)
|
||||||
|
t.ok(isRoughlyEqual(0.0001, d.latitude, kloster.latitude))
|
||||||
const o = firstLeg.origin
|
t.ok(isRoughlyEqual(0.0001, d.longitude, kloster.longitude))
|
||||||
assertValidPoi(t, o)
|
}
|
||||||
t.equal(o.name, 'Magdeburg, Kloster Unser Lieben Frauen (Denkmal)')
|
|
||||||
t.ok(isRoughlyEqual(0.0001, o.latitude, 52.127601))
|
|
||||||
t.ok(isRoughlyEqual(0.0001, o.longitude, 11.636437))
|
|
||||||
|
|
||||||
assertValidWhen(t, firstLeg.departure, when)
|
|
||||||
assertValidWhen(t, firstLeg.arrival, when)
|
|
||||||
assertValidWhen(t, lastLeg.departure, when)
|
|
||||||
assertValidWhen(t, lastLeg.arrival, when)
|
|
||||||
|
|
||||||
assertValidStation(t, lastLeg.destination)
|
|
||||||
|
|
||||||
t.end()
|
t.end()
|
||||||
}))
|
}))
|
||||||
|
|
||||||
test('journeys: via works – with detour', co(function* (t) {
|
test('journeys: via works – with detour', co(function* (t) {
|
||||||
// Going from Magdeburg, Hasselbachplatz (Sternstr.) (Tram/Bus) to Stendal via Dessau without detour
|
// Going from Magdeburg, Hasselbachplatz (Sternstr.) (Tram/Bus) to Stendal
|
||||||
// is currently impossible. We check if the routing engine computes a detour.
|
// via Dessau without detour is currently impossible. We check if the routing
|
||||||
const hasselbachplatzSternstrasse = '000006545'
|
// engine computes a detour.
|
||||||
const stendal = '008010334'
|
const journeys = yield client.journeys(hasselbachplatzSternstrasse, stendal, {
|
||||||
const dessau = '008010077'
|
|
||||||
const dessauPassed = '8010077'
|
|
||||||
const [journey] = yield client.journeys(hasselbachplatzSternstrasse, stendal, {
|
|
||||||
via: dessau,
|
via: dessau,
|
||||||
results: 1,
|
results: 1,
|
||||||
when,
|
when,
|
||||||
passedStations: true
|
passedStations: true
|
||||||
})
|
})
|
||||||
|
|
||||||
t.ok(journey)
|
validate(t, journeys, 'journeys', 'journeys')
|
||||||
|
|
||||||
const l = journey.legs.some(l => l.passed && l.passed.some(p => p.station.id === dessauPassed))
|
const leg = journeys[0].legs.some((leg) => {
|
||||||
t.ok(l, 'Dessau is not being passed')
|
return leg.passed && leg.passed.some((passed) => {
|
||||||
|
return (
|
||||||
|
passed.station.id === '8010077' || // todo: trim IDs
|
||||||
|
passed.station.id === dessau
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
t.ok(leg, 'Dessau is not being passed')
|
||||||
|
|
||||||
t.end()
|
t.end()
|
||||||
}))
|
}))
|
||||||
|
|
||||||
test('journeys: via works – without detour', co(function* (t) {
|
test('earlier/later journeys', co(function* (t) {
|
||||||
// When going from Magdeburg, Hasselbachplatz (Sternstr.) (Tram/Bus) to Magdeburg, Universität via Magdeburg, Breiter Weg, there is *no need*
|
const model = yield client.journeys(magdeburgHbf, magdeburgBuckau, {
|
||||||
// to change trains / no need for a "detour".
|
results: 3, when
|
||||||
const hasselbachplatzSternstrasse = '000006545'
|
|
||||||
const universitaet = '000019686'
|
|
||||||
const breiterWeg = '000013519'
|
|
||||||
const breiterWegPassed = '13519'
|
|
||||||
|
|
||||||
const [journey] = yield client.journeys(hasselbachplatzSternstrasse, universitaet, {
|
|
||||||
via: breiterWeg,
|
|
||||||
results: 1,
|
|
||||||
when,
|
|
||||||
passedStations: true
|
|
||||||
})
|
})
|
||||||
|
|
||||||
t.ok(journey)
|
// todo: move to journeys validator?
|
||||||
|
t.equal(typeof model.earlierRef, 'string')
|
||||||
|
t.ok(model.earlierRef)
|
||||||
|
t.equal(typeof model.laterRef, 'string')
|
||||||
|
t.ok(model.laterRef)
|
||||||
|
|
||||||
const l = journey.legs.some(l => l.passed && l.passed.some(p => p.station.id === breiterWegPassed))
|
// when and earlierThan/laterThan should be mutually exclusive
|
||||||
t.ok(l, 'Magdeburg, Breiter Weg is not being passed')
|
t.throws(() => {
|
||||||
|
client.journeys(magdeburgHbf, magdeburgBuckau, {
|
||||||
t.end()
|
when, earlierThan: model.earlierRef
|
||||||
}))
|
})
|
||||||
|
// silence rejections, we're only interested in exceptions
|
||||||
test('departures at Magdeburg Hbf', co(function*(t) {
|
.catch(() => {})
|
||||||
const magdeburgHbf = '8010224'
|
})
|
||||||
const deps = yield client.departures(magdeburgHbf, {
|
t.throws(() => {
|
||||||
duration: 5,
|
client.journeys(magdeburgHbf, magdeburgBuckau, {
|
||||||
when
|
when, laterThan: model.laterRef
|
||||||
|
})
|
||||||
|
// silence rejections, we're only interested in exceptions
|
||||||
|
.catch(() => {})
|
||||||
})
|
})
|
||||||
|
|
||||||
t.ok(Array.isArray(deps))
|
let earliestDep = Infinity, latestDep = -Infinity
|
||||||
for (let dep of deps) {
|
for (let j of model) {
|
||||||
assertValidStation(t, dep.station)
|
const dep = +new Date(j.legs[0].departure)
|
||||||
assertValidWhen(t, dep.when, when)
|
if (dep < earliestDep) earliestDep = dep
|
||||||
|
else if (dep > latestDep) latestDep = dep
|
||||||
}
|
}
|
||||||
|
|
||||||
t.end()
|
const earlier = yield client.journeys(magdeburgHbf, magdeburgBuckau, {
|
||||||
}))
|
results: 3,
|
||||||
|
// todo: single journey ref?
|
||||||
test('nearby Magdeburg Hbf', co(function*(t) {
|
earlierThan: model.earlierRef
|
||||||
const magdeburgHbfPosition = {
|
|
||||||
type: 'location',
|
|
||||||
latitude: 52.130352,
|
|
||||||
longitude: 11.626891
|
|
||||||
}
|
|
||||||
const nearby = yield client.nearby(magdeburgHbfPosition, {
|
|
||||||
results: 2,
|
|
||||||
distance: 400
|
|
||||||
})
|
})
|
||||||
|
for (let j of earlier) {
|
||||||
|
t.ok(new Date(j.legs[0].departure) < earliestDep)
|
||||||
|
}
|
||||||
|
|
||||||
t.ok(Array.isArray(nearby))
|
const later = yield client.journeys(magdeburgHbf, magdeburgBuckau, {
|
||||||
t.equal(nearby.length, 2)
|
results: 3,
|
||||||
|
// todo: single journey ref?
|
||||||
assertIsMagdeburgHbf(t, nearby[0])
|
laterThan: model.laterRef
|
||||||
t.ok(nearby[0].distance >= 0)
|
})
|
||||||
t.ok(nearby[0].distance <= 100)
|
for (let j of later) {
|
||||||
|
t.ok(new Date(j.legs[0].departure) > latestDep)
|
||||||
for (let n of nearby) {
|
|
||||||
if (n.type === 'station') assertValidStation(t, n)
|
|
||||||
else assertValidLocation(t, n)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
t.end()
|
t.end()
|
||||||
}))
|
}))
|
||||||
|
|
||||||
test('journey leg details', co(function* (t) {
|
test('journey leg details', co(function* (t) {
|
||||||
const magdeburgHbf = '8010224'
|
const journeys = yield client.journeys(magdeburgHbf, magdeburgBuckau, {
|
||||||
const magdeburgBuckau = '8013456'
|
|
||||||
const [journey] = yield client.journeys(magdeburgHbf, magdeburgBuckau, {
|
|
||||||
results: 1, when
|
results: 1, when
|
||||||
})
|
})
|
||||||
|
|
||||||
const p = journey.legs[0]
|
const p = journeys[0].legs[0]
|
||||||
t.ok(p, 'missing legs[0]')
|
t.ok(p.id, 'precondition failed')
|
||||||
t.ok(p.id, 'missing legs[0].id')
|
t.ok(p.line.name, 'precondition failed')
|
||||||
t.ok(p.line, 'missing legs[0].line')
|
|
||||||
t.ok(p.line.name, 'missing legs[0].line.name')
|
|
||||||
const leg = yield client.journeyLeg(p.id, p.line.name, {when})
|
const leg = yield client.journeyLeg(p.id, p.line.name, {when})
|
||||||
|
|
||||||
t.equal(typeof leg.id, 'string')
|
validate(t, leg, 'journeyLeg', 'leg')
|
||||||
t.ok(leg.id)
|
t.end()
|
||||||
|
}))
|
||||||
|
|
||||||
assertValidLine(t, leg.line)
|
test('departures at Magdeburg Hbf', co(function*(t) {
|
||||||
|
const deps = yield client.departures(magdeburgHbf, {
|
||||||
|
duration: 5,
|
||||||
|
when
|
||||||
|
})
|
||||||
|
|
||||||
t.equal(typeof leg.direction, 'string')
|
validate(t, deps, 'departures', 'departures')
|
||||||
t.ok(leg.direction)
|
for (let i = 0; i < deps.length; i++) {
|
||||||
|
const dep = deps[i]
|
||||||
|
const name = `deps[${i}]`
|
||||||
|
|
||||||
t.ok(Array.isArray(leg.passed))
|
// todo: fix this
|
||||||
for (let passed of leg.passed) assertValidStopover(t, passed)
|
// t.equal(dep.station.name, 'Magdeburg Hbf', name + '.station.name is invalid')
|
||||||
|
// t.equal(dep.station.id, magdeburgHbf, name + '.station.id is invalid')
|
||||||
|
}
|
||||||
|
// todo: move into deps validator
|
||||||
|
t.deepEqual(deps, deps.sort((a, b) => t.when > b.when))
|
||||||
|
|
||||||
t.end()
|
t.end()
|
||||||
}))
|
}))
|
||||||
|
|
||||||
|
test('departures with station object', co(function* (t) {
|
||||||
|
const deps = yield client.departures({
|
||||||
|
type: 'station',
|
||||||
|
id: magdeburgHbf,
|
||||||
|
name: 'Magdeburg Hbf',
|
||||||
|
location: {
|
||||||
|
type: 'location',
|
||||||
|
latitude: 1.23,
|
||||||
|
longitude: 2.34
|
||||||
|
}
|
||||||
|
}, {when})
|
||||||
|
|
||||||
|
validate(t, deps, 'departures', 'departures')
|
||||||
|
t.end()
|
||||||
|
}))
|
||||||
|
|
||||||
|
// todo: nearby
|
||||||
|
|
||||||
test('locations named Magdeburg', co(function*(t) {
|
test('locations named Magdeburg', co(function*(t) {
|
||||||
const locations = yield client.locations('Magdeburg', {
|
const locations = yield client.locations('Magdeburg', {
|
||||||
results: 10
|
results: 20
|
||||||
})
|
})
|
||||||
|
|
||||||
t.ok(Array.isArray(locations))
|
validate(t, locations, 'locations', 'locations')
|
||||||
t.ok(locations.length > 0)
|
t.ok(locations.length <= 20)
|
||||||
t.ok(locations.length <= 10)
|
|
||||||
|
|
||||||
for (let l of locations) {
|
t.ok(locations.find(s => s.type === 'station'))
|
||||||
if (l.type === 'station') assertValidStation(t, l)
|
t.ok(locations.find(s => s.id && s.name)) // POIs
|
||||||
else assertValidLocation(t, l)
|
t.ok(locations.some((loc) => {
|
||||||
}
|
return (
|
||||||
t.ok(locations.some(isMagdeburgHbf))
|
loc.id === '008010224' || // todo: trim IDs
|
||||||
|
loc.id === magdeburgHbf
|
||||||
|
)
|
||||||
|
}))
|
||||||
|
|
||||||
t.end()
|
t.end()
|
||||||
}))
|
}))
|
||||||
|
|
||||||
test('location', co(function*(t) {
|
test('location Magdeburg-Buckau', co(function* (t) {
|
||||||
const magdeburgBuckau = '8013456'
|
const s = yield client.location(magdeburgBuckau)
|
||||||
const loc = yield client.location(magdeburgBuckau)
|
|
||||||
|
|
||||||
assertValidStation(t, loc)
|
validate(t, s, 'station', 'station')
|
||||||
t.equal(loc.id, magdeburgBuckau)
|
t.equal(s.id, magdeburgBuckau)
|
||||||
|
|
||||||
t.end()
|
t.end()
|
||||||
}))
|
}))
|
||||||
|
|
||||||
test('radar', co(function* (t) {
|
test('radar', co(function* (t) {
|
||||||
const north = 52.148364
|
const vehicles = yield client.radar({
|
||||||
const west = 11.600826
|
north: 52.148364,
|
||||||
const south = 52.108486
|
west: 11.600826,
|
||||||
const east = 11.651451
|
south: 52.108486,
|
||||||
const vehicles = yield client.radar({north, west, south, east}, {
|
east: 11.651451
|
||||||
|
}, {
|
||||||
duration: 5 * 60, when, results: 10
|
duration: 5 * 60, when, results: 10
|
||||||
})
|
})
|
||||||
|
|
||||||
t.ok(Array.isArray(vehicles))
|
const customCfg = Object.assign({}, cfg, {
|
||||||
t.ok(vehicles.length > 0)
|
stationCoordsOptional: true, // see #28
|
||||||
for (let v of vehicles) {
|
})
|
||||||
assertValidLine(t, v.line)
|
const validate = createValidate(customCfg, {})
|
||||||
|
validate(t, vehicles, 'movements', 'vehicles')
|
||||||
|
|
||||||
t.equal(typeof v.location.latitude, 'number')
|
|
||||||
t.ok(v.location.latitude <= 57, 'vehicle is too far away')
|
|
||||||
t.ok(v.location.latitude >= 47, 'vehicle is too far away')
|
|
||||||
t.equal(typeof v.location.longitude, 'number')
|
|
||||||
t.ok(v.location.longitude >= 8, 'vehicle is too far away')
|
|
||||||
t.ok(v.location.longitude <= 14, 'vehicle is too far away')
|
|
||||||
|
|
||||||
t.ok(Array.isArray(v.nextStops))
|
|
||||||
for (let st of v.nextStops) {
|
|
||||||
assertValidStopover(t, st, true)
|
|
||||||
|
|
||||||
if (st.arrival) {
|
|
||||||
t.equal(typeof st.arrival, 'string')
|
|
||||||
const arr = +new Date(st.arrival)
|
|
||||||
// note that this can be an ICE train
|
|
||||||
t.ok(isRoughlyEqual(14 * hour, +when, arr))
|
|
||||||
}
|
|
||||||
if (st.departure) {
|
|
||||||
t.equal(typeof st.departure, 'string')
|
|
||||||
const dep = +new Date(st.departure)
|
|
||||||
// note that this can be an ICE train
|
|
||||||
t.ok(isRoughlyEqual(14 * hour, +when, dep))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
t.ok(Array.isArray(v.frames))
|
|
||||||
for (let f of v.frames) {
|
|
||||||
// see #28
|
|
||||||
// todo: check if this works by now
|
|
||||||
assertValidStation(t, f.origin, true)
|
|
||||||
assertValidStation(t, f.destination, true)
|
|
||||||
t.equal(typeof f.t, 'number')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
t.end()
|
t.end()
|
||||||
}))
|
}))
|
||||||
|
|
Loading…
Add table
Reference in a new issue