summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/catapult/tracing/tracing/base/unittest/suite_loader.html
blob: 6c14bd5afbf4ad79ad0749507eb57233a413d257 (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>
<!--
Copyright (c) 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->

<link rel="import" href="/tracing/base/event.html">
<link rel="import" href="/tracing/base/event_target.html">
<link rel="import" href="/tracing/base/unittest/test_suite.html">
<link rel="import" href="/tracing/base/utils.html">
<link rel="import" href="/tracing/base/xhr.html">

<script>
'use strict';

tr.exportTo('tr.b.unittest', function() {
  function HTMLImportsModuleLoader() {
  }
  HTMLImportsModuleLoader.prototype = {
    loadModule(testRelpath, moduleName) {
      return new Promise(function(resolve, reject) {
        const importEl = document.createElement('link');
        importEl.moduleName = moduleName;
        Polymer.dom(importEl).setAttribute('rel', 'import');
        Polymer.dom(importEl).setAttribute('href', testRelpath);

        importEl.addEventListener('load', function() {
          resolve({testRelpath,
            moduleName});
        });
        importEl.addEventListener('error', function(e) {
          reject('Error loading &#60;link rel="import" href="' +
                 testRelpath + '"');
        });

        Polymer.dom(tr.doc.head).appendChild(importEl);
      });
    },

    getCurrentlyExecutingModuleName() {
      if (!document.currentScript) {
        throw new Error('Cannot call testSuite except during load.');
      }
      try {
        throw new Error('');
      } catch (e) {
        const stack = e.stack.split('\n');
        let url = stack[stack.length - 1].slice(7);
        url = url.slice(0, url.lastIndexOf(':'));
        url = url.slice(0, url.lastIndexOf(':')); // Yes, again.
        return this.guessModuleNameFromURL_(url);
      }
    },

    guessModuleNameFromURL_(url) {
      const m = /.+?:\/\/.+?(\/.+)/.exec(url);
      if (!m) {
        throw new Error('Guessing module name failed');
      }
      const path = m[1];
      if (path[0] !== '/') {
        throw new Error('malformed path');
      }
      const i = path.indexOf('.html');
      if (i < 0) {
        throw new Error('Cannot define testSuites outside html imports');
      }
      return path.substring(1, i).split('/').join('.');
    }
  };

  function HeadlessModuleLoader() {
    this.currentlyExecutingModuleInfo_ = undefined;
  }
  HeadlessModuleLoader.prototype = {
    loadModule(testRelpath, moduleName) {
      return Promise.resolve().then(function() {
        const moduleInfo = {
          testRelpath,
          moduleName
        };
        if (this.currentlyExecutingModuleInfo_ !== undefined) {
          throw new Error('WAT');
        }
        this.currentlyExecutingModuleInfo_ = moduleInfo;

        try {
          loadHTML(testRelpath);
        } catch (e) {
          e.message = 'While loading ' + moduleName + ', ' + e.message;
          e.stack = 'While loading ' + moduleName + ', ' + e.stack;
          throw e;
        } finally {
          this.currentlyExecutingModuleInfo_ = undefined;
        }

        return moduleInfo;
      }.bind(this));
    },

    getCurrentlyExecutingModuleName() {
      if (this.currentlyExecutingModuleInfo_ === undefined) {
        throw new Error('No currently loading module');
      }
      return this.currentlyExecutingModuleInfo_.moduleName;
    }
  };


  function SuiteLoader(suiteRelpathsToLoad) {
    tr.b.EventTarget.call(this);

    this.currentModuleLoader_ = undefined;
    this.testSuites = [];

    if (tr.isHeadless) {
      this.currentModuleLoader_ = new HeadlessModuleLoader();
    } else {
      this.currentModuleLoader_ = new HTMLImportsModuleLoader();
    }

    this.allSuitesLoadedPromise = this.beginLoadingModules_(
        suiteRelpathsToLoad);
  }

  SuiteLoader.prototype = {
    __proto__: tr.b.EventTarget.prototype,

    beginLoadingModules_(testRelpaths) {
      // Hooks!
      this.bindGlobalHooks_();

      // Load the modules.
      const modulePromises = [];
      for (let i = 0; i < testRelpaths.length; i++) {
        const testRelpath = testRelpaths[i];
        const moduleName = testRelpath.split('/').slice(-1)[0];

        const p = this.currentModuleLoader_.loadModule(testRelpath, moduleName);
        modulePromises.push(p);
      }

      const allModulesLoadedPromise = new Promise(function(resolve, reject) {
        let remaining = modulePromises.length;
        let resolved = false;
        function oneMoreLoaded() {
          if (resolved) return;
          remaining--;
          if (remaining > 0) return;
          resolved = true;
          resolve();
        }

        function oneRejected(e) {
          if (resolved) return;
          resolved = true;
          reject(e);
        }

        modulePromises.forEach(function(modulePromise) {
          modulePromise.then(oneMoreLoaded, oneRejected);
        });
      });

      // Script errors errors abort load;
      const scriptErrorPromise = new Promise(function(xresolve, xreject) {
        this.scriptErrorPromiseResolver_ = {
          resolve: xresolve,
          reject: xreject
        };
      }.bind(this));
      const donePromise = Promise.race([
        allModulesLoadedPromise,
        scriptErrorPromise
      ]);

      // Cleanup.
      return donePromise.then(
          function() {
            this.scriptErrorPromiseResolver_ = undefined;
            this.unbindGlobalHooks_();
          }.bind(this),
          function(e) {
            this.scriptErrorPromiseResolver_ = undefined;
            this.unbindGlobalHooks_();
            throw e;
          }.bind(this));
    },

    bindGlobalHooks_() {
      if (global._currentSuiteLoader !== undefined) {
        throw new Error('A suite loader exists already');
      }
      global._currentSuiteLoader = this;

      this.oldGlobalOnError_ = global.onerror;
      global.onerror = function(errorMsg, url, lineNumber) {
        this.scriptErrorPromiseResolver_.reject(
            new Error(errorMsg + '\n' + url + ':' + lineNumber));
        if (this.oldGlobalOnError_) {
          return this.oldGlobalOnError_(errorMsg, url, lineNumber);
        }
        return false;
      }.bind(this);
    },

    unbindGlobalHooks_() {
      global._currentSuiteLoader = undefined;

      global.onerror = this.oldGlobalOnError_;
      this.oldGlobalOnError_ = undefined;
    },

    constructAndRegisterTestSuite(suiteConstructor) {
      const name = this.currentModuleLoader_.getCurrentlyExecutingModuleName();

      const testSuite = new tr.b.unittest.TestSuite(
          name, suiteConstructor);

      this.testSuites.push(testSuite);

      const e = new tr.b.Event('suite-loaded');
      e.testSuite = testSuite;
      this.dispatchEvent(e);
    },

    getAllTests() {
      const tests = [];
      this.testSuites.forEach(function(suite) {
        tests.push.apply(tests, suite.tests);
      });
      return tests;
    },

    findTestWithFullyQualifiedName(fullyQualifiedName) {
      for (let i = 0; i < this.testSuites.length; i++) {
        const suite = this.testSuites[i];
        for (let j = 0; j < suite.tests.length; j++) {
          const test = suite.tests[j];
          if (test.fullyQualifiedName === fullyQualifiedName) return test;
        }
      }
      throw new Error('Test ' + fullyQualifiedName +
                      'not found amongst ' + this.testSuites.length);
    }
  };

  return {
    SuiteLoader,
  };
});
</script>