mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
39 lines
1.2 KiB
Dart
39 lines
1.2 KiB
Dart
// Copyright 2018 The Chromium Authors. 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:flutter_tools/src/fuchsia/fuchsia_device.dart';
|
|
|
|
import '../src/common.dart';
|
|
import '../src/context.dart';
|
|
|
|
void main() {
|
|
group('fuchsia device', () {
|
|
testUsingContext('stores the requested id and name', () {
|
|
const String deviceId = 'e80::0000:a00a:f00f:2002/3';
|
|
const String name = 'halfbaked';
|
|
final FuchsiaDevice device = FuchsiaDevice(deviceId, name: name);
|
|
expect(device.id, deviceId);
|
|
expect(device.name, name);
|
|
});
|
|
|
|
test('parse netls log output', () {
|
|
const String example = 'device lilia-shore-only-last (fe80::0000:a00a:f00f:2002/3)';
|
|
final List<String> names = parseFuchsiaDeviceOutput(example);
|
|
|
|
expect(names.length, 1);
|
|
expect(names.first, 'lilia-shore-only-last');
|
|
});
|
|
|
|
test('parse ls tmp/dart.servies output', () {
|
|
const String example = '''
|
|
d 2 0 .
|
|
'- 1 0 36780
|
|
''';
|
|
final List<int> ports = parseFuchsiaDartPortOutput(example);
|
|
expect(ports.length, 1);
|
|
expect(ports.single, 36780);
|
|
});
|
|
});
|
|
}
|