6c757957db
DDC's codegen test copies those files to a local "gen" directory so that it can do stuff like splitting out the multitests before it compiles them to JS. I left all of that alone, so the rest of DDC's test infrastructure is unchanged. The very first step that builds the "gen" directory just copies from sdk/tests/..._strong/... instead and the rest is good to go. I did not move not_yet_strong_tests.dart somewhere more accessible yet because I'm not sure if kernel needs it or where it should go. I did not create any status files because DDC doesn't need them and there are no test suites for the new directories for the other platforms.
53 lines
1.5 KiB
Dart
53 lines
1.5 KiB
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
library worker_test;
|
|
import 'package:unittest/unittest.dart';
|
|
import 'package:unittest/html_individual_config.dart';
|
|
import 'dart:html';
|
|
|
|
main() {
|
|
useHtmlIndividualConfiguration();
|
|
|
|
group('supported', () {
|
|
test('supported', () {
|
|
expect(Worker.supported, isTrue);
|
|
});
|
|
});
|
|
|
|
var workerScript = '''postMessage('WorkerMessage');''';
|
|
|
|
group('functional', () {
|
|
|
|
test('unsupported', () {
|
|
if (!Worker.supported) {
|
|
expect(() => new Worker('worker.js'), throws);
|
|
} else {
|
|
new Worker('worker.js').onError.first.then(expectAsync((e) {
|
|
// This event is expected, "worker.js" doesn't exist. But the event
|
|
// *sometimes* propagates to window.onerror in Firefox which causes
|
|
// this test to fail, so let's stop any further propagation:
|
|
e.preventDefault();
|
|
e.stopImmediatePropagation();
|
|
}));
|
|
}
|
|
});
|
|
|
|
if (!Worker.supported) {
|
|
return;
|
|
}
|
|
|
|
test('works', () {
|
|
// Use Blob to make a local URL so we don't have to have a separate file.
|
|
var blob = new Blob([workerScript], 'text/javascript');
|
|
var url = Url.createObjectUrl(blob);
|
|
var worker = new Worker(url);
|
|
var test = expectAsync((e) {
|
|
expect(e.data, 'WorkerMessage');
|
|
});
|
|
worker.onMessage.first.then(test);
|
|
});
|
|
});
|
|
}
|