db-vendo-client/test/e2e/lib/arrivals.js
2021-08-24 00:53:23 +02:00

28 lines
658 B
JavaScript

'use strict'
const testArrivals = async (cfg) => {
const {test: t, arrivals: arrs, validate} = cfg
const ids = cfg.ids || (cfg.id ? [cfg.id] : [])
validate(t, arrs, 'arrivals', 'arrivals')
t.ok(arrs.length > 0, 'must be >0 arrivals')
for (let i = 0; i < arrs.length; i++) {
let stop = arrs[i].stop
let name = `arrs[${i}].stop`
if (stop.station) {
stop = stop.station
name += '.station'
}
t.ok(
ids.includes(stop.id) ||
(stop.station && ids.includes(stop.station.id)),
name + '.id is invalid',
)
}
// todo: move into arrivals validator
t.same(arrs, arrs.sort((a, b) => t.when > b.when))
}
module.exports = testArrivals