Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: runtime/observatory/tests/service/set_vm_name_rpc_test.dart

Issue 1398823002: We can now name the current VM using the service protocol. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: more Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/observatory/tests/service/get_vm_rpc_test.dart ('k') | runtime/vm/json_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
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.
4 // VMOptions=--error_on_bad_type --error_on_bad_override --vm-name=Walter
5
6 import 'dart:async';
7 import 'package:observatory/service_io.dart';
8 import 'package:unittest/unittest.dart';
9 import 'test_helper.dart';
10
11 var tests = [
12 (VM vm) async {
13 expect(vm.name, equals('Walter'));
14
15 Completer completer = new Completer();
16 var stream = await vm.getEventStream(VM.kVMStream);
17 var subscription;
18 subscription = stream.listen((ServiceEvent event) {
19 if (event.kind == ServiceEvent.kVMUpdate) {
20 expect(event.owner.type, equals('VM'));
21 expect(event.owner.name, equals('Barbara'));
22 subscription.cancel();
23 completer.complete();
24 }
25 });
26
27 var result = await vm.setName('Barbara');
28 expect(result.type, equals('Success'));
29
30 await completer.future;
31 expect(vm.name, equals('Barbara'));
32 },
33 ];
34
35 main(args) async => runVMTests(args, tests, trace_service: true);
OLDNEW
« no previous file with comments | « runtime/observatory/tests/service/get_vm_rpc_test.dart ('k') | runtime/vm/json_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698