ad34b0e2bb
Bug: https://github.com/dart-lang/sdk/issues/60540 Change-Id: Ib646f3bfc0aff079b0cd57dca71e9c3646919eca Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/429760 Reviewed-by: Ben Konyi <bkonyi@google.com> Commit-Queue: Kenzie Davisson <kenzieschmoll@google.com>
45 lines
1.5 KiB
Dart
45 lines
1.5 KiB
Dart
// Copyright (c) 2024, 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.
|
|
|
|
import 'package:dds_service_extensions/dds_service_extensions.dart';
|
|
import 'package:test/test.dart';
|
|
import 'package:vm_service/vm_service.dart';
|
|
|
|
import 'common/test_helper.dart';
|
|
|
|
void fooBar() {}
|
|
|
|
final test = <IsolateTest>[
|
|
(VmService service, IsolateRef isolate) async {
|
|
// Each client has a default name based on the order of connection to the
|
|
// service.
|
|
var clientName = await service.getClientName();
|
|
|
|
// This will be 'client2' instead of 'client1' because the Dart Tooling
|
|
// Daemon that is managed by DDS will connect the first client to this
|
|
// VM Service connection.
|
|
final defaultClientName = 'client2';
|
|
|
|
expect(clientName.name, defaultClientName);
|
|
|
|
// Set a custom client name and check it was set properly.
|
|
await service.setClientName('foobar');
|
|
clientName = await service.getClientName();
|
|
expect(clientName.name, 'foobar');
|
|
|
|
// Clear the client name and check that we're using the default again.
|
|
await service.setClientName();
|
|
clientName = await service.getClientName();
|
|
expect(clientName.name, defaultClientName);
|
|
},
|
|
];
|
|
|
|
void main([args = const <String>[]]) => runIsolateTests(
|
|
args,
|
|
test,
|
|
'get_client_name_rpc_test.dart',
|
|
testeeConcurrent: fooBar,
|
|
pauseOnStart: true,
|
|
);
|