2017-04-11 13:50:21 -04:00
|
|
|
import Vue from 'vue';
|
|
|
|
import Notebook from '~/notebook/index.vue';
|
|
|
|
|
|
|
|
const Component = Vue.extend(Notebook);
|
|
|
|
|
|
|
|
describe('Notebook component', () => {
|
|
|
|
let vm;
|
2017-04-11 16:25:10 -04:00
|
|
|
let json;
|
|
|
|
let jsonWithWorksheet;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
json = getJSONFixture('blob/notebook/basic.json');
|
|
|
|
jsonWithWorksheet = getJSONFixture('blob/notebook/worksheets.json');
|
|
|
|
});
|
2017-04-11 13:50:21 -04:00
|
|
|
|
|
|
|
describe('without JSON', () => {
|
2020-12-23 19:10:25 -05:00
|
|
|
beforeEach((done) => {
|
2017-04-11 13:50:21 -04:00
|
|
|
vm = new Component({
|
|
|
|
propsData: {
|
|
|
|
notebook: {},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
vm.$mount();
|
|
|
|
|
2020-05-08 05:09:39 -04:00
|
|
|
setImmediate(() => {
|
2017-04-11 13:50:21 -04:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not render', () => {
|
|
|
|
expect(vm.$el.tagName).toBeUndefined();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with JSON', () => {
|
2020-12-23 19:10:25 -05:00
|
|
|
beforeEach((done) => {
|
2017-04-11 13:50:21 -04:00
|
|
|
vm = new Component({
|
|
|
|
propsData: {
|
|
|
|
notebook: json,
|
|
|
|
codeCssClass: 'js-code-class',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
vm.$mount();
|
|
|
|
|
2020-05-08 05:09:39 -04:00
|
|
|
setImmediate(() => {
|
2017-04-11 13:50:21 -04:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders cells', () => {
|
|
|
|
expect(vm.$el.querySelectorAll('.cell').length).toBe(json.cells.length);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders markdown cell', () => {
|
|
|
|
expect(vm.$el.querySelector('.markdown')).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders code cell', () => {
|
|
|
|
expect(vm.$el.querySelector('pre')).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('add code class to code blocks', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-code-class')).not.toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with worksheets', () => {
|
2020-12-23 19:10:25 -05:00
|
|
|
beforeEach((done) => {
|
2017-04-11 13:50:21 -04:00
|
|
|
vm = new Component({
|
|
|
|
propsData: {
|
|
|
|
notebook: jsonWithWorksheet,
|
|
|
|
codeCssClass: 'js-code-class',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
vm.$mount();
|
|
|
|
|
2020-05-08 05:09:39 -04:00
|
|
|
setImmediate(() => {
|
2017-04-11 13:50:21 -04:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders cells', () => {
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(vm.$el.querySelectorAll('.cell').length).toBe(
|
|
|
|
jsonWithWorksheet.worksheets[0].cells.length,
|
|
|
|
);
|
2017-04-11 13:50:21 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('renders markdown cell', () => {
|
|
|
|
expect(vm.$el.querySelector('.markdown')).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders code cell', () => {
|
|
|
|
expect(vm.$el.querySelector('pre')).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('add code class to code blocks', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-code-class')).not.toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|