2017-08-17 22:00:37 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import CodeComponent from '~/notebook/cells/output/index.vue';
|
|
|
|
|
|
|
|
const Component = Vue.extend(CodeComponent);
|
|
|
|
|
|
|
|
describe('Output component', () => {
|
|
|
|
let vm;
|
|
|
|
let json;
|
|
|
|
|
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();
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2021-03-08 18:12:59 +05:30
|
|
|
// This is the output after rendering a jupyter notebook
|
2017-08-17 22:00:37 +05:30
|
|
|
json = getJSONFixture('blob/notebook/basic.json');
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('text output', () => {
|
2021-03-08 18:12:59 +05:30
|
|
|
beforeEach((done) => {
|
|
|
|
const textType = json.cells[2];
|
|
|
|
createComponent(textType.outputs[0]);
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
setImmediate(() => {
|
2017-08-17 22:00:37 +05:30
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
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', () => {
|
2021-03-08 18:12:59 +05:30
|
|
|
beforeEach((done) => {
|
|
|
|
const imageType = json.cells[3];
|
|
|
|
createComponent(imageType.outputs[0]);
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
setImmediate(() => {
|
2017-08-17 22:00:37 +05:30
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
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', () => {
|
2021-03-08 18:12:59 +05:30
|
|
|
beforeEach((done) => {
|
|
|
|
const svgType = json.cells[5];
|
|
|
|
createComponent(svgType.outputs[0]);
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
setImmediate(() => {
|
2017-08-17 22:00:37 +05:30
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders as an svg', () => {
|
|
|
|
expect(vm.$el.querySelector('svg')).not.toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('default to plain text', () => {
|
2021-03-08 18:12:59 +05:30
|
|
|
beforeEach((done) => {
|
|
|
|
const unknownType = json.cells[6];
|
|
|
|
createComponent(unknownType.outputs[0]);
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
setImmediate(() => {
|
2017-08-17 22:00:37 +05:30
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
it("renders as plain text when doesn't recognise other types", (done) => {
|
|
|
|
const unknownType = json.cells[7];
|
|
|
|
createComponent(unknownType.outputs[0]);
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
setImmediate(() => {
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(vm.$el.querySelector('pre')).not.toBeNull();
|
|
|
|
expect(vm.$el.textContent.trim()).toContain('testing');
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|