aboutsummaryrefslogtreecommitdiffstats
path: root/test/service/deferSpec.js
blob: ff48c93ef05d38cd7272fe02b80eb21a37552594 (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
'use strict';

describe('$defer', function() {
  var scope, $browser, $defer, $exceptionHandler;

  beforeEach(function() {
    scope = angular.scope(angular.service,
                          {'$exceptionHandler': jasmine.createSpy('$exceptionHandler')});
    $browser = scope.$service('$browser');
    $defer = scope.$service('$defer');
    $exceptionHandler = scope.$service('$exceptionHandler');
  });

  afterEach(function() {
    dealoc(scope);
  });


  it('should delegate functions to $browser.defer', function() {
    var counter = 0;
    $defer(function() { counter++; });

    expect(counter).toBe(0);

    $browser.defer.flush();
    expect(counter).toBe(1);

    $browser.defer.flush(); //does nothing
    expect(counter).toBe(1);

    expect($exceptionHandler).not.toHaveBeenCalled();
  });


  it('should delegate exception to the $exceptionHandler service', function() {
    $defer(function() {throw "Test Error";});
    expect($exceptionHandler).not.toHaveBeenCalled();

    $browser.defer.flush();
    expect($exceptionHandler).toHaveBeenCalledWith("Test Error");
  });


  it('should call $apply after each callback is executed', function() {
    var applySpy = this.spyOn(scope, '$apply').andCallThrough();

    $defer(function() {});
    expect(applySpy).not.toHaveBeenCalled();

    $browser.defer.flush();
    expect(applySpy).toHaveBeenCalled();

    applySpy.reset(); //reset the spy;

    $defer(function() {});
    $defer(function() {});
    $browser.defer.flush();
    expect(applySpy.callCount).toBe(2);
  });


  it('should call $apply even if an exception is thrown in callback', function() {
    var applySpy = this.spyOn(scope, '$apply').andCallThrough();

    $defer(function() {throw "Test Error";});
    expect(applySpy).not.toHaveBeenCalled();

    $browser.defer.flush();
    expect(applySpy).toHaveBeenCalled();
  });


  it('should allow you to specify the delay time', function() {
    var defer = this.spyOn($browser, 'defer');
    $defer(noop, 123);
    expect(defer.callCount).toEqual(1);
    expect(defer.mostRecentCall.args[1]).toEqual(123);
  });


  it('should return a cancelation token', function() {
    var defer = this.spyOn($browser, 'defer').andReturn('xxx');
    expect($defer(noop)).toEqual('xxx');
  });


  describe('cancel', function() {
    it('should cancel tasks', function() {
      var task1 = jasmine.createSpy('task1'),
          task2 = jasmine.createSpy('task2'),
          task3 = jasmine.createSpy('task3'),
          token1, token3;

      token1 = $defer(task1);
      $defer(task2);
      token3 = $defer(task3, 333);

      $defer.cancel(token3);
      $defer.cancel(token1);
      $browser.defer.flush();

      expect(task1).not.toHaveBeenCalled();
      expect(task2).toHaveBeenCalledOnce();
      expect(task3).not.toHaveBeenCalled();
    });


    it('should return true if a task was succesffuly canceled', function() {
      var task1 = jasmine.createSpy('task1'),
          task2 = jasmine.createSpy('task2'),
          token1, token2;

      token1 = $defer(task1);
      $browser.defer.flush();
      token2 = $defer(task2);

      expect($defer.cancel(token1)).toBe(false);
      expect($defer.cancel(token2)).toBe(true);
    });
  });
});