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.
92 lines
2.4 KiB
92 lines
2.4 KiB
// ignore_for_file: cascade_invocations
|
|
|
|
import 'package:flame_test/flame_test.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:pinball/game/game.dart';
|
|
|
|
import '../../helpers/helpers.dart';
|
|
|
|
void main() {
|
|
TestWidgetsFlutterBinding.ensureInitialized();
|
|
final flameTester = FlameTester(PinballGameTest.create);
|
|
|
|
group('Board', () {
|
|
flameTester.test(
|
|
'loads correctly',
|
|
(game) async {
|
|
final board = Board();
|
|
await game.ready();
|
|
await game.ensureAdd(board);
|
|
|
|
expect(game.contains(board), isTrue);
|
|
},
|
|
);
|
|
|
|
group('children', () {
|
|
flameTester.test(
|
|
'has one left flipper',
|
|
(game) async {
|
|
final board = Board();
|
|
await game.ready();
|
|
await game.ensureAdd(board);
|
|
|
|
final leftFlippers = board.descendants().whereType<Flipper>().where(
|
|
(flipper) => flipper.side.isLeft,
|
|
);
|
|
expect(leftFlippers.length, equals(1));
|
|
},
|
|
);
|
|
|
|
flameTester.test(
|
|
'has one right flipper',
|
|
(game) async {
|
|
final board = Board();
|
|
await game.ready();
|
|
await game.ensureAdd(board);
|
|
final rightFlippers = board.descendants().whereType<Flipper>().where(
|
|
(flipper) => flipper.side.isRight,
|
|
);
|
|
expect(rightFlippers.length, equals(1));
|
|
},
|
|
);
|
|
|
|
flameTester.test(
|
|
'has two Baseboards',
|
|
(game) async {
|
|
final board = Board();
|
|
await game.ready();
|
|
await game.ensureAdd(board);
|
|
|
|
final baseboards = board.descendants().whereType<Baseboard>();
|
|
expect(baseboards.length, equals(2));
|
|
},
|
|
);
|
|
|
|
flameTester.test(
|
|
'has two Kickers',
|
|
(game) async {
|
|
final board = Board();
|
|
await game.ready();
|
|
await game.ensureAdd(board);
|
|
|
|
final kickers = board.descendants().whereType<Kicker>();
|
|
expect(kickers.length, equals(2));
|
|
},
|
|
);
|
|
|
|
flameTester.test(
|
|
'has one FlutterForest',
|
|
(game) async {
|
|
// TODO(alestiago): change to [NestBumpers] once provided.
|
|
final board = Board();
|
|
await game.ready();
|
|
await game.ensureAdd(board);
|
|
|
|
final flutterForest = board.descendants().whereType<FlutterForest>();
|
|
expect(flutterForest.length, equals(1));
|
|
},
|
|
);
|
|
});
|
|
});
|
|
}
|