summaryrefslogtreecommitdiff
path: root/systrace/catapult/third_party/polymer/components/iron-location/test/initialization-tests.html
blob: 16c911191d15e77de80936be83332c524d866218 (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
<!--
@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
-->

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
    <script src="../../webcomponentsjs/webcomponents.js"></script>
    <script src="../../web-component-tester/browser.js"></script>
    <script src="../../test-fixture/test-fixture-mocha.js"></script>

    <link rel="import" href="../../polymer/polymer.html">
    <link rel="import" href="../../promise-polyfill/promise-polyfill.html">
    <link rel="import" href="../../test-fixture/test-fixture.html">
    <link rel="import" href="../iron-location.html">
  </head>

  <body>
    <script>
      'use strict';

      function getIframe() {
        return new Promise(function(resolve, reject) {
          var iframe = document.createElement('iframe');
          var result = getMessageMatching(iframe, function(message) {
            return message.type === 'ready';
          });
          iframe.src = './initialization-iframe.html';
          document.body.appendChild(iframe);
          iframe.addEventListener('error', reject);
          result.then(function() {resolve(iframe)}, reject);
        });
      }

      function onMessage(iframe, callback) {
        var f = function(event) {
          if (event.source === iframe.contentWindow) {
            callback(event.data);
          }
        };
        window.addEventListener('message', f, false);
        return function() {
          window.removeEventListener('message', f);
        }
      }

      function getMessageMatching(iframe, predicate) {
        var revoke = function() {};
        var result = new Promise(function(resolve, reject) {
          revoke = onMessage(iframe, function(message) {
            if (predicate(message)) {
              resolve(message);
            }
          });
        });
        result.then(revoke, revoke);
        return result;
      }

      function getUrl(iframe) {
        var result = getMessageMatching(iframe, function(message) {
          return message.type === 'urlQueryResponse';
        })
        var revoke = function() {};
        var result = new Promise(function(resolve, reject) {
          revoke = onMessage(iframe, resolve);
        });
        result.then(revoke, revoke);
        iframe.contentWindow.postMessage({type: 'urlQuery'}, '*');
        return result;
      }

      function timePasses(ms) {
        return new Promise(function(resolve) {
          window.setTimeout(function() {
            resolve();
          }, ms);
        });
      }

      suite('<iron-location>\'s initialization', function() {
        var iframe;
        var error;
        setup(function() {
          return getIframe().then(function(i) {
            iframe = i;
            function isError(m) {return m.type === 'error'}
            getMessageMatching(iframe, isError).then(function(m) {
              error = m.error;
            });
          });
        });
        teardown(function() {
          if (iframe) {
            document.body.removeChild(iframe);
          }
          var e = error;
          iframe = null;
          error = null;
          if (e) {
            throw new Error('Error message from contained iframe: ' + e);
          }
        });
        var cases = [
          'default-before', 'attached-before', 'ready-before',
          'default-after', 'attached-after', 'ready-after',
          'default-below', 'attached-below', 'ready-below',
          'default-above', 'attached-above', 'ready-above',
          'default-container', 'attached-container', 'ready-container'
        ];
        cases.forEach(function(caseName) {
          test('the url takes priority in ' + caseName + ' initialization', function() {
            return getUrl(iframe).then(function(url) {
              expect(url.search).to.be.eq('');
              iframe.contentWindow.postMessage({type: 'appendBody', tagName: caseName}, '*');
              return timePasses(10).then(function() {return getUrl(iframe)});
            }).then(function(url) {
              expect(url.search).to.be.eq('');
            });
          });
        });
        var expectedFailureCases = ['timeout-before', 'timeout-after', 'timeout-below', 'timeout-above', 'timeout-container'];
        expectedFailureCases.forEach(function(caseName) {
          test('the url does not take priority in ' + caseName + ' initialization', function() {
            return getUrl(iframe).then(function(url) {
              expect(url.search).to.be.eq('');
              iframe.contentWindow.postMessage({type: 'appendBody', tagName: caseName}, '*');
              return timePasses(60).then(function() {return getUrl(iframe)});
            }).then(function(url) {
              expect(url.search).to.be.eq('?on-timeout');
            });
          });
        });
      });
    </script>
  </body>
</html>