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.

125 lines
3.1 KiB
JavaScript
Raw Normal View History

2022-04-04 11:22:00 +05:30
import Vue, { nextTick } from 'vue';
2021-11-18 22:05:49 +05:30
import json from 'test_fixtures/blob/notebook/basic.json';
2017-08-17 22:00:37 +05:30
import CodeComponent from '~/notebook/cells/output/index.vue';
const Component = Vue.extend(CodeComponent);
describe('Output component', () => {
let vm;
2021-03-08 18:12:59 +05:30
const createComponent = (output) => {
2017-08-17 22:00:37 +05:30
vm = new Component({
propsData: {
2019-03-02 22:35:43 +05:30
outputs: [].concat(output),
2017-08-17 22:00:37 +05:30
count: 1,
},
});
vm.$mount();
};
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
2022-04-04 11:22:00 +05:30
return nextTick();
2017-08-17 22:00:37 +05:30
});
it('renders as plain text', () => {
expect(vm.$el.querySelector('pre')).not.toBeNull();
});
2020-10-24 23:57:45 +05:30
it('renders prompt', () => {
2017-08-17 22:00:37 +05:30
expect(vm.$el.querySelector('.prompt span')).not.toBeNull();
});
});
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
2022-04-04 11:22:00 +05:30
return nextTick();
2017-08-17 22:00:37 +05:30
});
it('renders as an image', () => {
expect(vm.$el.querySelector('img')).not.toBeNull();
});
});
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
expect(vm.$el.querySelector('p')).not.toBeNull();
2021-03-08 18:12:59 +05:30
expect(vm.$el.querySelectorAll('p')).toHaveLength(1);
2019-03-02 22:35:43 +05:30
expect(vm.$el.textContent.trim()).toContain('test');
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
2021-03-08 18:12:59 +05:30
expect(vm.$el.querySelectorAll('p')).toHaveLength(2);
});
});
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);
expect(vm.$el.querySelector('.MathJax')).not.toBeNull();
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
2022-04-04 11:22:00 +05:30
return nextTick();
2017-08-17 22:00:37 +05:30
});
it('renders as an svg', () => {
expect(vm.$el.querySelector('svg')).not.toBeNull();
});
});
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
2022-04-04 11:22:00 +05:30
return nextTick();
2017-08-17 22:00:37 +05:30
});
it('renders as plain text', () => {
expect(vm.$el.querySelector('pre')).not.toBeNull();
expect(vm.$el.textContent.trim()).toContain('testing');
});
it('renders promot', () => {
expect(vm.$el.querySelector('.prompt span')).not.toBeNull();
});
2022-04-04 11:22:00 +05:30
it("renders as plain text when doesn't recognise other types", async () => {
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-04-04 11:22:00 +05:30
await nextTick();
2017-08-17 22:00:37 +05:30
2022-04-04 11:22:00 +05:30
expect(vm.$el.querySelector('pre')).not.toBeNull();
expect(vm.$el.textContent.trim()).toContain('testing');
2017-08-17 22:00:37 +05:30
});
});
});