OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * Test controller logic - used by unit test harness to embed tests in | 6 * Test controller logic - used by unit test harness to embed tests in |
7 * conent shell. | 7 * conent shell. |
8 */ | 8 */ |
9 | 9 |
10 // Clear the console before every test run - this is Firebug specific code. | 10 // Clear the console before every test run - this is Firebug specific code. |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 function notifyStart() { | 56 function notifyStart() { |
57 var driver = getDriverWindow(); | 57 var driver = getDriverWindow(); |
58 if (driver) { | 58 if (driver) { |
59 driver.postMessage("STARTING", "*"); | 59 driver.postMessage("STARTING", "*"); |
60 } | 60 } |
61 } | 61 } |
62 // We call notifyStart here to notify the encapsulating browser. | 62 // We call notifyStart here to notify the encapsulating browser. |
63 notifyStart(); | 63 notifyStart(); |
64 | 64 |
65 function notifyDone() { | 65 function notifyDone() { |
| 66 // TODO(ricow): REMOVE, debug info, see issue 13292 |
| 67 dartPrint('Calling notifyDone()'); |
66 if (testRunner) testRunner.notifyDone(); | 68 if (testRunner) testRunner.notifyDone(); |
67 // To support in browser launching of tests we post back start and result | 69 // To support in browser launching of tests we post back start and result |
68 // messages to the window.opener. | 70 // messages to the window.opener. |
69 var driver = getDriverWindow(); | 71 var driver = getDriverWindow(); |
70 if (driver) { | 72 if (driver) { |
71 driver.postMessage(window.document.body.innerHTML, "*"); | 73 driver.postMessage(window.document.body.innerHTML, "*"); |
72 } | 74 } |
73 } | 75 } |
74 | 76 |
75 function processMessage(msg) { | 77 function processMessage(msg) { |
| 78 // TODO(ricow): REMOVE, debug info, see issue 13292 |
| 79 dartPrint('processMessage(): ' + msg); |
| 80 |
76 if (typeof msg != 'string') return; | 81 if (typeof msg != 'string') return; |
77 if (msg == 'unittest-suite-done') { | 82 if (msg == 'unittest-suite-done') { |
78 notifyDone(); | 83 notifyDone(); |
79 } else if (msg == 'unittest-suite-wait-for-done') { | 84 } else if (msg == 'unittest-suite-wait-for-done') { |
80 waitForDone = true; | 85 waitForDone = true; |
81 if (testRunner) testRunner.startedDartTest = true; | 86 if (testRunner) testRunner.startedDartTest = true; |
82 } else if (msg == 'dart-calling-main') { | 87 } else if (msg == 'dart-calling-main') { |
83 if (testRunner) testRunner.startedDartTest = true; | 88 if (testRunner) testRunner.startedDartTest = true; |
84 } else if (msg == 'dart-main-done') { | 89 } else if (msg == 'dart-main-done') { |
85 if (!waitForDone) { | 90 if (!waitForDone) { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 try { | 178 try { |
174 main(); | 179 main(); |
175 } catch (e) { | 180 } catch (e) { |
176 dartPrint(e); | 181 dartPrint(e); |
177 if (e.stack) dartPrint(e.stack); | 182 if (e.stack) dartPrint(e.stack); |
178 window.postMessage('unittest-suite-fail', '*'); | 183 window.postMessage('unittest-suite-fail', '*'); |
179 return; | 184 return; |
180 } | 185 } |
181 window.postMessage('dart-main-done', '*'); | 186 window.postMessage('dart-main-done', '*'); |
182 } | 187 } |
OLD | NEW |