summaryrefslogtreecommitdiff
path: root/spec/javascripts/diff_comments_store_spec.js.es6
blob: 18805d26ac0229342853c0ebe40313735a3406ed (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
/* eslint-disable no-extra-semi, jasmine/no-global-setup, dot-notation, jasmine/no-expect-in-setup-teardown, max-len */
/* global CommentsStore */

//= require vue
//= require diff_notes/models/discussion
//= require diff_notes/models/note
//= require diff_notes/stores/comments

(() => {
  function createDiscussion(noteId = 1, resolved = true) {
    CommentsStore.create('a', noteId, true, resolved, 'test');
  };

  beforeEach(() => {
    CommentsStore.state = {};
  });

  describe('New discussion', () => {
    it('creates new discussion', () => {
      expect(Object.keys(CommentsStore.state).length).toBe(0);
      createDiscussion();
      expect(Object.keys(CommentsStore.state).length).toBe(1);
    });

    it('creates new note in discussion', () => {
      createDiscussion();
      createDiscussion(2);

      const discussion = CommentsStore.state['a'];
      expect(Object.keys(discussion.notes).length).toBe(2);
    });
  });

  describe('Get note', () => {
    beforeEach(() => {
      expect(Object.keys(CommentsStore.state).length).toBe(0);
      createDiscussion();
    });

    it('gets note by ID', () => {
      const note = CommentsStore.get('a', 1);
      expect(note).toBeDefined();
      expect(note.id).toBe(1);
    });
  });

  describe('Delete discussion', () => {
    beforeEach(() => {
      expect(Object.keys(CommentsStore.state).length).toBe(0);
      createDiscussion();
    });

    it('deletes discussion by ID', () => {
      CommentsStore.delete('a', 1);
      expect(Object.keys(CommentsStore.state).length).toBe(0);
    });

    it('deletes discussion when no more notes', () => {
      createDiscussion();
      createDiscussion(2);
      expect(Object.keys(CommentsStore.state).length).toBe(1);
      expect(Object.keys(CommentsStore.state['a'].notes).length).toBe(2);

      CommentsStore.delete('a', 1);
      CommentsStore.delete('a', 2);
      expect(Object.keys(CommentsStore.state).length).toBe(0);
    });
  });

  describe('Update note', () => {
    beforeEach(() => {
      expect(Object.keys(CommentsStore.state).length).toBe(0);
      createDiscussion();
    });

    it('updates note to be unresolved', () => {
      CommentsStore.update('a', 1, false, 'test');

      const note = CommentsStore.get('a', 1);
      expect(note.resolved).toBe(false);
    });
  });

  describe('Discussion resolved', () => {
    beforeEach(() => {
      expect(Object.keys(CommentsStore.state).length).toBe(0);
      createDiscussion();
    });

    it('is resolved with single note', () => {
      const discussion = CommentsStore.state['a'];
      expect(discussion.isResolved()).toBe(true);
    });

    it('is unresolved with 2 notes', () => {
      const discussion = CommentsStore.state['a'];
      createDiscussion(2, false);

      expect(discussion.isResolved()).toBe(false);
    });

    it('is resolved with 2 notes', () => {
      const discussion = CommentsStore.state['a'];
      createDiscussion(2);

      expect(discussion.isResolved()).toBe(true);
    });

    it('resolve all notes', () => {
      const discussion = CommentsStore.state['a'];
      createDiscussion(2, false);

      discussion.resolveAllNotes();
      expect(discussion.isResolved()).toBe(true);
    });

    it('unresolve all notes', () => {
      const discussion = CommentsStore.state['a'];
      createDiscussion(2);

      discussion.unResolveAllNotes();
      expect(discussion.isResolved()).toBe(false);
    });
  });
})();