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.
87 lines
2.3 KiB
87 lines
2.3 KiB
3 years ago
|
// 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 'package:pinball_components/pinball_components.dart';
|
||
|
|
||
|
import '../../helpers/helpers.dart';
|
||
|
|
||
|
void main() {
|
||
|
TestWidgetsFlutterBinding.ensureInitialized();
|
||
|
final assets = [
|
||
|
Assets.images.baseboard.left.keyName,
|
||
|
Assets.images.baseboard.right.keyName,
|
||
|
Assets.images.flipper.left.keyName,
|
||
|
Assets.images.flipper.right.keyName,
|
||
|
];
|
||
|
final flameTester = FlameTester(
|
||
|
() => EmptyPinballTestGame(assets: assets),
|
||
|
);
|
||
|
|
||
|
group('BottomGroup', () {
|
||
|
flameTester.test(
|
||
|
'loads correctly',
|
||
|
(game) async {
|
||
|
final bottomGroup = BottomGroup();
|
||
|
await game.ensureAdd(bottomGroup);
|
||
|
|
||
|
expect(game.contains(bottomGroup), isTrue);
|
||
|
},
|
||
|
);
|
||
|
|
||
|
group('loads', () {
|
||
|
flameTester.test(
|
||
|
'one left flipper',
|
||
|
(game) async {
|
||
|
final bottomGroup = BottomGroup();
|
||
|
await game.ensureAdd(bottomGroup);
|
||
|
|
||
|
final leftFlippers =
|
||
|
bottomGroup.descendants().whereType<Flipper>().where(
|
||
|
(flipper) => flipper.side.isLeft,
|
||
|
);
|
||
|
expect(leftFlippers.length, equals(1));
|
||
|
},
|
||
|
);
|
||
|
|
||
|
flameTester.test(
|
||
|
'one right flipper',
|
||
|
(game) async {
|
||
|
final bottomGroup = BottomGroup();
|
||
|
await game.ensureAdd(bottomGroup);
|
||
|
|
||
|
final rightFlippers =
|
||
|
bottomGroup.descendants().whereType<Flipper>().where(
|
||
|
(flipper) => flipper.side.isRight,
|
||
|
);
|
||
|
expect(rightFlippers.length, equals(1));
|
||
|
},
|
||
|
);
|
||
|
|
||
|
flameTester.test(
|
||
|
'two Baseboards',
|
||
|
(game) async {
|
||
|
final bottomGroup = BottomGroup();
|
||
|
await game.ensureAdd(bottomGroup);
|
||
|
|
||
|
final basebottomGroups =
|
||
|
bottomGroup.descendants().whereType<Baseboard>();
|
||
|
expect(basebottomGroups.length, equals(2));
|
||
|
},
|
||
|
);
|
||
|
|
||
|
flameTester.test(
|
||
|
'two Kickers',
|
||
|
(game) async {
|
||
|
final bottomGroup = BottomGroup();
|
||
|
await game.ensureAdd(bottomGroup);
|
||
|
|
||
|
final kickers = bottomGroup.descendants().whereType<Kicker>();
|
||
|
expect(kickers.length, equals(2));
|
||
|
},
|
||
|
);
|
||
|
});
|
||
|
});
|
||
|
}
|