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.
208 lines
5.0 KiB
208 lines
5.0 KiB
// ignore_for_file: prefer_const_constructors
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:pinball/game/game.dart';
|
|
|
|
void main() {
|
|
group('GameState', () {
|
|
test('supports value equality', () {
|
|
expect(
|
|
GameState(
|
|
score: 0,
|
|
balls: 0,
|
|
activatedBonusLetters: const [],
|
|
activatedDashNests: const {},
|
|
bonusHistory: const [],
|
|
),
|
|
equals(
|
|
const GameState(
|
|
score: 0,
|
|
balls: 0,
|
|
activatedBonusLetters: [],
|
|
activatedDashNests: {},
|
|
bonusHistory: [],
|
|
),
|
|
),
|
|
);
|
|
});
|
|
|
|
group('constructor', () {
|
|
test('can be instantiated', () {
|
|
expect(
|
|
const GameState(
|
|
score: 0,
|
|
balls: 0,
|
|
activatedBonusLetters: [],
|
|
activatedDashNests: {},
|
|
bonusHistory: [],
|
|
),
|
|
isNotNull,
|
|
);
|
|
});
|
|
});
|
|
|
|
test(
|
|
'throws AssertionError '
|
|
'when balls are negative',
|
|
() {
|
|
expect(
|
|
() => GameState(
|
|
balls: -1,
|
|
score: 0,
|
|
activatedBonusLetters: const [],
|
|
activatedDashNests: const {},
|
|
bonusHistory: const [],
|
|
),
|
|
throwsAssertionError,
|
|
);
|
|
},
|
|
);
|
|
|
|
test(
|
|
'throws AssertionError '
|
|
'when score is negative',
|
|
() {
|
|
expect(
|
|
() => GameState(
|
|
balls: 0,
|
|
score: -1,
|
|
activatedBonusLetters: const [],
|
|
activatedDashNests: const {},
|
|
bonusHistory: const [],
|
|
),
|
|
throwsAssertionError,
|
|
);
|
|
},
|
|
);
|
|
|
|
group('isGameOver', () {
|
|
test(
|
|
'is true '
|
|
'when no balls are left', () {
|
|
const gameState = GameState(
|
|
balls: 0,
|
|
score: 0,
|
|
activatedBonusLetters: [],
|
|
activatedDashNests: {},
|
|
bonusHistory: [],
|
|
);
|
|
expect(gameState.isGameOver, isTrue);
|
|
});
|
|
|
|
test(
|
|
'is false '
|
|
'when one 1 ball left', () {
|
|
const gameState = GameState(
|
|
balls: 1,
|
|
score: 0,
|
|
activatedBonusLetters: [],
|
|
activatedDashNests: {},
|
|
bonusHistory: [],
|
|
);
|
|
expect(gameState.isGameOver, isFalse);
|
|
});
|
|
});
|
|
|
|
group('isLetterActivated', () {
|
|
test(
|
|
'is true when the letter is activated',
|
|
() {
|
|
const gameState = GameState(
|
|
balls: 3,
|
|
score: 0,
|
|
activatedBonusLetters: [1],
|
|
activatedDashNests: {},
|
|
bonusHistory: [],
|
|
);
|
|
expect(gameState.isLetterActivated(1), isTrue);
|
|
},
|
|
);
|
|
|
|
test(
|
|
'is false when the letter is not activated',
|
|
() {
|
|
const gameState = GameState(
|
|
balls: 3,
|
|
score: 0,
|
|
activatedBonusLetters: [1],
|
|
activatedDashNests: {},
|
|
bonusHistory: [],
|
|
);
|
|
expect(gameState.isLetterActivated(0), isFalse);
|
|
},
|
|
);
|
|
});
|
|
|
|
group('copyWith', () {
|
|
test(
|
|
'throws AssertionError '
|
|
'when scored is decreased',
|
|
() {
|
|
const gameState = GameState(
|
|
balls: 0,
|
|
score: 2,
|
|
activatedBonusLetters: [],
|
|
activatedDashNests: {},
|
|
bonusHistory: [],
|
|
);
|
|
expect(
|
|
() => gameState.copyWith(score: gameState.score - 1),
|
|
throwsAssertionError,
|
|
);
|
|
},
|
|
);
|
|
|
|
test(
|
|
'copies correctly '
|
|
'when no argument specified',
|
|
() {
|
|
const gameState = GameState(
|
|
balls: 0,
|
|
score: 2,
|
|
activatedBonusLetters: [],
|
|
activatedDashNests: {},
|
|
bonusHistory: [],
|
|
);
|
|
expect(
|
|
gameState.copyWith(),
|
|
equals(gameState),
|
|
);
|
|
},
|
|
);
|
|
|
|
test(
|
|
'copies correctly '
|
|
'when all arguments specified',
|
|
() {
|
|
const gameState = GameState(
|
|
score: 2,
|
|
balls: 0,
|
|
activatedBonusLetters: [],
|
|
activatedDashNests: {},
|
|
bonusHistory: [],
|
|
);
|
|
final otherGameState = GameState(
|
|
score: gameState.score + 1,
|
|
balls: gameState.balls + 1,
|
|
activatedBonusLetters: const [0],
|
|
activatedDashNests: const {'1'},
|
|
bonusHistory: const [GameBonus.word],
|
|
);
|
|
expect(gameState, isNot(equals(otherGameState)));
|
|
|
|
expect(
|
|
gameState.copyWith(
|
|
score: otherGameState.score,
|
|
balls: otherGameState.balls,
|
|
activatedBonusLetters: otherGameState.activatedBonusLetters,
|
|
activatedDashNests: otherGameState.activatedDashNests,
|
|
bonusHistory: otherGameState.bonusHistory,
|
|
),
|
|
equals(otherGameState),
|
|
);
|
|
},
|
|
);
|
|
});
|
|
});
|
|
}
|