mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
126 lines
2.7 KiB
JavaScript
126 lines
2.7 KiB
JavaScript
import * as render from '../render';
|
|
import {TYPE_ENVIRONMENT, TYPE_REQUEST_GROUP} from '../../database/index';
|
|
|
|
jest.mock('electron');
|
|
|
|
describe('render()', () => {
|
|
it('renders hello world', () => {
|
|
const rendered = render.render('Hello {{ msg }}!', {msg: 'World'});
|
|
expect(rendered).toBe('Hello World!');
|
|
});
|
|
|
|
it('fails on invalid template', () => {
|
|
const fn = () => render.render('Hello {{ msg }!', {msg: 'World'});
|
|
expect(fn).toThrowError('expected variable end');
|
|
});
|
|
});
|
|
|
|
describe('buildRenderContext()', () => {
|
|
it('cascades properly', () => {
|
|
const ancestors = [{
|
|
type: TYPE_REQUEST_GROUP,
|
|
environment: {foo: 'group 2', ancestor: true}
|
|
}, {
|
|
type: TYPE_REQUEST_GROUP,
|
|
environment: {foo: 'group 1', ancestor: true}
|
|
}];
|
|
|
|
const rootEnvironment = {
|
|
type: TYPE_ENVIRONMENT,
|
|
data: {foo: 'root', root: true}
|
|
};
|
|
|
|
const subEnvironment = {
|
|
type: TYPE_ENVIRONMENT,
|
|
data: {foo: 'sub', sub: true}
|
|
};
|
|
|
|
const context = render.buildRenderContext(
|
|
ancestors,
|
|
rootEnvironment,
|
|
subEnvironment
|
|
);
|
|
|
|
expect(context).toEqual({
|
|
foo: 'group 1',
|
|
ancestor: true,
|
|
root: true,
|
|
sub: true
|
|
});
|
|
});
|
|
|
|
it('works with minimal parameters', () => {
|
|
const ancestors = null;
|
|
const rootEnvironment = null;
|
|
const subEnvironment = null;
|
|
|
|
const context = render.buildRenderContext(
|
|
ancestors,
|
|
rootEnvironment,
|
|
subEnvironment
|
|
);
|
|
|
|
expect(context).toEqual({});
|
|
});
|
|
});
|
|
|
|
describe('recursiveRender()', () => {
|
|
it('correctly renders simple Object', () => {
|
|
const newObj = render.recursiveRender({
|
|
foo: '{{ foo }}',
|
|
bar: 'bar',
|
|
baz: '{{ bad }}'
|
|
}, {foo: 'bar'});
|
|
|
|
expect(newObj).toEqual({
|
|
foo: 'bar',
|
|
bar: 'bar',
|
|
baz: ''
|
|
})
|
|
});
|
|
|
|
it('correctly renders complex Object', () => {
|
|
const d = new Date();
|
|
const obj = {
|
|
foo: '{{ foo }}',
|
|
null: null,
|
|
bool: true,
|
|
date: d,
|
|
num: 1234,
|
|
nested: {
|
|
foo: '{{ foo }}',
|
|
arr: [1,2, '{{ foo }}']
|
|
}
|
|
};
|
|
|
|
const newObj = render.recursiveRender(obj, {foo: 'bar'});
|
|
|
|
expect(newObj).toEqual({
|
|
foo: 'bar',
|
|
null: null,
|
|
bool: true,
|
|
date: d,
|
|
num: 1234,
|
|
nested: {
|
|
foo: 'bar',
|
|
arr: [1,2, 'bar']
|
|
}
|
|
});
|
|
|
|
// Make sure original request isn't changed
|
|
expect(obj.foo).toBe('{{ foo }}');
|
|
expect(obj.nested.foo).toBe('{{ foo }}');
|
|
expect(obj.nested.arr[2]).toBe('{{ foo }}');
|
|
});
|
|
|
|
it('fails on bad template', () => {
|
|
const fn = () => render.recursiveRender({
|
|
foo: '{{ foo }',
|
|
bar: 'bar',
|
|
baz: '{{ bad }}'
|
|
}, {foo: 'bar'});
|
|
|
|
expect(fn).toThrowError('expected variable end');
|
|
})
|
|
});
|