mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 20:43:13 +02:00
- Remove all # type: ignore and # noqa comments (banned by no-noqa hook) - Add mypy --disable-error-code flags to pre-commit config for error codes previously suppressed by inline comments - Fix broken imports after ruff auto-removed re-exports: steam_backlog_enforcer, stockfish_analysis, word_frequency, lichess_bot - Re-add re-exports with __all__ in translator.py, screen_lock.py - Split _process_epc_fc.py (524 lines) into _process_epc_fc.py + _process_fc.py - Fix test failures: keyboard_coop, stockfish_analysis, tag_divider - Add per-file-ignores for PLC0415 (deferred imports) in 7 files - Mark shebang scripts as executable - Add __init__.py for generate_images and repo_explorer packages - Fix codespell, eslint, ruff-format, prettier issues - Update copilot-instructions.md with --no-verify ban
357 lines
13 KiB
Python
357 lines
13 KiB
Python
"""Tests for keyboard_coop game logic methods."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
from typing import TYPE_CHECKING
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
import pytest
|
|
|
|
from python_pkg.keyboard_coop._dictionary import load_dictionary
|
|
|
|
if TYPE_CHECKING:
|
|
from python_pkg.keyboard_coop.main import KeyboardCoopGame
|
|
|
|
|
|
class TestKeyboardCoopGame:
|
|
"""Tests for KeyboardCoopGame class methods."""
|
|
|
|
@pytest.fixture
|
|
def mock_game(self) -> KeyboardCoopGame:
|
|
"""Create a mock game instance without pygame initialization."""
|
|
mock_pg = MagicMock()
|
|
mock_pg.font.Font.return_value = MagicMock()
|
|
mock_pg.Rect = MagicMock()
|
|
|
|
with patch.dict("sys.modules", {"pygame": mock_pg}):
|
|
from python_pkg.keyboard_coop.main import (
|
|
GameState,
|
|
KeyboardCoopGame,
|
|
KeyboardState,
|
|
)
|
|
|
|
# Create game without calling __init__ directly
|
|
game = object.__new__(KeyboardCoopGame)
|
|
game.state = GameState()
|
|
game.keyboard = KeyboardState()
|
|
game.keyboard.layout = [["a", "b", "c"], ["d", "e", "f"]]
|
|
game.keyboard.adjacency = {
|
|
"a": ["b", "d"],
|
|
"b": ["a", "c", "e"],
|
|
"c": ["b", "f"],
|
|
"d": ["a", "e"],
|
|
"e": ["b", "d", "f"],
|
|
"f": ["c", "e"],
|
|
}
|
|
game.keyboard.available_letters = {"a", "b", "c", "d", "e", "f"}
|
|
game.dictionary = {"cat", "bat", "cab", "bad", "bed", "fed", "fad", "ace"}
|
|
return game
|
|
|
|
def test_is_valid_move_first_letter(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test first letter is always valid."""
|
|
mock_game.state.selected_letters = []
|
|
assert mock_game._is_valid_move("a") is True
|
|
assert mock_game._is_valid_move("z") is True
|
|
|
|
def test_is_valid_move_adjacent(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test adjacent letter is valid."""
|
|
mock_game.state.selected_letters = ["a"]
|
|
# "b" and "d" are adjacent to "a"
|
|
assert mock_game._is_valid_move("b") is True
|
|
assert mock_game._is_valid_move("d") is True
|
|
|
|
def test_is_valid_move_not_adjacent(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test non-adjacent letter is invalid."""
|
|
mock_game.state.selected_letters = ["a"]
|
|
# "f" is not adjacent to "a"
|
|
assert mock_game._is_valid_move("f") is False
|
|
|
|
def test_is_valid_word_true(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test valid word returns True."""
|
|
assert mock_game._is_valid_word("cat") is True
|
|
assert mock_game._is_valid_word("CAT") is True # Case insensitive
|
|
|
|
def test_is_valid_word_false(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test invalid word returns False."""
|
|
assert mock_game._is_valid_word("xyz") is False
|
|
|
|
def test_calculate_score_min_length(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test score calculation for minimum length word."""
|
|
# 3-letter word: 2^(3-2) = 2
|
|
assert mock_game._calculate_score(3) == 2
|
|
|
|
def test_calculate_score_longer_word(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test score calculation for longer words."""
|
|
# 4-letter: 2^(4-2) = 4
|
|
assert mock_game._calculate_score(4) == 4
|
|
# 5-letter: 2^(5-2) = 8
|
|
assert mock_game._calculate_score(5) == 8
|
|
|
|
def test_calculate_score_too_short(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test score for words below minimum length is 0."""
|
|
assert mock_game._calculate_score(2) == 0
|
|
assert mock_game._calculate_score(1) == 0
|
|
|
|
def test_handle_letter_click_valid(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test clicking a valid letter adds it to word."""
|
|
mock_game.state.selected_letters = []
|
|
mock_game.state.current_word = ""
|
|
mock_game.state.current_player = 0
|
|
|
|
mock_game._handle_letter_click("a")
|
|
|
|
assert mock_game.state.selected_letters == ["a"]
|
|
assert mock_game.state.current_word == "a"
|
|
assert mock_game.state.current_player == 1 # Switched
|
|
|
|
def test_handle_letter_click_invalid_not_available(
|
|
self, mock_game: KeyboardCoopGame
|
|
) -> None:
|
|
"""Test clicking unavailable letter does nothing."""
|
|
mock_game.keyboard.available_letters = {"b", "c"}
|
|
mock_game.state.selected_letters = []
|
|
mock_game.state.current_word = ""
|
|
|
|
mock_game._handle_letter_click("a")
|
|
|
|
assert mock_game.state.selected_letters == []
|
|
assert mock_game.state.current_word == ""
|
|
|
|
def test_submit_word_valid(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test submitting a valid word adds score."""
|
|
mock_game._generate_random_keyboard = MagicMock()
|
|
mock_game.state.current_word = "cat"
|
|
mock_game.state.selected_letters = ["c", "a", "t"]
|
|
mock_game.state.score = 0
|
|
|
|
mock_game._submit_word()
|
|
|
|
assert mock_game.state.score == 2 # 2^(3-2) = 2
|
|
assert mock_game.state.current_word == ""
|
|
assert mock_game.state.selected_letters == []
|
|
|
|
def test_submit_word_too_short(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test submitting too short word gives no score."""
|
|
mock_game.state.current_word = "ca"
|
|
mock_game.state.selected_letters = ["c", "a"]
|
|
mock_game.state.score = 0
|
|
|
|
mock_game._submit_word()
|
|
|
|
assert mock_game.state.score == 0
|
|
assert "too short" in mock_game.state.message
|
|
|
|
def test_submit_word_invalid(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test submitting invalid word gives no score."""
|
|
mock_game.state.current_word = "xyz"
|
|
mock_game.state.selected_letters = ["x", "y", "z"]
|
|
mock_game.state.score = 0
|
|
|
|
mock_game._submit_word()
|
|
|
|
assert mock_game.state.score == 0
|
|
assert "not a valid word" in mock_game.state.message
|
|
|
|
def test_reset_game(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test reset_game creates new state."""
|
|
mock_game._generate_random_keyboard = MagicMock()
|
|
mock_game.state.score = 100
|
|
mock_game.state.current_word = "test"
|
|
|
|
mock_game._reset_game()
|
|
|
|
# After reset, state should be fresh
|
|
assert mock_game.state.score == 0
|
|
assert mock_game.state.current_word == ""
|
|
assert mock_game._generate_random_keyboard.called
|
|
|
|
def test_get_key_at_position_found(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test getting key at position when key exists."""
|
|
mock_rect = MagicMock()
|
|
mock_rect.collidepoint.return_value = True
|
|
mock_game.keyboard.positions = {"a": mock_rect}
|
|
|
|
result = mock_game._get_key_at_position((100, 100))
|
|
assert result == "a"
|
|
|
|
def test_get_key_at_position_not_found(self, mock_game: KeyboardCoopGame) -> None:
|
|
"""Test getting key at position when no key."""
|
|
mock_rect = MagicMock()
|
|
mock_rect.collidepoint.return_value = False
|
|
mock_game.keyboard.positions = {"a": mock_rect}
|
|
|
|
result = mock_game._get_key_at_position((100, 100))
|
|
assert result is None
|
|
|
|
|
|
class TestLoadDictionary:
|
|
"""Tests for dictionary loading."""
|
|
|
|
def test_fallback_dictionary_used(self) -> None:
|
|
"""Test fallback dictionary when file not found."""
|
|
with patch("pathlib.Path.open", side_effect=FileNotFoundError):
|
|
dictionary = load_dictionary(Path())
|
|
|
|
# Should have fallback words
|
|
assert "cat" in dictionary
|
|
assert "dog" in dictionary
|
|
|
|
def test_json_decode_error_fallback(self) -> None:
|
|
"""Test fallback dictionary when JSON is invalid."""
|
|
import json
|
|
|
|
mock_file = MagicMock()
|
|
mock_file.__enter__ = MagicMock(return_value=mock_file)
|
|
mock_file.__exit__ = MagicMock(return_value=False)
|
|
|
|
with (
|
|
patch("pathlib.Path.open", return_value=mock_file),
|
|
patch("json.load", side_effect=json.JSONDecodeError("err", "doc", 0)),
|
|
):
|
|
dictionary = load_dictionary(Path())
|
|
|
|
# Should have fallback words from JSONDecodeError handler
|
|
assert "cat" in dictionary
|
|
assert "dog" in dictionary
|
|
|
|
|
|
class TestGenerateRandomKeyboard:
|
|
"""Tests for keyboard layout generation."""
|
|
|
|
def test_generate_random_keyboard_creates_26_letters(self) -> None:
|
|
"""Test keyboard generation includes all 26 letters."""
|
|
mock_pg = MagicMock()
|
|
mock_pg.Rect = MagicMock(return_value=MagicMock())
|
|
|
|
with patch.dict("sys.modules", {"pygame": mock_pg}):
|
|
from python_pkg.keyboard_coop.main import (
|
|
KeyboardCoopGame,
|
|
KeyboardState,
|
|
)
|
|
|
|
game = object.__new__(KeyboardCoopGame)
|
|
game.keyboard = KeyboardState()
|
|
|
|
game._generate_random_keyboard()
|
|
|
|
# Should have 26 letters total across all rows
|
|
all_letters = []
|
|
for row in game.keyboard.layout:
|
|
all_letters.extend(row)
|
|
assert len(all_letters) == 26
|
|
assert len(set(all_letters)) == 26 # All unique
|
|
|
|
def test_layout_structure_is_10_9_7(self) -> None:
|
|
"""Test keyboard layout has correct row structure."""
|
|
mock_pg = MagicMock()
|
|
mock_pg.Rect = MagicMock(return_value=MagicMock())
|
|
|
|
with patch.dict("sys.modules", {"pygame": mock_pg}):
|
|
from python_pkg.keyboard_coop.main import (
|
|
KeyboardCoopGame,
|
|
KeyboardState,
|
|
)
|
|
|
|
game = object.__new__(KeyboardCoopGame)
|
|
game.keyboard = KeyboardState()
|
|
|
|
game._generate_random_keyboard()
|
|
|
|
assert len(game.keyboard.layout) == 3
|
|
assert len(game.keyboard.layout[0]) == 10
|
|
assert len(game.keyboard.layout[1]) == 9
|
|
assert len(game.keyboard.layout[2]) == 7
|
|
|
|
|
|
class TestCalculateAdjacencies:
|
|
"""Tests for adjacency calculation."""
|
|
|
|
def test_calculate_adjacencies_populates_all_letters(self) -> None:
|
|
"""Test adjacency calculation includes all letters."""
|
|
mock_pg = MagicMock()
|
|
|
|
with patch.dict("sys.modules", {"pygame": mock_pg}):
|
|
from python_pkg.keyboard_coop.main import (
|
|
KeyboardCoopGame,
|
|
KeyboardState,
|
|
)
|
|
|
|
game = object.__new__(KeyboardCoopGame)
|
|
game.keyboard = KeyboardState()
|
|
game.keyboard.layout = [
|
|
["a", "b", "c"],
|
|
["d", "e", "f"],
|
|
["g", "h"],
|
|
]
|
|
|
|
game._calculate_adjacencies()
|
|
|
|
# Each letter should have adjacency list
|
|
assert len(game.keyboard.adjacency) == 8
|
|
# Corner letter should have fewer adjacents
|
|
assert "b" in game.keyboard.adjacency["a"]
|
|
assert "d" in game.keyboard.adjacency["a"]
|
|
assert "e" in game.keyboard.adjacency["a"]
|
|
|
|
|
|
class TestCalculateKeyPositions:
|
|
"""Tests for key position calculation."""
|
|
|
|
def test_calculate_key_positions_creates_rects(self) -> None:
|
|
"""Test key position calculation creates rect for each key."""
|
|
mock_pg = MagicMock()
|
|
mock_pg.Rect = MagicMock(return_value=MagicMock())
|
|
|
|
with patch.dict("sys.modules", {"pygame": mock_pg}):
|
|
from python_pkg.keyboard_coop.main import (
|
|
KeyboardCoopGame,
|
|
KeyboardState,
|
|
)
|
|
|
|
game = object.__new__(KeyboardCoopGame)
|
|
game.keyboard = KeyboardState()
|
|
game.keyboard.layout = [["a", "b"], ["c", "d"]]
|
|
|
|
positions = game._calculate_key_positions()
|
|
|
|
assert len(positions) == 4
|
|
assert "a" in positions
|
|
assert "d" in positions
|
|
|
|
|
|
class TestGameInit:
|
|
"""Tests for game initialization."""
|
|
|
|
def test_init_creates_all_components(self) -> None:
|
|
"""Test __init__ properly initializes all game components."""
|
|
mock_pg = MagicMock()
|
|
mock_pg.font.Font.return_value = MagicMock()
|
|
mock_pg.display.set_mode.return_value = MagicMock()
|
|
mock_pg.Rect = MagicMock(return_value=MagicMock())
|
|
|
|
mock_file = MagicMock()
|
|
mock_file.__enter__ = MagicMock(return_value=mock_file)
|
|
mock_file.__exit__ = MagicMock(return_value=False)
|
|
|
|
with (
|
|
patch.dict("sys.modules", {"pygame": mock_pg}),
|
|
patch("pathlib.Path.open", return_value=mock_file),
|
|
patch("json.load", return_value={"cat": 1, "dog": 1}),
|
|
):
|
|
from python_pkg.keyboard_coop.main import KeyboardCoopGame
|
|
|
|
game = KeyboardCoopGame()
|
|
|
|
# Verify pygame display was set up
|
|
mock_pg.display.set_mode.assert_called()
|
|
mock_pg.display.set_caption.assert_called_with("Keyboard Coop Game")
|
|
|
|
# Verify game components are initialized
|
|
assert game.screen is not None
|
|
assert game.clock is not None
|
|
assert game.fonts is not None
|
|
assert game.dictionary is not None
|
|
assert game.state is not None
|
|
assert game.keyboard is not None
|