2014-05-27 09:32:53 +00:00
|
|
|
// Copyright (c) 2014, 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.
|
|
|
|
|
|
|
|
/// Tests that Isolate.spanUri completes with an error when the given URI
|
|
|
|
/// doesn't resolve to an existing resource.
|
|
|
|
library test.isolate.spawn_uri_missing_test;
|
|
|
|
|
|
|
|
import 'dart:isolate';
|
|
|
|
|
|
|
|
import 'dart:async';
|
|
|
|
|
|
|
|
import 'package:async_helper/async_helper.dart';
|
|
|
|
|
2014-05-27 13:32:20 +00:00
|
|
|
const UNEXPECTED_MESSAGE = 'Created isolate from missing file.';
|
|
|
|
|
2014-05-27 09:32:53 +00:00
|
|
|
Future doTest() {
|
|
|
|
return Isolate.spawnUri(Uri.base.resolve('no_such_file'), [], null)
|
|
|
|
.then((Isolate isolate) {
|
2014-05-27 13:32:20 +00:00
|
|
|
throw UNEXPECTED_MESSAGE;
|
2014-05-27 09:32:53 +00:00
|
|
|
}).catchError((error) {
|
2014-05-27 13:32:20 +00:00
|
|
|
if (error == UNEXPECTED_MESSAGE) throw error;
|
2014-05-27 09:32:53 +00:00
|
|
|
print('An error was thrown as expected');
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
main() {
|
|
|
|
asyncTest(doTest);
|
|
|
|
}
|