Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ngDialog_close.js « unit « tests « ng-dialog « node_modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8a2ed74a075ebebd081801b494ce0dedf26180d (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
describe('ngDialog', function () {
  'use strict';

  beforeEach(module('ngDialog'));

  var animationEndEvent = 'animationend webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend';
  var $timeout;
  var $document;
  var ngDialog;
  beforeEach(inject(function(_$timeout_, _$document_, _ngDialog_) {
    $timeout = _$timeout_;
    $document = _$document_;
    ngDialog = _ngDialog_;
  }));

  afterEach(inject(function (ngDialog, $document) {
    //ngDialog.closeAll();
  }));

  it('should allow one to close a dialog using just the id, without animation', function() {
    spyOn(ngDialog, 'close').and.callThrough();
    spyOn(ngDialog.__PRIVATE__, 'performCloseDialog').and.callThrough();
    spyOn(ngDialog.__PRIVATE__, 'closeDialogElement').and.callThrough();
    var dialog = ngDialog.open({
      disableAnimation: true
    });
    $timeout.flush();
    var element = angular.element($document[0].getElementById(dialog.id));
    var id = element.attr('id');
    ngDialog.close(id);
    expect(ngDialog.close.calls.count()).toEqual(1);
    expect(ngDialog.__PRIVATE__.performCloseDialog.calls.count()).toEqual(1);
    expect(ngDialog.__PRIVATE__.closeDialogElement.calls.count()).toEqual(1);
    expect(ngDialog.isOpen(id)).toBe(false);
  });

  it('should allow one to close a dialog using just the id, without animation', function() {
    spyOn(ngDialog, 'close').and.callThrough();
    spyOn(ngDialog.__PRIVATE__, 'performCloseDialog').and.callThrough();
    spyOn(ngDialog.__PRIVATE__, 'closeDialogElement').and.callThrough();
    var dialog = ngDialog.open({
      disableAnimation: false
    });
    $timeout.flush();
    var element = angular.element($document[0].getElementById(dialog.id));
    var id = element.attr('id');
    angular.element(element);
    ngDialog.close(id);

    element.triggerHandler('animationend');

    expect(ngDialog.close.calls.count()).toEqual(1);
    expect(ngDialog.__PRIVATE__.performCloseDialog.calls.count()).toEqual(1);
    expect(ngDialog.__PRIVATE__.closeDialogElement.calls.count()).toEqual(1);
    expect(ngDialog.isOpen(id)).toBe(false);
  });
});