Blame view

bower_components/iron-checked-element-behavior/test/basic.html 3.67 KB
73bcce88   luigser   COMPONENTS
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
  <!doctype html>
  <!--
  @license
  Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
  This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
  The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
  The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
  Code distributed by Google as part of the polymer project is also
  subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
  -->
  <html>
  <head>
    <meta charset="UTF-8">
    <title>iron-checked-element-behavior basic tests</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
  
    <script src="../../webcomponentsjs/webcomponents.js"></script>
    <script src="../../web-component-tester/browser.js"></script>
    <script src="../../test-fixture/test-fixture-mocha.js"></script>
  
    <link href="../../test-fixture/test-fixture.html" rel="import">
    <link href="../../iron-meta/iron-meta.html" rel="import">
    <link href="simple-checkbox.html" rel="import">
  
  </head>
  <body>
  
    <test-fixture id="basic">
      <template>
        <simple-checkbox></simple-checkbox>
      </template>
    </test-fixture>
  
    <test-fixture id="checked">
      <template>
        <simple-checkbox checked></simple-checkbox>
      </template>
    </test-fixture>
  
    <test-fixture id="with-value">
      <template>
        <simple-checkbox value="batman"></simple-checkbox>
      </template>
    </test-fixture>
  
    <script>
  
      suite('basic', function() {
        test('can be checked', function() {
          var c = fixture('basic');
          assert.isFalse(c.checked);
          c.checked = true;
          assert.isTrue(c.checked);
        });
  
        test('can be unchecked', function() {
          var c = fixture('checked');
          assert.isTrue(c.checked);
          c.checked = false;
          assert.isFalse(c.checked);
        });
  
        test('invalid if required and not checked', function() {
          var c = fixture('basic');
          c.required = true;
          assert.isFalse(c.checked);
          assert.isFalse(c.validate());
          assert.isTrue(c.invalid);
        });
  
        test('valid if required and checked', function() {
          var c = fixture('basic');
          c.required = true;
          c.checked = true;
          assert.isTrue(c.checked);
          assert.isTrue(c.validate());
          assert.isFalse(c.invalid);
        });
  
        test('valid if not required and not checked', function() {
          var c = fixture('basic');
          assert.isFalse(c.checked);
          assert.isTrue(c.validate());
          assert.isFalse(c.invalid);
        });
  
c5169e0e   Renato De Donato   a new hope
87
        test('has a default value of "on" when checked', function() {
73bcce88   luigser   COMPONENTS
88
          var c = fixture('basic');
c5169e0e   Renato De Donato   a new hope
89
          assert.isTrue(c.value === '');
73bcce88   luigser   COMPONENTS
90
91
92
93
94
95
96
97
98
99
100
101
  
          c.checked = true;
          assert.isTrue(c.value === 'on');
        });
  
        test('does not stomp over user defined value when checked', function() {
          var c = fixture('with-value');
          assert.isTrue(c.value === 'batman');
  
          c.checked = true;
          assert.isTrue(c.value === 'batman');
        });
73bcce88   luigser   COMPONENTS
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
      });
  
      suite('a11y', function() {
        test('setting `required` sets `aria-required=true`', function() {
          var c = fixture('basic');
          c.required = true;
          assert.equal(c.getAttribute('aria-required'), 'true');
          c.required = false;
          assert.isFalse(c.hasAttribute('aria-required'));
        });
  
        test('setting `invalid` sets `aria-invalid=true`', function() {
          var c = fixture('basic');
          c.invalid = true;
          assert.equal(c.getAttribute('aria-invalid'), 'true');
          c.invalid = false;
          assert.isFalse(c.hasAttribute('aria-invalid'));
        });
      });
  
    </script>
  
  </body>
  </html>