// Copyright 2015 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:args/command_runner.dart';import'package:flutter_tools/src/base/context.dart';import'package:flutter_tools/src/base/logger.dart';import'package:flutter_tools/src/commands/channel.dart';import'package:test/test.dart';import'src/common.dart';import'src/context.dart';voidmain(){group('channel',(){testUsingContext('list',()async{ChannelCommandcommand=newChannelCommand();CommandRunnerrunner=createTestCommandRunner(command);expect(awaitrunner.run(<String>['channel']),0);BufferLoggerlogger=context[Logger];expect(logger.errorText,hasLength(0));
// The bots may return an empty list of channels (network hiccup?)// and when run locally the list of branches might be different// so we check for the header text rather than any specific channel name.expect(logger.statusText,contains('Flutter channels:'));