mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
31 lines
721 B
JavaScript
31 lines
721 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const test = require('tape')
|
||
|
|
||
|
const createClient = require('..')
|
||
|
const rawProfile = require('../p/rsag')
|
||
|
const res = require('./fixtures/rsag-journey.json')
|
||
|
const expected = require('./fixtures/rsag-journey.js')
|
||
|
|
||
|
const client = createClient(rawProfile, 'public-transport/hafas-client:test')
|
||
|
const {profile} = client
|
||
|
|
||
|
const opt = {
|
||
|
stopovers: false,
|
||
|
tickets: false,
|
||
|
polylines: false,
|
||
|
subStops: true,
|
||
|
entrances: true,
|
||
|
remarks: true,
|
||
|
products: {}
|
||
|
}
|
||
|
|
||
|
test('parses a journey correctly (RSAG)', (t) => {
|
||
|
const common = profile.parseCommon({profile, opt, res})
|
||
|
const ctx = {profile, opt, common, res}
|
||
|
const journey = profile.parseJourney(ctx, res.outConL[0])
|
||
|
|
||
|
t.deepEqual(journey, expected)
|
||
|
t.end()
|
||
|
})
|