213830e122
R=bkonyi@google.com Change-Id: I3a450b04becaef007cc81fda1dbca1fda58b3d19 Reviewed-on: https://dart-review.googlesource.com/12361 Commit-Queue: Terry Lucas <terry@google.com> Reviewed-by: Ben Konyi <bkonyi@google.com>
38 lines
1.3 KiB
Dart
38 lines
1.3 KiB
Dart
library async_spawnuri_test;
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
import 'package:unittest/html_config.dart';
|
|
|
|
import 'dart:async';
|
|
import 'dart:isolate';
|
|
import 'dart:html';
|
|
|
|
// OtherScripts=async_oneshot.dart async_periodictimer.dart async_cancellingisolate.dart
|
|
main() {
|
|
useHtmlConfiguration();
|
|
|
|
test('one shot timer in pure isolate', () {
|
|
var response = new ReceivePort();
|
|
var remote = Isolate.spawnUri(
|
|
Uri.parse('async_oneshot.dart'), ['START'], response.sendPort);
|
|
remote.catchError((x) => expect("Error in oneshot isolate", x));
|
|
expect(remote.then((_) => response.first), completion('DONE'));
|
|
});
|
|
|
|
test('periodic timer in pure isolate', () {
|
|
var response = new ReceivePort();
|
|
var remote = Isolate.spawnUri(
|
|
Uri.parse('async_periodictimer.dart'), ['START'], response.sendPort);
|
|
remote.catchError((x) => expect("Error in periodic timer isolate", x));
|
|
expect(remote.then((_) => response.first), completion('DONE'));
|
|
});
|
|
|
|
test('cancellation in pure isolate', () {
|
|
var response = new ReceivePort();
|
|
var remote = Isolate.spawnUri(Uri.parse('async_cancellingisolate.dart'),
|
|
['START'], response.sendPort);
|
|
remote.catchError((x) => expect("Error in cancelling isolate", x));
|
|
expect(remote.then((_) => response.first), completion('DONE'));
|
|
});
|
|
}
|