summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/services/mail_service.spec.js
blob: 31e130fa76d0605e77dbffc6453f330af9bf2f5e (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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/*global jasmine */
/*global Smail */
'use strict';

describeComponent('services/mail_service', function () {

  var email1, i18n;

  beforeEach( function () {
    setupComponent();
    email1 = Smail.testData().parsedMail.simpleTextPlain;
    i18n = require('views/i18n');
  } );

  it('marks the desired message as read', function () {
    var readRequest = spyOn($, 'ajax').andReturn({});

    this.component.trigger(Smail.events.mail.read, {ident: 1});

    expect(readRequest.mostRecentCall.args[0]).toEqual('/mail/1/read');
  });

  describe('when marks many emails as read', function () {
    var readRequest, checkedMails, uncheckedEmailsEvent, setCheckAllEvent, doneMarkAsRead;

    beforeEach(function () {
      readRequest = spyOn($, 'ajax').andReturn({done: function(f) { doneMarkAsRead = f; return {fail: function() {}};}});
      uncheckedEmailsEvent = spyOnEvent(document, Smail.events.ui.mail.unchecked);
      setCheckAllEvent = spyOnEvent(document, Smail.events.ui.mails.hasMailsChecked);
      spyOn(this.component, 'refreshResults');

      checkedMails = {
        1: {ident: 1},
        2: {ident: 2}
      };

      this.component.trigger(Smail.events.mail.read, {checkedMails: checkedMails});
    });

    it('makes the correct request to the backend', function () {
      expect(readRequest.mostRecentCall.args[0]).toEqual('/mails/read');
      expect(readRequest.mostRecentCall.args[1].data).toEqual({idents: '[1,2]'});
    });

    it('will trigger that a message has been deleted when it is done deleting', function() {
      doneMarkAsRead({mails: checkedMails});
      expect(this.component.refreshResults).toHaveBeenCalled();
    });

    it('unchecks read emails', function () {
      doneMarkAsRead({mails: checkedMails});
      expect(uncheckedEmailsEvent).toHaveBeenTriggeredOnAndWith(document, {mails: checkedMails});
    });

    it('clears the check all checkbox', function () {
      doneMarkAsRead({mails: checkedMails});
      expect(setCheckAllEvent).toHaveBeenTriggeredOnAndWith(document, false);
    });
  });

  it('fetches a single email', function () {
    var me = {};
    var spyAjax = spyOn($, 'ajax').andReturn({done: function(f) { f(email1); return {fail: function() {}};}});
    var mailHereEvent = spyOnEvent(me, Smail.events.mail.here);

    this.component.trigger(Smail.events.mail.want, { caller: me, mail: email1.ident });

    expect(mailHereEvent).toHaveBeenTriggeredOn(me);
    expect(spyAjax.mostRecentCall.args[0]).toEqual('/mail/' + email1.ident);
  });

  it('answers mail:notFound if mail returned from server is null', function () {
    var me = {};
    var spyAjax = spyOn($, 'ajax').andReturn({done: function(f) { f(null); return {fail: function() {}};}});
    var mailNotFound = spyOnEvent(me, Smail.events.mail.notFound);

    this.component.trigger(Smail.events.mail.want, { caller: me, mail: email1.ident });

    expect(mailNotFound).toHaveBeenTriggeredOn(me);
  });

  it('updates the tags of the desired message', function () {
    spyOn(this.component, 'refreshResults');
    var spyAjax = spyOn($, 'ajax').andReturn({done: function(f) { f(); return {fail: function() {}};}});

    var spyEvent = spyOnEvent(document, Smail.events.mail.tags.updated);
    var component = jasmine.createSpyObj('component',['successUpdateTags']);
    spyOn(this.component, 'fetchMail');

    this.component.trigger(Smail.events.mail.tags.update, { ident: email1.ident, tags: email1.tags });

    expect(spyEvent).toHaveBeenTriggeredOn(document);
    expect(spyAjax.calls[0].args[0]).toEqual('/mail/1/tags');
    expect(spyAjax.calls[0].args[1].data).toEqual(JSON.stringify({ newtags: email1.tags } ));
    expect(this.component.refreshResults).toHaveBeenCalled();
  });

  it('triggers an error message when it can\'t update the tags', function () {
    var spyAjax = spyOn($, 'ajax').andReturn({done: function() { return {fail: function(f) {f();}};}});

    var spyEvent = spyOnEvent(document, Smail.events.ui.userAlerts.displayMessage);
    var component = jasmine.createSpyObj('component',['failureUpdateTags']);

    this.component.trigger(Smail.events.mail.tags.update, { ident: email1.ident, tags: email1.tags });

    expect(spyEvent).toHaveBeenTriggeredOn(document);
    expect(spyAjax.mostRecentCall.args[0]).toEqual('/mail/1/tags');
    expect(spyAjax.mostRecentCall.args[1].data).toEqual(JSON.stringify({ newtags: email1.tags } ));
  });

  it('will try to delete a message when requested to', function() {
    var spyAjax = spyOn($, 'ajax').andReturn({done: function() { return {fail: function(f) {}};}});
    this.component.trigger(Smail.events.mail.delete, {mail: {ident: '43'}});
    expect(spyAjax).toHaveBeenCalled();
    expect(spyAjax.mostRecentCall.args[0]).toEqual('/mail/43');
    expect(spyAjax.mostRecentCall.args[1].type).toEqual('DELETE');
  });

  describe('when successfuly deletes an email', function () {
    var displayMessageEvent, uncheckedEmailsEvent, setCheckAllEvent, mailsDeletedEvent;

    beforeEach(function () {
      displayMessageEvent = spyOnEvent(document, Smail.events.ui.userAlerts.displayMessage);
      uncheckedEmailsEvent = spyOnEvent(document, Smail.events.ui.mail.unchecked);
      setCheckAllEvent = spyOnEvent(document, Smail.events.ui.mails.hasMailsChecked);
      mailsDeletedEvent = spyOnEvent(document, Smail.events.mail.deleted);
      spyOn(this.component, 'refreshResults');

      this.component.triggerDeleted({
        successMessage: 'A success message',
        mails: {1: 'email 1', 2: 'email 2'}
      })();
    });

    it('will trigger that a message has been deleted when it is done deleting', function() {
      expect(this.component.refreshResults).toHaveBeenCalled();
    });

    it('displays a success message', function () {
      expect(displayMessageEvent).toHaveBeenTriggeredOnAndWith(document, {message: 'A success message'});
    });

    it('unchecks deleted emails', function () {
      expect(uncheckedEmailsEvent).toHaveBeenTriggeredOnAndWith(document, { mails: {1: 'email 1', 2: 'email 2'} });
    });

    it('tells about deleted emails', function () {
      expect(mailsDeletedEvent).toHaveBeenTriggeredOnAndWith(document, { mails: {1: 'email 1', 2: 'email 2'} });
    });

    it('clears the check all checkbox', function () {
      expect(setCheckAllEvent).toHaveBeenTriggeredOnAndWith(document, false);
    });
  });

  it('will trigger an error message when a message cannot be deleted', function() {
    spyOn($, 'ajax').andReturn({done: function() { return {fail: function(f) { f(); }};}});
    var spyEvent = spyOnEvent(document, Smail.events.ui.userAlerts.displayMessage);

    this.component.trigger(Smail.events.mail.delete, {mail: {ident: '43'}});

    expect(spyEvent).toHaveBeenTriggeredOnAndWith(document, {message: i18n('Could not delete email')} );
  });

  it('triggers mails:available with received mails and keeps that tag as the current tag', function() {
    var g;
    var eventSpy = spyOnEvent(document, Smail.events.mails.available);

    spyOn($, 'ajax').andReturn({done: function(f) { g = f; return {fail: function(){}};}});
    this.component.trigger(Smail.events.ui.mails.fetchByTag, {tag: 'inbox'});

    g({stats: {}, mails: [email1]});
    expect(eventSpy.mostRecentCall.data.stats).toEqual({});
    expect(eventSpy.mostRecentCall.data.tag).toEqual('inbox');
    expect(this.component.attr.currentTag).toEqual('inbox');
  });

  it('wraps the tag in quotes before fetching by tag (to support tags with spaces)', function () {
    spyOn($, 'ajax').andReturn({done: function(f) { return {fail: function(){}};}});

    this.component.trigger(Smail.events.ui.mails.fetchByTag, {tag: 'new tag'});

    expect($.ajax.mostRecentCall.args[0]).toContain(encodeURI('tag:"new tag"'));
  });

  it('sends the previous tag when mails:refresh is called without a tag (this happens when the refresher calls it)', function () {
    var g;
    var eventSpy = spyOnEvent(document, Smail.events.mails.availableForRefresh);
    this.component.attr.currentTag = 'sent';

    spyOn($, 'ajax').andReturn({done: function(f) { g = f; return {fail: function(){}};}});
    this.component.trigger(Smail.events.ui.mails.refresh);

    g({stats: {}, mails: [email1]});
    expect(eventSpy.mostRecentCall.data.tag).toEqual('sent');
    expect(eventSpy.mostRecentCall.data.stats).toEqual({});
  });

  describe('pagination', function() {
    var pageChangedEvent;
    var g;

    beforeEach(function () {
      pageChangedEvent = spyOnEvent(document, Smail.events.ui.page.changed);
      spyOn($, 'ajax').andReturn({done: function(f) {
        g = f;
        return {fail: function(){}};
      }});
      spyOn(this.component, 'fetchMail').andCallThrough();
    });

    it('changes to the previous page and refetch email when ui:page:previous is fired', function() {
      this.component.attr.currentPage = 1;

      this.component.trigger(Smail.events.ui.page.previous);

      expect(this.component.fetchMail).toHaveBeenCalled();
      expect(this.component.attr.currentPage).toEqual(0);
    });

    it('won\'t change the page if it was already at the first page and trying to go to previous', function() {
      this.component.attr.currentPage = 0;

      this.component.trigger(Smail.events.ui.page.previous);

      expect(this.component.fetchMail).not.toHaveBeenCalled();
      expect(this.component.attr.currentPage).toEqual(0);
    });

    it('changes to the next page and refetch email when ui:page:next is fired', function() {
      this.component.attr.numPages = 10;
      this.component.attr.currentPage = 1;

      this.component.trigger(Smail.events.ui.page.next);

      expect(this.component.fetchMail).toHaveBeenCalled();
      expect(this.component.attr.currentPage).toEqual(2);
    });

    it('won\'t change the page if it was already at the first page and trying to go to previous', function() {
      this.component.attr.numPages = 10;
      this.component.attr.currentPage = 9;

      this.component.trigger(Smail.events.ui.page.next);

      expect(this.component.fetchMail).not.toHaveBeenCalled();
      expect(this.component.attr.currentPage).toEqual(9);
    });


    it('triggers pageChanged event when going to next page', function() {
      this.component.attr.numPages = 10;
      this.component.trigger(Smail.events.ui.page.next);

      expect(pageChangedEvent).toHaveBeenTriggeredOnAndWith(document, {currentPage: 1, numPages: 10});
    });

    it('triggers pageChanged event when going to previous page', function() {
      this.component.attr.numPages = 10;
      this.component.attr.currentPage = 1;
      this.component.trigger(Smail.events.ui.page.previous);

      expect(pageChangedEvent).toHaveBeenTriggeredOnAndWith(document, {currentPage: 0, numPages: 10});
    });

    it('resets currentPage when fetching mails by tag', function() {
      this.component.attr.numPages = 10;
      this.component.attr.currentPage = 999;
      this.component.trigger(Smail.events.ui.mails.fetchByTag, {tag: 'inbox'});

      expect(this.component.attr.currentPage).toEqual(0);
      expect(pageChangedEvent).toHaveBeenTriggeredOnAndWith(document, {currentPage: 0, numPages: 10});
    });

    describe('total page numbers', function() {
      var mailSetData = {
        tag: 'inbox',
        stats: { },
        mails: [],
        timing: {}
      };

      it('should have 5 pages with a 100 results and w 20', function() {
        mailSetData.stats.total = 100;
        this.component.attr.w = 20;
        this.component.attr.numPages = 0;

        this.component.trigger(Smail.events.ui.mails.fetchByTag, {tag: 'another tag'});

        g(mailSetData);
        expect(this.component.attr.numPages).toBe(5);
      });

      it('should have 6 pages with a 101 results and w 20', function() {
        mailSetData.stats.total = 101;
        this.component.attr.w = 20;
        this.component.attr.numPages = 0;

        this.component.trigger(Smail.events.ui.mails.fetchByTag, {tag: 'another tag'});

        g(mailSetData);
        expect(this.component.attr.numPages).toBe(6);
      });
    });

  });
});