Widget test not receiving taps

338 Views Asked by At

I'm trying to test the callback of a custom widget I have, it's really a simple save icon button but the test is failing as the widget isn't detecting the tap. The test:

testWidgets(
  'Save icon callback',
  (WidgetTester tester) async {
    Completer completer = Completer<void>();

    await tester.pumpWidget(
      _TestingApp(
        child: SaveIcon(
          onTap: (_) => completer.complete(),
          initialSaved: false,
        ),
      ),
    );

    var finder = find.byType(InkWell);
    expect(finder, findsOneWidget);

    await tester.tap(finder);

    expect(completer.isCompleted, true);
  },
);

The widget code:

class SaveIcon extends StatefulWidget {
  SaveIcon({
    @required this.onTap,
    @required this.initialSaved,
  });
  final Function(bool) onTap;
  final bool initialSaved;

  @override
  _SaveIconState createState() => _SaveIconState();
}

class _SaveIconState extends State<SaveIcon> {
  bool _isSaved;

  @override
  void initState() {
    super.initState();
    _isSaved = widget.initialSaved;
  }

  @override
  Widget build(BuildContext context) {
    return InkWell(
      focusColor: Colors.transparent,
      highlightColor: Colors.transparent,
      splashColor: Colors.transparent,
      onTap: () {
        setState(() {
          _isSaved = !_isSaved;
          widget.onTap(_isSaved);
        });
      },
      child: RotatedBox(
        quarterTurns: 2,
        child: AnimatedSwitcher(
          transitionBuilder: (child, animation) =>
              ScaleTransition(child: child, scale: animation),
          duration: Duration(milliseconds: 250),
          child: _isSaved
              ? Image.asset(
                  'assets/icons/save_filled.png',
                  key: const ValueKey<int>(0),
                  height: 21,
                  color: Colors.white,
                )
              : Image.asset(
                  'assets/icons/save.png',
                  key: const ValueKey<int>(1),
                  height: 21,
                  color: Colors.white,
                ),
        ),
      ),
    );
  }
}

It Just fails as the completer isn't completed. (Error msg: The following TestFailure object was thrown running a test: Expected: true Actual: false )

Any idea why that might be?

0

There are 0 best solutions below