summaryrefslogtreecommitdiff
path: root/spec/javascripts/ide/lib/common/model_manager_spec.js
blob: c00d590c580fd5610a23bb987f4eba8c2fd14383 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* global monaco */
import eventHub from '~/ide/eventhub';
import monacoLoader from '~/ide/monaco_loader';
import ModelManager from '~/ide/lib/common/model_manager';
import { file } from '../../helpers';

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

  beforeEach(done => {
    monacoLoader(['vs/editor/editor.main'], () => {
      instance = new ModelManager(monaco);

      done();
    });
  });

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

  describe('addModel', () => {
    it('caches model', () => {
      instance.addModel(file());

      expect(instance.models.size).toBe(1);
    });

    it('caches model by file path', () => {
      const f = file('path-name');
      instance.addModel(f);

      expect(instance.models.keys().next().value).toBe(f.key);
    });

    it('adds model into disposable', () => {
      spyOn(instance.disposable, 'add').and.callThrough();

      instance.addModel(file());

      expect(instance.disposable.add).toHaveBeenCalled();
    });

    it('returns cached model', () => {
      spyOn(instance.models, 'get').and.callThrough();

      instance.addModel(file());
      instance.addModel(file());

      expect(instance.models.get).toHaveBeenCalled();
    });

    it('adds eventHub listener', () => {
      const f = file();
      spyOn(eventHub, '$on').and.callThrough();

      instance.addModel(f);

      expect(eventHub.$on).toHaveBeenCalledWith(
        `editor.update.model.dispose.${f.key}`,
        jasmine.anything(),
      );
    });
  });

  describe('hasCachedModel', () => {
    it('returns false when no models exist', () => {
      expect(instance.hasCachedModel('path')).toBeFalsy();
    });

    it('returns true when model exists', () => {
      const f = file('path-name');

      instance.addModel(f);

      expect(instance.hasCachedModel(f.key)).toBeTruthy();
    });
  });

  describe('getModel', () => {
    it('returns cached model', () => {
      instance.addModel(file('path-name'));

      expect(instance.getModel('path-name')).not.toBeNull();
    });
  });

  describe('removeCachedModel', () => {
    let f;

    beforeEach(() => {
      f = file();

      instance.addModel(f);
    });

    it('clears cached model', () => {
      instance.removeCachedModel(f);

      expect(instance.models.size).toBe(0);
    });

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

      instance.removeCachedModel(f);

      expect(eventHub.$off).toHaveBeenCalledWith(
        `editor.update.model.dispose.${f.key}`,
        jasmine.anything(),
      );
    });
  });

  describe('dispose', () => {
    it('clears cached models', () => {
      instance.addModel(file());

      instance.dispose();

      expect(instance.models.size).toBe(0);
    });

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

      instance.dispose();

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