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.
170 lines
5.1 KiB
170 lines
5.1 KiB
3 years ago
|
import 'dart:collection';
|
||
|
|
||
|
import 'package:flame_test/flame_test.dart';
|
||
|
import 'package:flutter/services.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 flameTester = FlameTester(PinballGameTest.create);
|
||
|
|
||
|
group('FlipperController', () {
|
||
|
group('onKeyEvent', () {
|
||
|
final leftKeys = UnmodifiableListView([
|
||
|
LogicalKeyboardKey.arrowLeft,
|
||
|
LogicalKeyboardKey.keyA,
|
||
|
]);
|
||
|
final rightKeys = UnmodifiableListView([
|
||
|
LogicalKeyboardKey.arrowRight,
|
||
|
LogicalKeyboardKey.keyD,
|
||
|
]);
|
||
|
|
||
|
group('and Flipper is left', () {
|
||
|
late Flipper flipper;
|
||
|
late FlipperController controller;
|
||
|
|
||
|
setUp(() {
|
||
|
flipper = Flipper(side: BoardSide.left);
|
||
|
controller = FlipperController(flipper);
|
||
|
flipper.add(controller);
|
||
|
});
|
||
|
|
||
|
testRawKeyDownEvents(leftKeys, (event) {
|
||
|
flameTester.test(
|
||
|
'moves upwards '
|
||
|
'when ${event.logicalKey.keyLabel} is pressed',
|
||
|
(game) async {
|
||
|
await game.ready();
|
||
|
await game.add(flipper);
|
||
|
controller.onKeyEvent(event, {});
|
||
|
|
||
|
expect(flipper.body.linearVelocity.y, isPositive);
|
||
|
expect(flipper.body.linearVelocity.x, isZero);
|
||
|
},
|
||
|
);
|
||
|
});
|
||
|
|
||
|
testRawKeyUpEvents(leftKeys, (event) {
|
||
|
flameTester.test(
|
||
|
'moves downwards '
|
||
|
'when ${event.logicalKey.keyLabel} is released',
|
||
|
(game) async {
|
||
|
await game.ready();
|
||
|
await game.add(flipper);
|
||
|
controller.onKeyEvent(event, {});
|
||
|
|
||
|
expect(flipper.body.linearVelocity.y, isNegative);
|
||
|
expect(flipper.body.linearVelocity.x, isZero);
|
||
|
},
|
||
|
);
|
||
|
});
|
||
|
|
||
|
testRawKeyUpEvents(rightKeys, (event) {
|
||
|
flameTester.test(
|
||
|
'does nothing '
|
||
|
'when ${event.logicalKey.keyLabel} is released',
|
||
|
(game) async {
|
||
|
await game.ready();
|
||
|
await game.add(flipper);
|
||
|
controller.onKeyEvent(event, {});
|
||
|
|
||
|
expect(flipper.body.linearVelocity.y, isZero);
|
||
|
expect(flipper.body.linearVelocity.x, isZero);
|
||
|
},
|
||
|
);
|
||
|
});
|
||
|
|
||
|
testRawKeyDownEvents(rightKeys, (event) {
|
||
|
flameTester.test(
|
||
|
'does nothing '
|
||
|
'when ${event.logicalKey.keyLabel} is pressed',
|
||
|
(game) async {
|
||
|
await game.ready();
|
||
|
await game.add(flipper);
|
||
|
controller.onKeyEvent(event, {});
|
||
|
|
||
|
expect(flipper.body.linearVelocity.y, isZero);
|
||
|
expect(flipper.body.linearVelocity.x, isZero);
|
||
|
},
|
||
|
);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
group('and Flipper is right', () {
|
||
|
late Flipper flipper;
|
||
|
late FlipperController controller;
|
||
|
|
||
|
setUp(() {
|
||
|
flipper = Flipper(side: BoardSide.right);
|
||
|
controller = FlipperController(flipper);
|
||
|
flipper.add(controller);
|
||
|
});
|
||
|
|
||
|
testRawKeyDownEvents(rightKeys, (event) {
|
||
|
flameTester.test(
|
||
|
'moves upwards '
|
||
|
'when ${event.logicalKey.keyLabel} is pressed',
|
||
|
(game) async {
|
||
|
await game.ready();
|
||
|
await game.add(flipper);
|
||
|
controller.onKeyEvent(event, {});
|
||
|
|
||
|
expect(flipper.body.linearVelocity.y, isPositive);
|
||
|
expect(flipper.body.linearVelocity.x, isZero);
|
||
|
},
|
||
|
);
|
||
|
});
|
||
|
|
||
|
testRawKeyUpEvents(rightKeys, (event) {
|
||
|
flameTester.test(
|
||
|
'moves downwards '
|
||
|
'when ${event.logicalKey.keyLabel} is released',
|
||
|
(game) async {
|
||
|
await game.ready();
|
||
|
await game.add(flipper);
|
||
|
controller.onKeyEvent(event, {});
|
||
|
|
||
|
expect(flipper.body.linearVelocity.y, isNegative);
|
||
|
expect(flipper.body.linearVelocity.x, isZero);
|
||
|
},
|
||
|
);
|
||
|
});
|
||
|
|
||
|
testRawKeyUpEvents(leftKeys, (event) {
|
||
|
flameTester.test(
|
||
|
'does nothing '
|
||
|
'when ${event.logicalKey.keyLabel} is released',
|
||
|
(game) async {
|
||
|
await game.ready();
|
||
|
await game.add(flipper);
|
||
|
controller.onKeyEvent(event, {});
|
||
|
|
||
|
expect(flipper.body.linearVelocity.y, isZero);
|
||
|
expect(flipper.body.linearVelocity.x, isZero);
|
||
|
},
|
||
|
);
|
||
|
});
|
||
|
|
||
|
testRawKeyDownEvents(leftKeys, (event) {
|
||
|
flameTester.test(
|
||
|
'does nothing '
|
||
|
'when ${event.logicalKey.keyLabel} is pressed',
|
||
|
(game) async {
|
||
|
await game.ready();
|
||
|
await game.add(flipper);
|
||
|
controller.onKeyEvent(event, {});
|
||
|
|
||
|
expect(flipper.body.linearVelocity.y, isZero);
|
||
|
expect(flipper.body.linearVelocity.x, isZero);
|
||
|
},
|
||
|
);
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
}
|