Flutter:在测试期间flutter_driver错误消息和应用程序屏幕保持黑色

时间:2019-09-09 21:36:15

标签: flutter flutter-test

我正在尝试为我的Flutter应用程序设置一些集成测试,但是遇到了一些麻烦。 在调试模式下运行我的应用程序可以正常工作时,当我尝试使用flutter_driver运行该应用程序时,该应用程序保持黑色。
这是我的flutter_driver/app.dart代码的代码:

import 'package:flutter_driver/driver_extension.dart';
import 'package:[MY_APP_NAME]/main.dart' as app;

void main() {
  // This line enables the extension.
  enableFlutterDriverExtension();

  // Call the `main()` function of the app, or call `runApp` with
  // any widget you are interested in testing.
  app.main();
}  

这是我的flutter_driver/app_test.dart文件的代码:


// Imports the Flutter Driver API.
import 'package:flutter_driver/flutter_driver.dart';
import 'package:test/test.dart';

void main() {
  group('My first test group', () {
    // First, define the Finders and use them to locate widgets from the
    // test suite. Note: the Strings provided to the `byValueKey` method must
    // be the same as the Strings we used for the Keys in step 1.

    final welcomeQuestion = find.byValueKey('welcomeQuestion');
    FlutterDriver driver;
    // Connect to the Flutter driver before running any tests.
    setUpAll(() async {
      driver = await FlutterDriver.connect();
    });

    // Close the connection to the driver after the tests have completed.
    tearDownAll(() async {
      if (driver != null) {
        driver.close();
      }
    });

    test('check flutter driver health', () async {
      Health health = await driver.checkHealth();
      print(health.status);
    });

    test('Check welcomeQuestion', () async {
      // Use the `driver.getText` method to verify the counter starts at 0.
      expect(await driver.getText(welcomeQuestion), "Are you feeling good today?");
    });
  });
}

这是我在运行flutter drive --target=test_driver/app.dart进行测试时收到的错误消息:

00:00 +1 -1: [APP-NAME] Check welcomeQuestion [E]
  DriverError: Error in Flutter application: Uncaught extension error while executing get_text: 'package:flutter_driver/src/extension/extension.dart': Failed assertion: line 189 pos 14: 'WidgetsBinding.instance.isRootWidgetAttached || !command.require
sRootWidgetAttached': No root widget is attached; have you remembered to call runApp()?
  #0      _AssertionError._doThrowNew (dart:core-patch/errors_patch.dart:40:39)
  #1      _AssertionError._throwNew (dart:core-patch/errors_patch.dart:36:5)
  #2      FlutterDriverExtension.call (package:flutter_driver/src/extension/extension.dart:189:14)
  <asynchronous suspension>
  #3      BindingBase.registerServiceExtension.<anonymous closure> (package:flutter/src/foundation/binding.dart:512:32)
  <asynchronous suspension>
  #4      _runExtension (dart:developer-patch/developer.dart:84:23)

  Original error: null
  Original stack trace:
  null

  package:flutter_driver/src/driver/driver.dart 433:7   FlutterDriver._sendCommand
  ===== asynchronous gap ===========================
  dart:async/future_impl.dart 22:43                     _Completer.completeError
  dart:async-patch/async_patch.dart 40:18               _AsyncAwaitCompleter.completeError
  package:flutter_driver/src/driver/driver.dart         FlutterDriver._sendCommand
  ===== asynchronous gap ===========================
  dart:async/zone.dart 1053:19                          _CustomZone.registerUnaryCallback
  dart:async-patch/async_patch.dart 77:23               _asyncThenWrapperHelper
  package:flutter_driver/src/driver/driver.dart         FlutterDriver._sendCommand
  package:flutter_driver/src/driver/driver.dart 677:41  FlutterDriver.getText
  ===== asynchronous gap ===========================
  dart:async/zone.dart 1053:19                          _CustomZone.registerUnaryCallback
  dart:async-patch/async_patch.dart 77:23               _asyncThenWrapperHelper
  package:test_api/src/backend/declarer.dart            Declarer.test.<fn>.<fn>.<fn>
  package:test_api/src/backend/invoker.dart 250:15      Invoker.waitForOutstandingCallbacks.<fn>
  ===== asynchronous gap ===========================
  dart:async/zone.dart 1045:19                          _CustomZone.registerCallback
  dart:async/zone.dart 962:22                           _CustomZone.bindCallbackGuarded
  dart:async/timer.dart 52:45                           new Timer
  dart:async/timer.dart 87:9                            Timer.run
  dart:async/future.dart 174:11                         new Future
  package:test_api/src/backend/invoker.dart 399:21      Invoker._onRun.<fn>.<fn>.<fn>

00:00 +1 -1: [APP-NAME] (tearDownAll)
00:00 +1 -1: Some tests failed.

