debian-mirror-gitlab/spec/frontend/notebook/cells/output/index_spec.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

121 lines
3.2 KiB
JavaScript
Raw Normal View History

2022-08-13 15:12:31 +05:30
import { mount } from '@vue/test-utils';
2021-11-18 22:05:49 +05:30
import json from 'test_fixtures/blob/notebook/basic.json';
2022-08-13 15:12:31 +05:30
import Output from '~/notebook/cells/output/index.vue';
2017-08-17 22:00:37 +05:30
describe('Output component', () => {
2022-08-13 15:12:31 +05:30
let wrapper;
2017-08-17 22:00:37 +05:30
2021-03-08 18:12:59 +05:30
const createComponent = (output) => {
2022-08-13 15:12:31 +05:30
wrapper = mount(Output, {
2017-08-17 22:00:37 +05:30
propsData: {
2019-03-02 22:35:43 +05:30
outputs: [].concat(output),
2017-08-17 22:00:37 +05:30
count: 1,
},
});
};
2022-08-13 15:12:31 +05:30
afterEach(() => {
wrapper.destroy();
});
2017-08-17 22:00:37 +05:30
describe('text output', () => {
2022-04-04 11:22:00 +05:30
beforeEach(() => {
2021-03-08 18:12:59 +05:30
const textType = json.cells[2];
createComponent(textType.outputs[0]);
2017-08-17 22:00:37 +05:30
});
it('renders as plain text', () => {
2022-08-13 15:12:31 +05:30
expect(wrapper.find('pre').exists()).toBe(true);
2017-08-17 22:00:37 +05:30
});
2020-10-24 23:57:45 +05:30
it('renders prompt', () => {
2022-08-13 15:12:31 +05:30
expect(wrapper.find('.prompt span').exists()).toBe(true);
2017-08-17 22:00:37 +05:30
});
});
describe('image output', () => {
2022-04-04 11:22:00 +05:30
beforeEach(() => {
2021-03-08 18:12:59 +05:30
const imageType = json.cells[3];
createComponent(imageType.outputs[0]);
2017-08-17 22:00:37 +05:30
});
it('renders as an image', () => {
2022-08-13 15:12:31 +05:30
expect(wrapper.find('img').exists()).toBe(true);
2017-08-17 22:00:37 +05:30
});
});
describe('html output', () => {
2019-03-02 22:35:43 +05:30
it('renders raw HTML', () => {
2021-03-08 18:12:59 +05:30
const htmlType = json.cells[4];
createComponent(htmlType.outputs[0]);
2017-08-17 22:00:37 +05:30
2022-09-01 20:07:04 +05:30
const iframe = wrapper.find('iframe');
expect(iframe.exists()).toBe(true);
expect(iframe.element.getAttribute('sandbox')).toBe('');
expect(iframe.element.getAttribute('srcdoc')).toBe('<p>test</p>');
2017-08-17 22:00:37 +05:30
});
2019-03-02 22:35:43 +05:30
it('renders multiple raw HTML outputs', () => {
2021-03-08 18:12:59 +05:30
const htmlType = json.cells[4];
createComponent([htmlType.outputs[0], htmlType.outputs[0]]);
2019-03-02 22:35:43 +05:30
2022-09-01 20:07:04 +05:30
expect(wrapper.findAll('iframe')).toHaveLength(2);
2021-03-08 18:12:59 +05:30
});
});
describe('LaTeX output', () => {
it('renders LaTeX', () => {
const output = {
data: {
'text/latex': ['$$F(k) = \\int_{-\\infty}^{\\infty} f(x) e^{2\\pi i k} dx$$'],
'text/plain': ['<IPython.core.display.Latex object>'],
},
metadata: {},
output_type: 'display_data',
};
createComponent(output);
2022-08-13 15:12:31 +05:30
expect(wrapper.find('.MathJax').exists()).toBe(true);
2017-08-17 22:00:37 +05:30
});
});
describe('svg output', () => {
2022-04-04 11:22:00 +05:30
beforeEach(() => {
2021-03-08 18:12:59 +05:30
const svgType = json.cells[5];
createComponent(svgType.outputs[0]);
2017-08-17 22:00:37 +05:30
});
it('renders as an svg', () => {
2022-09-01 20:07:04 +05:30
const iframe = wrapper.find('iframe');
expect(iframe.exists()).toBe(true);
expect(iframe.element.getAttribute('sandbox')).toBe('');
expect(iframe.element.getAttribute('srcdoc')).toBe('<svg></svg>');
2017-08-17 22:00:37 +05:30
});
});
describe('default to plain text', () => {
2022-04-04 11:22:00 +05:30
beforeEach(() => {
2021-03-08 18:12:59 +05:30
const unknownType = json.cells[6];
createComponent(unknownType.outputs[0]);
2017-08-17 22:00:37 +05:30
});
it('renders as plain text', () => {
2022-08-13 15:12:31 +05:30
expect(wrapper.find('pre').exists()).toBe(true);
expect(wrapper.text()).toContain('testing');
2017-08-17 22:00:37 +05:30
});
2022-08-13 15:12:31 +05:30
it('renders prompt', () => {
expect(wrapper.find('.prompt span').exists()).toBe(true);
2017-08-17 22:00:37 +05:30
});
2022-08-13 15:12:31 +05:30
it("renders as plain text when doesn't recognise other types", () => {
2021-03-08 18:12:59 +05:30
const unknownType = json.cells[7];
createComponent(unknownType.outputs[0]);
2017-08-17 22:00:37 +05:30
2022-08-13 15:12:31 +05:30
expect(wrapper.find('pre').exists()).toBe(true);
expect(wrapper.text()).toContain('testing');
2017-08-17 22:00:37 +05:30
});
});
});