2021-01-19 15:10:07 +01:00
|
|
|
'use strict'
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
const tap = require('tap')
|
2021-01-19 15:10:07 +01:00
|
|
|
|
|
|
|
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: {}
|
|
|
|
}
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
tap.test('parses a journey correctly (RSAG)', (t) => {
|
2021-01-19 15:10:07 +01:00
|
|
|
const common = profile.parseCommon({profile, opt, res})
|
|
|
|
const ctx = {profile, opt, common, res}
|
|
|
|
const journey = profile.parseJourney(ctx, res.outConL[0])
|
|
|
|
|
2021-05-20 16:42:43 +01:00
|
|
|
t.same(journey, expected)
|
2021-01-19 15:10:07 +01:00
|
|
|
t.end()
|
|
|
|
})
|