73bcce88
luigser
COMPONENTS
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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>
|
c5169e0e
Renato De Donato
a new hope
|
19
20
21
|
<script src="../../test-fixture/test-fixture-mocha.js"></script>
<link rel="import" href="../../test-fixture/test-fixture.html">
|
73bcce88
luigser
COMPONENTS
|
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
|
<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
|
<test-fixture id="custom">
<template>
<test-button></test-button>
</template>
</test-fixture>
|
73bcce88
luigser
COMPONENTS
|
73
74
75
76
77
|
<script>
suite('basic', function() {
test('badge is positioned correctly', function(done) {
var f = fixture('basic');
var badge = f.querySelector('paper-badge');
|
c5169e0e
Renato De Donato
a new hope
|
78
79
|
var actualbadge = Polymer.dom(badge.root).querySelector('#badge');
assert.equal(actualbadge.textContent, "1");
|
73bcce88
luigser
COMPONENTS
|
80
|
|
eb240478
Luigi Serra
public room cards...
|
81
82
|
expect(badge.target.getAttribute('id')).to.be.equal('target');
|
73bcce88
luigser
COMPONENTS
|
83
84
85
|
badge.updatePosition();
Polymer.Base.async(function() {
|
73bcce88
luigser
COMPONENTS
|
86
87
88
89
90
|
var divRect = f.querySelector('#target').getBoundingClientRect();
expect(divRect.width).to.be.equal(100);
expect(divRect.height).to.be.equal(20);
var contentRect = badge.getBoundingClientRect();
|
c5169e0e
Renato De Donato
a new hope
|
91
92
|
expect(contentRect.width).to.be.equal(22);
expect(contentRect.height).to.be.equal(22);
|
73bcce88
luigser
COMPONENTS
|
93
94
95
|
// The target div is 100 x 20, and the badge is centered on the
// top right corner.
|
c5169e0e
Renato De Donato
a new hope
|
96
97
|
expect(contentRect.left).to.be.equal(100 - 11);
expect(contentRect.top).to.be.equal(0 - 11);
|
73bcce88
luigser
COMPONENTS
|
98
99
|
// Also check the math, just in case.
|
c5169e0e
Renato De Donato
a new hope
|
100
101
|
expect(contentRect.left).to.be.equal(divRect.width - 11);
expect(contentRect.top).to.be.equal(divRect.top - 11);
|
73bcce88
luigser
COMPONENTS
|
102
103
104
105
106
107
108
109
110
111
|
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
|
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();
|
c5169e0e
Renato De Donato
a new hope
|
129
130
|
expect(contentRect.width).to.be.equal(22);
expect(contentRect.height).to.be.equal(22);
|
73bcce88
luigser
COMPONENTS
|
131
132
133
|
// The target div is 100 x 20, and the badge is centered on the
// top right corner.
|
c5169e0e
Renato De Donato
a new hope
|
134
135
|
expect(contentRect.left).to.be.equal(100 - 11);
expect(contentRect.top).to.be.equal(0 - 11);
|
73bcce88
luigser
COMPONENTS
|
136
137
|
// Also check the math, just in case.
|
c5169e0e
Renato De Donato
a new hope
|
138
139
|
expect(contentRect.left).to.be.equal(divRect.width - 11);
expect(contentRect.top).to.be.equal(divRect.top - 11);
|
73bcce88
luigser
COMPONENTS
|
140
141
142
143
144
145
|
done();
});
});
});
|
c5169e0e
Renato De Donato
a new hope
|
146
|
test('badge is positioned correctly when nested in a target element', function(done) {
|
eb240478
Luigi Serra
public room cards...
|
147
148
149
150
151
152
153
154
155
156
157
158
159
|
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();
|
c5169e0e
Renato De Donato
a new hope
|
160
161
|
expect(contentRect.width).to.be.equal(22);
expect(contentRect.height).to.be.equal(22);
|
eb240478
Luigi Serra
public room cards...
|
162
163
164
|
// The target div is 100 x 20, and the badge is centered on the
// top right corner.
|
c5169e0e
Renato De Donato
a new hope
|
165
166
|
expect(contentRect.left).to.be.equal(100 - 11);
expect(contentRect.top).to.be.equal(0 - 11);
|
eb240478
Luigi Serra
public room cards...
|
167
168
|
// Also check the math, just in case.
|
c5169e0e
Renato De Donato
a new hope
|
169
170
|
expect(contentRect.left).to.be.equal(divRect.width - 11);
expect(contentRect.top).to.be.equal(divRect.top - 11);
|
eb240478
Luigi Serra
public room cards...
|
171
172
173
174
175
|
done();
});
});
|
73bcce88
luigser
COMPONENTS
|
176
177
178
179
|
suite('badge is inside a custom element', function() {
test('badge is positioned correctly', function(done) {
var f = fixture('custom');
var badge = f.$.badge;
|
c5169e0e
Renato De Donato
a new hope
|
180
181
|
var actualbadge = Polymer.dom(badge.root).querySelector('#badge');
assert.equal(actualbadge.textContent, "1");
|
73bcce88
luigser
COMPONENTS
|
182
183
184
185
|
badge.updatePosition();
Polymer.Base.async(function() {
|
73bcce88
luigser
COMPONENTS
|
186
187
188
189
190
|
var divRect = f.$.button.getBoundingClientRect();
expect(divRect.width).to.be.equal(100);
expect(divRect.height).to.be.equal(20);
var contentRect = badge.getBoundingClientRect();
|
c5169e0e
Renato De Donato
a new hope
|
191
192
|
expect(contentRect.width).to.be.equal(22);
expect(contentRect.height).to.be.equal(22);
|
73bcce88
luigser
COMPONENTS
|
193
194
195
|
// The target div is 100 x 20, and the badge is centered on the
// top right corner.
|
c5169e0e
Renato De Donato
a new hope
|
196
197
|
expect(contentRect.left).to.be.equal(100 - 11);
expect(contentRect.top).to.be.equal(0 - 11);
|
73bcce88
luigser
COMPONENTS
|
198
199
|
// Also check the math, just in case.
|
c5169e0e
Renato De Donato
a new hope
|
200
201
|
expect(contentRect.left).to.be.equal(divRect.width - 11);
expect(contentRect.top).to.be.equal(divRect.top - 11);
|
73bcce88
luigser
COMPONENTS
|
202
203
204
205
206
207
208
209
210
|
done();
});
});
});
});
</script>
</body>
</html>
|