Blame view

bower_components/paper-toggle-button/test/basic.html 2.74 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
  <!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-toggle-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-toggle-button.html">
  
    </head>
    <body>
  
      <test-fixture id="Basic">
        <template>
          <paper-toggle-button id="button"></paper-toggle-button>
        </template>
      </test-fixture>
  
      <script>
        suite('defaults', function() {
          var b1;
  
          setup(function() {
            b1 = fixture('Basic');
          });
  
e619a3b0   Luigi Serra   Controllet cross ...
42
          test('check button via click', function(done) {
73bcce88   luigser   COMPONENTS
43
            b1.addEventListener('click', function() {
e619a3b0   Luigi Serra   Controllet cross ...
44
              assert.isTrue(b1.getAttribute('aria-pressed') == 'true');
73bcce88   luigser   COMPONENTS
45
46
47
              assert.isTrue(b1.checked);
              done();
            });
e619a3b0   Luigi Serra   Controllet cross ...
48
            MockInteractions.tap(b1);
73bcce88   luigser   COMPONENTS
49
50
          });
  
e619a3b0   Luigi Serra   Controllet cross ...
51
          test('toggle button via click', function(done) {
73bcce88   luigser   COMPONENTS
52
53
            b1.checked = true;
            b1.addEventListener('click', function() {
e619a3b0   Luigi Serra   Controllet cross ...
54
              assert.isFalse(b1.getAttribute('aria-pressed') == 'true');
73bcce88   luigser   COMPONENTS
55
56
57
              assert.isFalse(b1.checked);
              done();
            });
e619a3b0   Luigi Serra   Controllet cross ...
58
            MockInteractions.tap(b1);
73bcce88   luigser   COMPONENTS
59
60
          });
  
e619a3b0   Luigi Serra   Controllet cross ...
61
          test('disabled button cannot be clicked', function(done) {
73bcce88   luigser   COMPONENTS
62
            b1.disabled = true;
e619a3b0   Luigi Serra   Controllet cross ...
63
64
65
66
67
            b1.checked = true;
            MockInteractions.tap(b1);
  
            setTimeout(function() {
              assert.isTrue(b1.getAttribute('aria-pressed') == 'true');
73bcce88   luigser   COMPONENTS
68
69
              assert.isTrue(b1.checked);
              done();
e619a3b0   Luigi Serra   Controllet cross ...
70
            }, 1);
73bcce88   luigser   COMPONENTS
71
72
73
74
75
76
77
78
79
80
81
82
83
84
          });
        });
  
        suite('a11y', function() {
          var b1;
  
          setup(function() {
            b1 = fixture('Basic');
          });
  
          test('has aria role "button"', function() {
            console.log(b1.getAttribute('role'));
            assert.isTrue(b1.getAttribute('role') == 'button');
          });
e619a3b0   Luigi Serra   Controllet cross ...
85
86
  
          a11ySuite('Basic');
73bcce88   luigser   COMPONENTS
87
88
89
90
        });
      </script>
    </body>
  </html>