aboutsummaryrefslogtreecommitdiff
path: root/catapult/third_party/polymer/components/paper-radio-button/test/basic.html
blob: 288f1b2d5b010b6f9799944ae51b0b6b76bb99ed (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
<!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>paper-radio-button basic tests</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">

  <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
  <script src="../../web-component-tester/browser.js"></script>
  <script src="../../test-fixture/test-fixture-mocha.js"></script>
  <script src="../../iron-test-helpers/mock-interactions.js"></script>

  <link rel="import" href="../../test-fixture/test-fixture.html">
  <link rel="import" href="../paper-radio-button.html">

  <style is="custom-style">
    paper-radio-button.tiny {
      --paper-radio-button-size: 5px;
    }
    paper-radio-button.medium {
      --paper-radio-button-size: 37px;
    }
    paper-radio-button.giant {
      --paper-radio-button-size: 50px;
    }
    paper-radio-button.enormous {
      --paper-radio-button-size: 71px;
    }

    paper-radio-button.custom-ink-size {
      --paper-radio-button-size: 25px;
      --paper-radio-button-ink-size: 30px;
    }
  </style>
</head>
<body>
  <test-fixture id="NoLabel">
    <template>
      <paper-radio-button id="radio1"></paper-radio-button>
    </template>
  </test-fixture>

  <test-fixture id="WithLabel">
    <template>
      <paper-radio-button id="radio2">Batman</paper-radio-button>
    </template>
  </test-fixture>

  <test-fixture id="AriaLabel">
    <template>
      <paper-radio-button aria-label="Batman">Robin</paper-radio-button>
    </template>
  </test-fixture>

  <test-fixture id="WithDifferentSizes">
    <template>
      <paper-radio-button class="tiny"></paper-radio-button>
      <paper-radio-button></paper-radio-button>
      <paper-radio-button class="medium"></paper-radio-button>
      <paper-radio-button class="giant"></paper-radio-button>
      <paper-radio-button class="enormous"></paper-radio-button>
    </template>
  </test-fixture>

  <test-fixture id="CustomInkSize">
    <template>
      <paper-radio-button class="custom-ink-size"></paper-radio-button>
    </template>
  </test-fixture>

  <script>
    suite('defaults', function() {
      var r1;

      setup(function() {
        r1 = fixture('NoLabel');
      });

      test('check button via click', function(done) {
        r1.addEventListener('click', function() {
          assert.isTrue(r1.getAttribute('aria-checked') == 'true');
          assert.isTrue(r1.checked);
          done();
        });
        MockInteractions.tap(r1);
      });

      test('toggle button via click', function(done) {
        r1.checked = true;
        r1.addEventListener('click', function() {
          assert.isFalse(r1.getAttribute('aria-checked') == 'true');
          assert.isFalse(r1.checked);
          done();
        });
        MockInteractions.tap(r1);
      });

      test('disabled button cannot be clicked', function(done) {
        r1.disabled = true;
        r1.checked = true;
        MockInteractions.tap(r1);

        setTimeout(function() {
          assert.isTrue(r1.getAttribute('aria-checked') == 'true');
          assert.isTrue(r1.checked);
          done();
        }, 1);
      });

      test('can be styled with different sizes', function() {
        var r2 = fixture('WithDifferentSizes');
        var small = r2[0].getBoundingClientRect();
        var medium = r2[1].getBoundingClientRect();
        var large = r2[2].getBoundingClientRect();

        console.log(small.width, medium.width, large.width);

        assert.isTrue(4 < small.height);
        assert.isTrue(small.height < medium.height);
        assert.isTrue(medium.height < large.height);
        assert.isTrue(large.height < 72);

        assert.isTrue(4 < small.width);
        assert.isTrue(small.width < medium.width);
        assert.isTrue(medium.width < large.width);
        assert.isTrue(large.width < 72);
      });
    });

    suite('ink size', function() {
      var radioButtons;

      setup(function() {
        radioButtons = fixture('WithDifferentSizes');
      });

      test('`--paper-radio-button-ink-size` sets the ink size', function() {
        var radioButton = fixture('CustomInkSize');
        assert.equal(radioButton.getComputedStyleValue('--calculated-paper-radio-button-size').trim(), '25px');
        assert.equal(radioButton.getComputedStyleValue('--calculated-paper-radio-button-ink-size').trim(), '30px');
      });

      test('ink sizes are near (3 * radio button size) by default', function() {
        radioButtons.forEach(function(radioButton) {
          var size = parseFloat(radioButton.getComputedStyleValue('--calculated-paper-radio-button-size'), 10);
          var inkSize = parseFloat(radioButton.getComputedStyleValue('--calculated-paper-radio-button-ink-size'), 10);
          assert.approximately(inkSize / size, 3, 0.1);
        });
      });

      test('ink sizes are integers', function() {
        radioButtons.forEach(function(radioButton) {
          var unparsedInkSize = radioButton.getComputedStyleValue('--calculated-paper-radio-button-ink-size');
          var floatInkSize = parseFloat(unparsedInkSize, 10);
          var intInkSize = parseInt(unparsedInkSize, 10);
          assert.equal(floatInkSize, intInkSize);
        });
      });

      test('ink size parity matches radio button size parity (centers are aligned)', function() {
        radioButtons.forEach(function(radioButton) {
          var size = parseInt(radioButton.getComputedStyleValue('--calculated-paper-radio-button-size'), 10);
          var inkSize = parseInt(radioButton.getComputedStyleValue('--calculated-paper-radio-button-ink-size'), 10);
          assert.equal(size % 2, inkSize % 2);
        });
      });
    });

    suite('a11y', function() {
      var r1;
      var r2;

      setup(function() {
        r1 = fixture('NoLabel');
        r2 = fixture('WithLabel');
      });

      test('has aria role "radio"', function() {
        assert.isTrue(r1.getAttribute('role') == 'radio');
        assert.isTrue(r2.getAttribute('role') == 'radio');
      });

      test('button with no label has no aria label', function() {
        assert.isTrue(!r1.getAttribute('aria-label'));
      });

      test('button respects the user set aria-label', function() {
        var c = fixture('AriaLabel');
        assert.isTrue(c.getAttribute('aria-label') == "Batman");
      });

      a11ySuite('NoLabel');
      a11ySuite('WithLabel');
      a11ySuite('AriaLabel');
    });
  </script>
</body>
</html>