blob: 3958eac284c40593f2f2b3dc0a003bf19f9c68b1 [file] [log] [blame]
#!mojo mojo:dart_content_handler
import 'package:mojo/core.dart' show MojoHandle;
import 'package:test/test.dart';
import '../lib/syncbase_client.dart' show SyncbaseClient;
main(List args) async {
// args[0] is the mojo handle.
MojoHandle handle = new MojoHandle(args[0]);
// TODO(nlacasse): Switch to serving these files over http rather than
// directly from the filesystem, so they can be accessed by Android.
String serviceUrl = 'file://' + args[1].replaceFirst('dart/test/syncbase_test.dart', 'gen/mojo/synbase_server.mojo');
SyncbaseClient c = new SyncbaseClient(handle, serviceUrl);
c.connect();
test('appExists(foo) should be false', () {
expect(c.appExists, completion(isFalse));
});
// Append a final test to terminate shell connection.
// TODO(nlacasse): Remove this once package 'test' supports a global tearDown
// callback. See https://github.com/dart-lang/test/issues/18.
test('terminate shell connection', () async {
await c.close();
expect(MojoHandle.reportLeakedHandles(), isTrue);
});
}