mirror of https://github.com/flutter/pinball.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
3.0 KiB
134 lines
3.0 KiB
import 'package:bloc_test/bloc_test.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:pinball/game/game.dart';
|
|
import 'package:pinball/theme/app_colors.dart';
|
|
|
|
import '../../../helpers/helpers.dart';
|
|
|
|
void main() {
|
|
group('RoundCountDisplay renders', () {
|
|
late GameBloc gameBloc;
|
|
const initialState = GameState(
|
|
score: 0,
|
|
multiplier: 1,
|
|
rounds: 3,
|
|
bonusHistory: [],
|
|
);
|
|
|
|
setUp(() {
|
|
gameBloc = MockGameBloc();
|
|
|
|
whenListen(
|
|
gameBloc,
|
|
Stream.value(initialState),
|
|
initialState: initialState,
|
|
);
|
|
});
|
|
|
|
testWidgets('three active round indicator', (tester) async {
|
|
await tester.pumpApp(
|
|
const RoundCountDisplay(),
|
|
gameBloc: gameBloc,
|
|
);
|
|
await tester.pump();
|
|
|
|
expect(find.byType(RoundIndicator), findsNWidgets(3));
|
|
});
|
|
|
|
testWidgets('two active round indicator', (tester) async {
|
|
final state = initialState.copyWith(
|
|
rounds: 2,
|
|
);
|
|
whenListen(
|
|
gameBloc,
|
|
Stream.value(state),
|
|
initialState: state,
|
|
);
|
|
|
|
await tester.pumpApp(
|
|
const RoundCountDisplay(),
|
|
gameBloc: gameBloc,
|
|
);
|
|
await tester.pump();
|
|
|
|
expect(
|
|
find.byWidgetPredicate(
|
|
(widget) => widget is RoundIndicator && widget.isActive,
|
|
),
|
|
findsNWidgets(2),
|
|
);
|
|
|
|
expect(
|
|
find.byWidgetPredicate(
|
|
(widget) => widget is RoundIndicator && !widget.isActive,
|
|
),
|
|
findsOneWidget,
|
|
);
|
|
});
|
|
|
|
testWidgets('one active round indicator', (tester) async {
|
|
final state = initialState.copyWith(
|
|
rounds: 1,
|
|
);
|
|
whenListen(
|
|
gameBloc,
|
|
Stream.value(state),
|
|
initialState: state,
|
|
);
|
|
|
|
await tester.pumpApp(
|
|
const RoundCountDisplay(),
|
|
gameBloc: gameBloc,
|
|
);
|
|
await tester.pump();
|
|
|
|
expect(
|
|
find.byWidgetPredicate(
|
|
(widget) => widget is RoundIndicator && widget.isActive,
|
|
),
|
|
findsOneWidget,
|
|
);
|
|
|
|
expect(
|
|
find.byWidgetPredicate(
|
|
(widget) => widget is RoundIndicator && !widget.isActive,
|
|
),
|
|
findsNWidgets(2),
|
|
);
|
|
});
|
|
});
|
|
|
|
testWidgets('active round indicator is displaying with proper color',
|
|
(tester) async {
|
|
await tester.pumpApp(
|
|
const RoundIndicator(isActive: true),
|
|
);
|
|
await tester.pump();
|
|
|
|
expect(
|
|
find.byWidgetPredicate(
|
|
(widget) => widget is Container && widget.color == AppColors.orange,
|
|
),
|
|
findsOneWidget,
|
|
);
|
|
});
|
|
|
|
testWidgets('inactive round indicator is displaying with proper color',
|
|
(tester) async {
|
|
await tester.pumpApp(
|
|
const RoundIndicator(isActive: false),
|
|
);
|
|
await tester.pump();
|
|
|
|
expect(
|
|
find.byWidgetPredicate(
|
|
(widget) =>
|
|
widget is Container &&
|
|
widget.color == AppColors.orange.withAlpha(128),
|
|
),
|
|
findsOneWidget,
|
|
);
|
|
});
|
|
}
|