Blame view

bower_components/paper-badge/test/basic.html 6.83 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
  <!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-badge 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>
  
    <link rel="import" href="../../test-fixture/test-fixture.html">
    <link rel="import" href="../paper-badge.html">
    <link rel="import" href="test-button.html">
  
  </head>
  <style>
    body {
      margin: 0;
      padding: 0;
    }
    #target {
      width: 100px;
      height: 20px;
      background-color: red;
    }
  </style>
  <body>
  
    <test-fixture id="basic">
      <template>
        <div style="position:relative">
          <div id="target"></div>
          <paper-badge for="target" label="1"></paper-badge>
        </div>
      </template>
    </test-fixture>
  
    <test-fixture id="dynamic">
      <template>
        <div>
          <div id="target"></div>
          <paper-badge label="1"></paper-badge>
        </div>
      </template>
    </test-fixture>
  
eb240478   Luigi Serra   public room cards...
57
58
59
60
61
62
63
64
65
66
    <test-fixture id="nested">
      <template>
        <div>
          <div id="target">
            <paper-badge label="1"></paper-badge>
          </div>
        </div>
      </template>
    </test-fixture>
  
73bcce88   luigser   COMPONENTS
67
68
69
70
71
72
73
74
75
76
77
78
79
80
    <test-fixture id="custom">
      <template>
        <test-button></test-button>
      </template>
    </test-fixture>
  
    <script>
      suite('basic', function() {
        test('badge is positioned correctly', function(done) {
          var f = fixture('basic');
          var badge = f.querySelector('paper-badge');
          var actualbadge = Polymer.dom(badge.root).querySelector('#badge');
          assert.equal(actualbadge.textContent, "1");
  
eb240478   Luigi Serra   public room cards...
81
82
          expect(badge.target.getAttribute('id')).to.be.equal('target');
  
73bcce88   luigser   COMPONENTS
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
          badge.updatePosition();
  
          Polymer.Base.async(function() {
            var divRect = f.querySelector('#target').getBoundingClientRect();
            expect(divRect.width).to.be.equal(100);
            expect(divRect.height).to.be.equal(20);
  
            var contentRect = badge.getBoundingClientRect();
            expect(contentRect.width).to.be.equal(22);
            expect(contentRect.height).to.be.equal(22);
  
            // The target div is 100 x 20, and the badge is centered on the
            // top right corner.
            expect(contentRect.left).to.be.equal(100 - 11);
            expect(contentRect.top).to.be.equal(0 - 11);
  
            // Also check the math, just in case.
            expect(contentRect.left).to.be.equal(divRect.width - 11);
            expect(contentRect.top).to.be.equal(divRect.top - 11);
  
            done();
          });
        });
  
        test('badge is positioned correctly after being dynamically set', function(done) {
          var f = fixture('dynamic');
          var badge = f.querySelector('paper-badge');
          badge.updatePosition();
  
eb240478   Luigi Serra   public room cards...
112
113
          expect(badge.target.getAttribute('id')).to.not.be.equal('target');
  
73bcce88   luigser   COMPONENTS
114
115
116
117
118
          Polymer.Base.async(function() {
            var contentRect = badge.getBoundingClientRect();
            expect(contentRect.left).to.not.be.equal(100 - 11);
  
            badge.for = 'target';
eb240478   Luigi Serra   public room cards...
119
120
            expect(badge.target.getAttribute('id')).to.be.equal('target');
  
73bcce88   luigser   COMPONENTS
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
            badge.updatePosition();
  
            Polymer.Base.async(function() {
              var divRect = f.querySelector('#target').getBoundingClientRect();
              expect(divRect.width).to.be.equal(100);
              expect(divRect.height).to.be.equal(20);
  
              var contentRect = badge.getBoundingClientRect();
              expect(contentRect.width).to.be.equal(22);
              expect(contentRect.height).to.be.equal(22);
  
              // The target div is 100 x 20, and the badge is centered on the
              // top right corner.
              expect(contentRect.left).to.be.equal(100 - 11);
              expect(contentRect.top).to.be.equal(0 - 11);
  
              // Also check the math, just in case.
              expect(contentRect.left).to.be.equal(divRect.width - 11);
              expect(contentRect.top).to.be.equal(divRect.top - 11);
  
              done();
            });
          });
        });
  
eb240478   Luigi Serra   public room cards...
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
      test('badge is positioned correctly when nested in a target element', function(done) {
          var f = fixture('nested');
          var badge = f.querySelector('paper-badge');
  
          expect(badge.target.getAttribute('id')).to.be.equal('target');
  
          badge.updatePosition();
  
          Polymer.Base.async(function() {
            var divRect = f.querySelector('#target').getBoundingClientRect();
            expect(divRect.width).to.be.equal(100);
            expect(divRect.height).to.be.equal(20);
  
            var contentRect = badge.getBoundingClientRect();
            expect(contentRect.width).to.be.equal(22);
            expect(contentRect.height).to.be.equal(22);
  
            // The target div is 100 x 20, and the badge is centered on the
            // top right corner.
            expect(contentRect.left).to.be.equal(100 - 11);
            expect(contentRect.top).to.be.equal(0 - 11);
  
            // Also check the math, just in case.
            expect(contentRect.left).to.be.equal(divRect.width - 11);
            expect(contentRect.top).to.be.equal(divRect.top - 11);
  
            done();
          });
        });
  
73bcce88   luigser   COMPONENTS
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
208
209
210
        suite('badge is inside a custom element', function() {
          test('badge is positioned correctly', function(done) {
            var f = fixture('custom');
            var badge = f.$.badge;
            var actualbadge = Polymer.dom(badge.root).querySelector('#badge');
            assert.equal(actualbadge.textContent, "1");
  
            badge.updatePosition();
  
            Polymer.Base.async(function() {
              var divRect = f.$.button.getBoundingClientRect();
              expect(divRect.width).to.be.equal(100);
              expect(divRect.height).to.be.equal(20);
  
              var contentRect = badge.getBoundingClientRect();
              expect(contentRect.width).to.be.equal(22);
              expect(contentRect.height).to.be.equal(22);
  
              // The target div is 100 x 20, and the badge is centered on the
              // top right corner.
              expect(contentRect.left).to.be.equal(100 - 11);
              expect(contentRect.top).to.be.equal(0 - 11);
  
              // Also check the math, just in case.
              expect(contentRect.left).to.be.equal(divRect.width - 11);
              expect(contentRect.top).to.be.equal(divRect.top - 11);
  
              done();
            });
          });
        });
      });
    </script>
  </body>
  </html>