Unhandled exception:
Dummy exception to set exit code.
#0      _rootHandleUncaughtError.<anonymous closure> (dart:async/zone.dart:1112:29)
#1      _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
#2      _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
#3      _Timer._runTimers (dart:isolate-patch/timer_impl.dart:391:30)
#4      _Timer._handleMessage (dart:isolate-patch/timer_impl.dart:416:5)
#5      _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Stopping application instance.
Driver tests failed: 255

值得一提的是,应用程序屏幕保持黑色,因此驱动程序似乎无法连接至原始应用程序并正确运行。有人知道如何解决这个问题吗?

更新

运行flutter --version

Flutter 1.7.8+hotfix.4 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 20e59316b8 (8 weeks ago) • 2019-07-18 20:04:33 -0700
Engine • revision fee001c93f
Tools • Dart 2.4.0

这是我的main.dart的涂黑版本:

import 'dart:convert';
import 'dart:typed_data';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter/services.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:flutter_statusbarcolor/flutter_statusbarcolor.dart';
[... + many additional imports from other private packages]

void main() async {
  //load the json config globally
  await Config().loadConfig();
  await SharedPrefsService().init();
  await RealmService().init();
  SessionHistoryService().init();
  final Router router = Router();

  [... a lot of router.define() functions....]

  //set statusbar color
  FlutterStatusbarcolor.setStatusBarWhiteForeground(true);

  SystemChrome.setPreferredOrientations(
      [DeviceOrientation.portraitUp, DeviceOrientation.portraitDown]).then((_) {
    runApp(new MaterialApp(
        localizationsDelegates: [
          const AppLocalizationsDelegate(),
          GlobalMaterialLocalizations.delegate,
          GlobalWidgetsLocalizations.delegate
        ],
        supportedLocales: [
          const Locale('en', 'US'), // English
          const Locale('de', 'DE'), // German
          // ... other locales the app supports
        ],
        localeResolutionCallback:
            (Locale locale, Iterable<Locale> supportedLocales) {
          for (Locale supportedLocale in supportedLocales) {
            if (supportedLocale.languageCode == locale.languageCode ||
                supportedLocale.countryCode == locale.countryCode) {
              //For Localization Testing:
              // return const Locale('de', 'DE');
              return supportedLocale;
            }
          }

          return supportedLocales.first;
        },
        title: 'MY APP NAME',
        home: SharedPrefsService().isFirstLaunch()
            ? FirstLaunchScreen(true)
            : MainMenuPage(),
        onGenerateRoute: router.generator));
  });
}

3 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,并且似乎在main.dart中的main()中的.init()方法完成之前开始执行测试。尝试在测试开始时设置暂停,看看它是否有效(以我为例)。我们正在寻找一种解决方案,该方法如何等到整个main()被执行并开始测试执行,而不使用硬编码的暂停。希望对您有帮助

test('Check welcomeQuestion', () async {

  await sleep(Duration(seconds: 5));

  // Use the `driver.getText` method to verify the counter starts at 0.
  expect(await driver.getText(welcomeQuestion), "Are you feeling good today?");
});

答案 1 :(得分:1)

就我而言,这足够了:

// connects with the current running application
driver = await FlutterDriver.connect();

// Wait for the first frame to be rasterized during the app launch.
await driver.waitUntilFirstFrameRasterized();

好吧,不确定为什么要投票,这是关于以下问题的gh问题:https://github.com/flutter/flutter/issues/41029

答案 2 :(得分:0)

假设您的屏幕上仅显示文本Are you feeling good today?, 我重新创建了您的案例,在运行Flutter驱动程序测试时未发现任何问题或黑屏。我看到了成功的测试执行:

enter image description here

我的main.dart如下:

@override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Text('Are you feeling good today?', key: Key('welcomeQuestion'),)
      )

app.dart

void main() {
  // This line enables the extension
  enableFlutterDriverExtension();

  // Call the `main()` function of your app or call `runApp` with any widget you
  // are interested in testing.
  app.main();

}

app_test.dart

group('My first test group', () {
    // First, define the Finders and use them to locate widgets from the
    // test suite. Note: the Strings provided to the `byValueKey` method must
    // be the same as the Strings we used for the Keys in step 1.

    final welcomeQuestion = find.byValueKey('welcomeQuestion');
    FlutterDriver driver;
    // Connect to the Flutter driver before running any tests.
    setUpAll(() async {
      driver = await FlutterDriver.connect();
    });

    // Close the connection to the driver after the tests have completed.
    tearDownAll(() async {
      if (driver != null) {
        driver.close();
      }
    });

    test('check flutter driver health', () async {
      Health health = await driver.checkHealth();
      print(health.status);
    });

    test('Check welcomeQuestion', () async {
      // Use the `driver.getText` method to verify the counter starts at 0.
      expect(await driver.getText(welcomeQuestion), "Are you feeling good today?");
    });
  });