model_spec.js 3.16 KB
Newer Older
Phil Hughes's avatar
Phil Hughes committed
1
/* global monaco */
2 3 4
import eventHub from '~/ide/eventhub';
import monacoLoader from '~/ide/monaco_loader';
import Model from '~/ide/lib/common/model';
Phil Hughes's avatar
Phil Hughes committed
5 6 7 8 9
import { file } from '../../helpers';

describe('Multi-file editor library model', () => {
  let model;

10
  beforeEach(done => {
Phil Hughes's avatar
Phil Hughes committed
11 12 13
    spyOn(eventHub, '$on').and.callThrough();

    monacoLoader(['vs/editor/editor.main'], () => {
14 15 16 17
      const f = file('path');
      f.mrChange = { diff: 'ABC' };
      f.baseRaw = 'test';
      model = new Model(monaco, f);
Phil Hughes's avatar
Phil Hughes committed
18 19 20 21 22 23 24 25 26

      done();
    });
  });

  afterEach(() => {
    model.dispose();
  });

27
  it('creates original model & base model & new model', () => {
Phil Hughes's avatar
Phil Hughes committed
28 29
    expect(model.originalModel).not.toBeNull();
    expect(model.model).not.toBeNull();
30
    expect(model.baseModel).not.toBeNull();
Phil Hughes's avatar
Phil Hughes committed
31 32
  });

33 34 35 36 37 38 39 40 41 42 43 44 45
  it('creates model with head file to compare against', () => {
    const f = file('path');
    model.dispose();

    model = new Model(monaco, f, {
      ...f,
      content: '123 testing',
    });

    expect(model.head).not.toBeNull();
    expect(model.getOriginalModel().getValue()).toBe('123 testing');
  });

Phil Hughes's avatar
Phil Hughes committed
46
  it('adds eventHub listener', () => {
47
    expect(eventHub.$on).toHaveBeenCalledWith(
Phil Hughes's avatar
Phil Hughes committed
48
      `editor.update.model.dispose.${model.file.key}`,
49 50
      jasmine.anything(),
    );
Phil Hughes's avatar
Phil Hughes committed
51 52 53 54
  });

  describe('path', () => {
    it('returns file path', () => {
Phil Hughes's avatar
Phil Hughes committed
55
      expect(model.path).toBe(model.file.key);
Phil Hughes's avatar
Phil Hughes committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
    });
  });

  describe('getModel', () => {
    it('returns model', () => {
      expect(model.getModel()).toBe(model.model);
    });
  });

  describe('getOriginalModel', () => {
    it('returns original model', () => {
      expect(model.getOriginalModel()).toBe(model.originalModel);
    });
  });

71 72 73 74 75 76
  describe('getBaseModel', () => {
    it('returns base model', () => {
      expect(model.getBaseModel()).toBe(model.baseModel);
    });
  });

Phil Hughes's avatar
Phil Hughes committed
77 78 79 80 81 82 83 84 85
  describe('setValue', () => {
    it('updates models value', () => {
      model.setValue('testing 123');

      expect(model.getModel().getValue()).toBe('testing 123');
    });
  });

  describe('onChange', () => {
86
    it('calls callback on change', done => {
Phil Hughes's avatar
Phil Hughes committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
      const spy = jasmine.createSpy();
      model.onChange(spy);

      model.getModel().setValue('123');

      setTimeout(() => {
        expect(spy).toHaveBeenCalledWith(model, jasmine.anything());
        done();
      });
    });
  });

  describe('dispose', () => {
    it('calls disposable dispose', () => {
      spyOn(model.disposable, 'dispose').and.callThrough();

      model.dispose();

      expect(model.disposable.dispose).toHaveBeenCalled();
    });

    it('clears events', () => {
      model.onChange(() => {});

      expect(model.events.size).toBe(1);

      model.dispose();

      expect(model.events.size).toBe(0);
    });

    it('removes eventHub listener', () => {
      spyOn(eventHub, '$off').and.callThrough();

      model.dispose();

123
      expect(eventHub.$off).toHaveBeenCalledWith(
Phil Hughes's avatar
Phil Hughes committed
124
        `editor.update.model.dispose.${model.file.key}`,
125 126
        jasmine.anything(),
      );
Phil Hughes's avatar
Phil Hughes committed
127
    });
128 129 130 131 132 133 134 135 136 137

    it('calls onDispose callback', () => {
      const disposeSpy = jasmine.createSpy();

      model.onDispose(disposeSpy);

      model.dispose();

      expect(disposeSpy).toHaveBeenCalled();
    });
Phil Hughes's avatar
Phil Hughes committed
138 139
  });
});