stop_test.dart 1.95 KB
Newer Older
1 2 3 4 5 6
// 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:mockito/mockito.dart';
7
import 'package:flutter_tools/src/commands/stop.dart';
8 9
import 'package:test/test.dart';

10
import 'src/mocks.dart';
11 12 13 14 15 16

main() => defineTests();

defineTests() {
  group('stop', () {
    test('returns 0 when Android is connected and ready to be stopped', () {
17 18 19
      StopCommand command = new StopCommand();
      applyMocksToCommand(command);
      MockDeviceStore mockDevices = command.devices;
20

21 22
      when(mockDevices.android.isConnected()).thenReturn(true);
      when(mockDevices.android.stopApp(any)).thenReturn(true);
23

24 25
      when(mockDevices.iOS.isConnected()).thenReturn(false);
      when(mockDevices.iOS.stopApp(any)).thenReturn(false);
26

27 28
      when(mockDevices.iOSSimulator.isConnected()).thenReturn(false);
      when(mockDevices.iOSSimulator.stopApp(any)).thenReturn(false);
29 30 31 32 33 34 35

      CommandRunner runner = new CommandRunner('test_flutter', '')
        ..addCommand(command);
      runner.run(['stop']).then((int code) => expect(code, equals(0)));
    });

    test('returns 0 when iOS is connected and ready to be stopped', () {
36 37 38
      StopCommand command = new StopCommand();
      applyMocksToCommand(command);
      MockDeviceStore mockDevices = command.devices;
39

40 41
      when(mockDevices.android.isConnected()).thenReturn(false);
      when(mockDevices.android.stopApp(any)).thenReturn(false);
42

43 44
      when(mockDevices.iOS.isConnected()).thenReturn(true);
      when(mockDevices.iOS.stopApp(any)).thenReturn(true);
45

46 47
      when(mockDevices.iOSSimulator.isConnected()).thenReturn(false);
      when(mockDevices.iOSSimulator.stopApp(any)).thenReturn(false);
48 49 50 51 52 53 54

      CommandRunner runner = new CommandRunner('test_flutter', '')
        ..addCommand(command);
      runner.run(['stop']).then((int code) => expect(code, equals(0)));
    });
  });
}