~didrocks/+junk/face-detection-15.04

« back to all changes in this revision

Viewing changes to facedetection/www/bower_components/paper-radio-button/test/basic.html

  • Committer: Didier Roche
  • Date: 2016-05-10 23:09:11 UTC
  • Revision ID: didier.roche@canonical.com-20160510230911-c7xr490zrj3yrzxd
New version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!doctype html>
 
2
<!--
 
3
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
 
4
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
 
5
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
 
6
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
 
7
Code distributed by Google as part of the polymer project is also
 
8
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
 
9
-->
 
10
<html>
 
11
<head>
 
12
  <meta charset="UTF-8">
 
13
  <title>paper-radio-button basic tests</title>
 
14
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
 
15
 
 
16
  <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
 
17
  <script src="../../web-component-tester/browser.js"></script>
 
18
  <script src="../../test-fixture/test-fixture-mocha.js"></script>
 
19
  <script src="../../iron-test-helpers/mock-interactions.js"></script>
 
20
 
 
21
  <link rel="import" href="../../test-fixture/test-fixture.html">
 
22
  <link rel="import" href="../paper-radio-button.html">
 
23
 
 
24
</head>
 
25
<body>
 
26
 
 
27
  <test-fixture id="NoLabel">
 
28
    <template>
 
29
      <paper-radio-button id="radio1"></paper-radio-button>
 
30
    </template>
 
31
  </test-fixture>
 
32
 
 
33
  <test-fixture id="WithLabel">
 
34
    <template>
 
35
      <paper-radio-button id="radio2">Batman</paper-radio-button>
 
36
    </template>
 
37
  </test-fixture>
 
38
 
 
39
  <test-fixture id="AriaLabel">
 
40
    <template>
 
41
      <paper-radio-button aria-label="Batman">Robin</paper-radio-button>
 
42
    </template>
 
43
  </test-fixture>
 
44
 
 
45
  <script>
 
46
    suite('defaults', function() {
 
47
      var r1;
 
48
 
 
49
      setup(function() {
 
50
        r1 = fixture('NoLabel');
 
51
      });
 
52
 
 
53
      test('check button via click', function(done) {
 
54
        r1.addEventListener('click', function() {
 
55
          assert.isTrue(r1.getAttribute('aria-checked') == 'true');
 
56
          assert.isTrue(r1.checked);
 
57
          done();
 
58
        });
 
59
        MockInteractions.tap(r1);
 
60
      });
 
61
 
 
62
      test('toggle button via click', function(done) {
 
63
        r1.checked = true;
 
64
        r1.addEventListener('click', function() {
 
65
          assert.isFalse(r1.getAttribute('aria-checked') == 'true');
 
66
          assert.isFalse(r1.checked);
 
67
          done();
 
68
        });
 
69
        MockInteractions.tap(r1);
 
70
      });
 
71
 
 
72
      test('disabled button cannot be clicked', function(done) {
 
73
        r1.disabled = true;
 
74
        r1.checked = true;
 
75
        MockInteractions.tap(r1);
 
76
 
 
77
        setTimeout(function() {
 
78
          assert.isTrue(r1.getAttribute('aria-checked') == 'true');
 
79
          assert.isTrue(r1.checked);
 
80
          done();
 
81
        }, 1);
 
82
      });
 
83
    });
 
84
 
 
85
    suite('a11y', function() {
 
86
      var r1;
 
87
      var r2;
 
88
 
 
89
      setup(function() {
 
90
        r1 = fixture('NoLabel');
 
91
        r2 = fixture('WithLabel');
 
92
      });
 
93
 
 
94
      test('has aria role "radio"', function() {
 
95
        assert.isTrue(r1.getAttribute('role') == 'radio');
 
96
        assert.isTrue(r2.getAttribute('role') == 'radio');
 
97
      });
 
98
 
 
99
      test('button with no label has no aria label', function() {
 
100
        assert.isTrue(!r1.getAttribute('aria-label'));
 
101
      });
 
102
      
 
103
      test('button respects the user set aria-label', function() {
 
104
        var c = fixture('AriaLabel');
 
105
        assert.isTrue(c.getAttribute('aria-label') == "Batman");
 
106
      });
 
107
 
 
108
      a11ySuite('NoLabel');
 
109
      a11ySuite('WithLabel');
 
110
      a11ySuite('AriaLabel');
 
111
    });
 
112
  </script>
 
113
</body>
 
114
</html>