【问题标题】:Can't found widget key flutter test找不到小部件键颤动测试
【发布时间】:2021-02-22 00:12:45
【问题描述】:

所以,我正在尝试测试我的颤振应用程序。这就是我的工作

class MockSplashScreenBloc extends MockBloc<SplashScreenState>
    implements SplashScreenBloc {}

void main() {
  MockSplashScreenBloc splashScreenBloc;

  Widget MyWidget() {
    return MaterialApp(
      home: BlocProvider(
        create: (context) {
          return SplashScreenBloc(url: "google.com");
        },
        child: SplashScreen(),
      ),
    );
  }

  group('Splash Screen Widget Test', () {
    setUp(() {
      splashScreenBloc = MockSplashScreenBloc();
    });
    tearDown(() {
      splashScreenBloc?.close();
    });

    testWidgets('should render Container when state is Default State',
        (WidgetTester tester) async {
      when(splashScreenBloc.state).thenAnswer((_) => Default());
      await tester.pumpWidget(MyWidget());
      expect(find.byKey(ValueKey("container_empty")), findsOneWidget);
    });

    testWidgets('should render LoadingIndicator when state is Loading State',
        (WidgetTester tester) async {
      when(splashScreenBloc.state).thenReturn(LoadingState());

      await tester.pumpWidget(MyWidget());

      expect(find.byKey(ValueKey("splash_loading_bar")), findsOneWidget);
    });
  });

}

这是我的SplashScreen

class SplashScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: BlocBuilder<SplashScreenBloc, SplashScreenState>(
          builder: (context, state) {
            if (state is LoadingState) {
              return CircularProgressIndicator(
                key: Key("splash_loading_bar"),
              );
            } else if (state is NotConnected) {
              return Text("Could not connect to server",
                  key: ValueKey("splash_screen_not_connected"));
            } else if (state is Connected) {
              return Text(
                "Connected",
                key: Key("splash_screen_connected"),
              );
            } else {
              return Container(key: Key("container_empty"));
            }
          },
        ),
      ),
    );
  }
}

我无法通过这个测试 should render LoadingIndicator when state is Loading State ,我已经尝试使用 expect(find.byType(CircularProgressIndicator), findsOneWidget); 但它仍然无法正常工作,这是错误

══╡ FLUTTER 测试框架捕获的异常 ╞═════════════════════════════════════════════════ ═══以下 运行测试时抛出了 TestFailure 对象:预期:恰好一个 小部件树中的匹配节点实际:_KeyFinder:](忽略后台小部件)>
其中:表示没有找到,但应该有一个

我该如何解决?

【问题讨论】:

    标签: flutter flutter-test


    【解决方案1】:

    你试过 await tester.pumpAndSettle() 吗?

    tester.pump()
    在给定的持续时间后触发小部件的重建。

    tester.pumpAndSettle()
    以给定的持续时间反复调用泵,直到没有 不再安排任何帧。这基本上等待所有动画 完成。

    请尝试以下代码:

       testWidgets('should render LoadingIndicator when state is Loading State',
            (WidgetTester tester) async {
          when(splashScreenBloc.state).thenReturn(LoadingState());
    
          await tester.pumpWidget(MyWidget());
    
          await tester.pumpAndSettle();
    
          expect(find.byKey(ValueKey("splash_loading_bar")), findsOneWidget);
        });
    

    【讨论】:

      猜你喜欢
      • 2020-05-13
      • 2021-02-04
      • 2020-03-01
      • 2022-12-13
      • 1970-01-01
      • 2021-01-31
      • 1970-01-01
      • 2021-07-29
      • 2020-08-18
      相关资源
      最近更新 更多