mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-23 00:13:24 +01:00
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
const parser = require('../src/dotenvToJson');
|
|
|
|
describe('DotEnv File Parser', () => {
|
|
test('it should parse a simple key-value pair', () => {
|
|
const input = `FOO=bar`;
|
|
const expected = { FOO: 'bar' };
|
|
const output = parser(input);
|
|
expect(output).toEqual(expected);
|
|
});
|
|
|
|
test('it should parse a simple key-value pair with empty lines', () => {
|
|
const input = `
|
|
FOO=bar
|
|
|
|
`;
|
|
const expected = { FOO: 'bar' };
|
|
const output = parser(input);
|
|
expect(output).toEqual(expected);
|
|
});
|
|
|
|
test('it should parse multiple key-value pairs', () => {
|
|
const input = `
|
|
FOO=bar
|
|
BAZ=2
|
|
BEEP=false
|
|
`;
|
|
const expected = {
|
|
FOO: 'bar',
|
|
BAZ: '2',
|
|
BEEP: 'false'
|
|
};
|
|
const output = parser(input);
|
|
expect(output).toEqual(expected);
|
|
});
|
|
|
|
test('it should not strip leading and trailing whitespace when using quotes', () => {
|
|
const input = `
|
|
SPACE=" value "
|
|
`;
|
|
const expected = { SPACE: ' value ' };
|
|
const output = parser(input);
|
|
expect(output).toEqual(expected);
|
|
});
|
|
|
|
test('it should strip leading and trailing whitespace when NOT using quotes', () => {
|
|
const input = `
|
|
SPACE= value
|
|
`;
|
|
const expected = { SPACE: 'value' };
|
|
const output = parser(input);
|
|
expect(output).toEqual(expected);
|
|
});
|
|
});
|