aboutsummaryrefslogtreecommitdiff
path: root/catapult/third_party/polymer/components/paper-ripple/test/paper-ripple.html
blob: 559f9cd35360dae6113e14d553478c9d7028d9b5 (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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<!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-ripple</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="../../iron-test-helpers/mock-interactions.js"></script>

  <link rel="import" href="../paper-ripple.html">

  <style>
    #RippleContainer {
      display: block;
      position: relative;
      width: 100px;
      height: 50px;
    }
  </style>
</head>
<body>
  <test-fixture id="TrivialRipple">
    <template>
      <div id="RippleContainer">
        <paper-ripple></paper-ripple>
      </div>
    </template>
  </test-fixture>

  <test-fixture id="CenteringRipple">
    <template>
      <div id="RippleContainer">
        <paper-ripple center></paper-ripple>
      </div>
    </template>
  </test-fixture>

  <test-fixture id="RecenteringRipple">
    <template>
      <div id="RippleContainer">
        <paper-ripple recenters></paper-ripple>
      </div>
    </template>
  </test-fixture>

  <test-fixture id="NoinkTarget">
    <template>
      <div id="RippleContainer">
        <paper-ripple noink></paper-ripple>
      </div>
    </template>
  </test-fixture>

  <test-fixture id="NoRipple">
    <template>
      <div id="RippleContainer">
      </div>
    </template>
  </test-fixture>

  <script>
    suite('<paper-ripple>', function () {
      var mouseEvent;
      var rippleContainer;
      var ripple;

      suite('when tapped', function () {
        setup(function () {
          rippleContainer = fixture('TrivialRipple');
          ripple = rippleContainer.firstElementChild;
        });

        test('creates a ripple', function () {
          expect(ripple.ripples.length).to.be.eql(0);
          MockInteractions.down(ripple);
          expect(ripple.ripples.length).to.be.eql(1);
        });

        test('may create multiple ripples that overlap', function () {
          expect(ripple.ripples.length).to.be.eql(0);

          for (var i = 0; i < 3; ++i) {
            MockInteractions.down(ripple);
            expect(ripple.ripples.length).to.be.eql(i + 1);
          }
        });
      });

      suite('when holdDown is togggled', function() {
        setup(function () {
          rippleContainer = fixture('TrivialRipple');
          ripple = rippleContainer.firstElementChild;
        });

        test('generates a ripple', function() {
          ripple.holdDown = true;
          expect(ripple.ripples.length).to.be.eql(1);
        });

        test('generates a ripple when noink', function() {
          ripple.noink = true;
          ripple.holdDown = true;
          expect(ripple.ripples.length).to.be.eql(1);

        });

      });

      suite('when target is noink', function () {
        setup(function () {
          rippleContainer = fixture('NoinkTarget');
          ripple = rippleContainer.firstElementChild;
        });

        test('tapping does not create a ripple', function () {
          expect(ripple.ripples.length).to.be.eql(0);
          MockInteractions.down(ripple);
          expect(ripple.ripples.length).to.be.eql(0);
        });

        test('ripples can be manually created', function () {
          expect(ripple.ripples.length).to.be.eql(0);
          ripple.simulatedRipple()
          expect(ripple.ripples.length).to.be.eql(1);
        });
      });

      suite('with the `center` attribute set to true', function () {
        setup(function () {
          rippleContainer = fixture('CenteringRipple');
          ripple = rippleContainer.firstElementChild;
        });

        test('ripples will center', function (done) {
          var waveContainerElement;
          // let's ask the browser what `translate3d(0px, 0px, 0)` will actually look like
          var div = document.createElement('div');
          div.style.webkitTransform = 'translate3d(0px, 0px, 0px)';
          div.style.transform = 'translate3d(0px, 0px, 0)';

          MockInteractions.down(ripple);

          waveContainerElement = ripple.ripples[0].waveContainer;

          MockInteractions.up(ripple);

          window.requestAnimationFrame(function () {
            var currentTransform = waveContainerElement.style.transform;
            try {
              expect(div.style.transform).to.be.ok;
              expect(currentTransform).to.be.ok;
              expect(currentTransform).to.be.eql(div.style.transform);

              done();
            } catch (e) {
              done(e);
            }
          });
        });
      });

      suite('with the `recenters` attribute set to true', function () {
        setup(function () {
          rippleContainer = fixture('RecenteringRipple');
          ripple = rippleContainer.firstElementChild;
        });
        test('ripples will gravitate towards the center', function (done) {
          var waveContainerElement;
          var waveTranslateString;
          MockInteractions.down(ripple, {x: 10, y: 10});
          waveContainerElement = ripple.ripples[0].waveContainer;
          waveTranslateString = waveContainerElement.style.transform;
          MockInteractions.up(ripple);
          window.requestAnimationFrame(function () {
            try {
              expect(waveTranslateString).to.be.ok;
              expect(waveContainerElement.style.transform).to.be.ok;
              expect(waveContainerElement.style.transform).to.not.be.eql(waveTranslateString);
              done();
            } catch (e) {
              done(e);
            }
          });
        });
      });

      suite('remove a paper ripple', function () {
        setup(function () {
          rippleContainer = fixture('NoRipple');
        });
        test('add and remove a paper-ripple', function (done) {
          var ripple = document.createElement('paper-ripple');
          ripple.addEventListener('transitionend', function() {
            expect(ripple.parentNode).to.be.ok;
            Polymer.dom(rippleContainer).removeChild(ripple);
            done();
          });
          Polymer.dom(rippleContainer).appendChild(ripple);
          ripple.downAction();
          ripple.upAction();
        });
        test('reuse a paper-ripple', function (done) {
          var ripple = document.createElement('paper-ripple');
          Polymer.dom(rippleContainer).appendChild(ripple);
          Polymer.dom(rippleContainer).removeChild(ripple);
          
          ripple.addEventListener('transitionend', function() {
            expect(ripple.parentNode).to.be.ok;
            Polymer.dom(document.body).removeChild(ripple);
            done();
          });
          Polymer.dom(document.body).appendChild(ripple);
          ripple.downAction();
          ripple.upAction();
        });
      });

      suite('avoid double transitionend event', function () {
        setup(function () {
          rippleContainer = fixture('NoRipple');
        });
        test('the transitionend event should only fire once', function (done) {
          var ripple = document.createElement('paper-ripple');
          var transitionedEventCount = 0;
          ripple.addEventListener('transitionend', function() {
            ++transitionedEventCount;
            expect(transitionedEventCount).to.be.eql(1);
            Polymer.dom(rippleContainer).removeChild(ripple);
            setTimeout(function() { done(); });
          });
          Polymer.dom(rippleContainer).appendChild(ripple);
          ripple.downAction();
          ripple.upAction();
        });
      });

    });
  </script>

</body>
</html>