summaryrefslogtreecommitdiffstats
path: root/js/vendor/angular-ui/modules/directives/mask/test/maskSpec.js
blob: afbdbfb1eb7fac88aac1b4bb4841d93475e0dbd6 (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
xdescribe('uiMask', function () {

  var inputHtml = "<input ui-mask=\"'(9)9'\" ng-model='x'>";
  var $compile, $rootScope, element;

  beforeEach(module('ui.directives'));
  beforeEach(inject(function (_$rootScope_, _$compile_) {
    $rootScope = _$rootScope_;
    $compile = _$compile_;
  }));

  describe('ui changes on model changes', function () {
    it('should update ui valid model value', function () {
      $rootScope.x = undefined;
      element = $compile(inputHtml)($rootScope);
      $rootScope.$digest();
      expect(element.val()).toBe('');
      $rootScope.$apply(function () {
        $rootScope.x = 12;
      });
      expect(element.val()).toBe('(1)2');
    });
    it('should wipe out ui on invalid model value', function () {
      $rootScope.x = 12;
      element = $compile(inputHtml)($rootScope);
      $rootScope.$digest();
      expect(element.val()).toBe('(1)2');
      $rootScope.$apply(function () {
        $rootScope.x = 1;
      });
      expect(element.val()).toBe('');
    });
  });

  describe('model binding on ui change', function () {
    //TODO: was having har time writing those tests, will open a separate issue for those
  });

  describe('should fail', function() {
    it('errors on missing quotes', function() {
      $rootScope.x = 42;
      var errorInputHtml = "<input ui-mask=\"(9)9\" ng-model='x'>";
      element = $compile(errorInputHtml)($rootScope);
      expect($rootScope.$digest).toThrow('The Mask widget is not correctly set up');
    });
  });
});