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

Posted

技术标签:

【中文标题】Flutter:flutter_driver 错误消息和应用程序屏幕在测试时保持黑色【英文标题】:Flutter: flutter_driver error message and app screen stays black while testing 【发布时间】:2020-01-11 15:53:52 【问题描述】:

我正在尝试为我的 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));
  );

【问题讨论】:

【参考方案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

更新: 看来我们有一个新的库来替代 FlutterDriver,你就不用再关心这些问题了:https://medium.com/flutter/updates-on-flutter-testing-f54aa9f74c7e :)

【讨论】:

这应该是公认的答案!也适用于flutter_gherkin:^1.1.8+9插件..谢谢兄弟!【参考方案2】:

我遇到了同样的问题,似乎测试在 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?");
);

【讨论】:

【参考方案3】:

假设您的屏幕上只有文字Are you feeling good today?, 我重新创建了您的案例,在运行颤振驱动程序测试时没有看到任何问题或黑屏。我看到了成功的测试执行:

我的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?");
    );
  );

【讨论】:

我也使用 Flutter 中的示例对其进行了测试,它按预期工作 (flutter.dev/docs/cookbook/testing/integration/introduction),但我自己的应用程序因任何原因而失败,我不知道为什么 能分享一下main.dart的code吗,你用的是什么版本的flutter? 我将其归结为应用程序在加载似乎不可用的 json 时卡住了

以上是关于Flutter:flutter_driver 错误消息和应用程序屏幕在测试时保持黑色的主要内容,如果未能解决你的问题,请参考以下文章

使用 flutter_driver 查找颤振三明治菜单按钮

Flutter应用程序在使用flutter_driver运行时无法加载Json文件

所以,因为poseapp依赖于sdk中的音频播放器^0.17.0和flutter_driver any,版本解析失败

每个版本的 integration_test 都依赖于来自 sdk 的 flutter_driver any,它依赖于 crypto 2.1.5

firebase 消息传递和flutter sdk 驱动程序版本解决失败

在 iOS 上点击对话框中的允许按钮的 Flutter 集成测试失败