mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-23 00:13:24 +01:00
56 lines
1.0 KiB
JavaScript
56 lines
1.0 KiB
JavaScript
const parser = require("../src/jsonToEnv");
|
|
|
|
describe("env parser", () => {
|
|
it("should parse empty vars", () => {
|
|
const input = {
|
|
"variables": []
|
|
};
|
|
|
|
const output = parser(input);
|
|
const expected = `vars {
|
|
}
|
|
`;
|
|
|
|
expect(output).toEqual(expected);
|
|
});
|
|
|
|
it("should parse single var line", () => {
|
|
const input = {
|
|
"variables": [{
|
|
"name": "url",
|
|
"value": "http://localhost:3000",
|
|
"enabled" : true,
|
|
}]
|
|
};
|
|
|
|
const output = parser(input);
|
|
const expected = `vars {
|
|
url: http://localhost:3000
|
|
}
|
|
`;
|
|
expect(output).toEqual(expected);
|
|
});
|
|
|
|
it("should parse multiple var lines", () => {
|
|
const input = {
|
|
"variables": [{
|
|
"name": "url",
|
|
"value": "http://localhost:3000",
|
|
"enabled" : true
|
|
}, {
|
|
"name": "port",
|
|
"value": "3000",
|
|
"enabled" : false
|
|
}]
|
|
};
|
|
|
|
const expected = `vars {
|
|
url: http://localhost:3000
|
|
~port: 3000
|
|
}
|
|
`;
|
|
const output = parser(input);
|
|
expect(output).toEqual(expected);
|
|
});
|
|
});
|