summaryrefslogtreecommitdiff
path: root/spec/javascripts/notebook/cells/markdown_spec.js
blob: 540fc8a21f157f3ebef99fc4632e7ef5e2c73ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import Vue from 'vue';
import MarkdownComponent from '~/notebook/cells/markdown.vue';
import katex from 'katex';

const Component = Vue.extend(MarkdownComponent);

window.katex = katex;

describe('Markdown component', () => {
  let vm;
  let cell;
  let json;

  beforeEach(done => {
    json = getJSONFixture('blob/notebook/basic.json');

    // eslint-disable-next-line prefer-destructuring
    cell = json.cells[1];

    vm = new Component({
      propsData: {
        cell,
      },
    });
    vm.$mount();

    setTimeout(() => {
      done();
    });
  });

  it('does not render promot', () => {
    expect(vm.$el.querySelector('.prompt span')).toBeNull();
  });

  it('does not render the markdown text', () => {
    expect(vm.$el.querySelector('.markdown').innerHTML.trim()).not.toEqual(cell.source.join(''));
  });

  it('renders the markdown HTML', () => {
    expect(vm.$el.querySelector('.markdown h1')).not.toBeNull();
  });

  it('sanitizes output', done => {
    Object.assign(cell, {
      source: [
        '[XSS](data:text/html;base64,PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+Cg==)\n',
      ],
    });

    Vue.nextTick(() => {
      expect(vm.$el.querySelector('a')).toBeNull();

      done();
    });
  });

  describe('katex', () => {
    beforeEach(() => {
      json = getJSONFixture('blob/notebook/math.json');
    });

    it('renders multi-line katex', done => {
      vm = new Component({
        propsData: {
          cell: json.cells[0],
        },
      }).$mount();

      Vue.nextTick(() => {
        expect(vm.$el.querySelector('.katex')).not.toBeNull();

        done();
      });
    });

    it('renders inline katex', done => {
      vm = new Component({
        propsData: {
          cell: json.cells[1],
        },
      }).$mount();

      Vue.nextTick(() => {
        expect(vm.$el.querySelector('p:first-child .katex')).not.toBeNull();

        done();
      });
    });

    it('renders multiple inline katex', done => {
      vm = new Component({
        propsData: {
          cell: json.cells[1],
        },
      }).$mount();

      Vue.nextTick(() => {
        expect(vm.$el.querySelectorAll('p:nth-child(2) .katex').length).toBe(4);

        done();
      });
    });
  });
});