mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-07 16:44:27 +01:00
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
const jsonToToml = require('../src/jsonToToml');
|
|
const tomlToJson = require('../src/tomlToJson');
|
|
|
|
const fixtures = [
|
|
'methods/get',
|
|
'methods/delete',
|
|
'headers/simple-header',
|
|
'headers/empty-header',
|
|
'headers/spaces-in-header',
|
|
'headers/unicode-in-header',
|
|
'headers/disabled-header',
|
|
'headers/dotted-header',
|
|
'headers/duplicate-header',
|
|
'headers/reserved-header',
|
|
'scripts/pre-request',
|
|
'scripts/post-response',
|
|
'scripts/tests'
|
|
];
|
|
|
|
describe('bruno toml', () => {
|
|
fixtures.forEach((fixture) => {
|
|
describe(fixture, () => {
|
|
const json = require(`./${fixture}/request.json`);
|
|
const toml = fs.readFileSync(path.join(__dirname, fixture, 'request.toml'), 'utf8');
|
|
|
|
if (process.env.DEBUG === 'true') {
|
|
console.log(`DEBUG: Running ${fixture} tests`);
|
|
console.log('json', JSON.stringify(json, null, 2));
|
|
console.log('toml', toml);
|
|
console.log('jsonToToml', jsonToToml(json));
|
|
console.log('tomlToJson', JSON.stringify(tomlToJson(toml), null, 2));
|
|
}
|
|
|
|
it(`should convert json to toml`, () => {
|
|
expect(toml).toEqual(jsonToToml(json));
|
|
});
|
|
|
|
it(`should convert toml to json`, () => {
|
|
expect(json).toEqual(tomlToJson(toml));
|
|
});
|
|
});
|
|
});
|
|
});
|