-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more tests #982
Merged
Merged
Add more tests #982
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,171 @@ | ||
"""Test the functions that get the external moves.""" | ||
import backoff | ||
import requests | ||
import yaml | ||
import os | ||
import chess | ||
import logging | ||
import test_bot.lichess | ||
import chess.engine | ||
from datetime import timedelta | ||
from copy import deepcopy | ||
from requests.exceptions import ConnectionError, HTTPError, ReadTimeout | ||
from http.client import RemoteDisconnected | ||
from lib.types import OnlineType, GameEventType | ||
from typing import Optional, Union, cast | ||
from lib.lichess import is_final, backoff_handler, Lichess | ||
from lib.config import Configuration, insert_default_values | ||
from lib.model import Game | ||
from lib.engine_wrapper import get_online_move, get_book_move | ||
LICHESS_TYPE = Union[Lichess, test_bot.lichess.Lichess] | ||
|
||
|
||
class MockLichess(Lichess): | ||
"""A modified Lichess class for communication with external move sources.""" | ||
|
||
def __init__(self) -> None: | ||
"""Initialize only self.other_session and not self.session.""" | ||
self.max_retries = 3 | ||
self.other_session = requests.Session() | ||
|
||
def online_book_get(self, path: str, params: Optional[dict[str, Union[str, int]]] = None, | ||
stream: bool = False) -> OnlineType: | ||
"""Get an external move from online sources (chessdb or lichess.org).""" | ||
|
||
@backoff.on_exception(backoff.constant, | ||
(RemoteDisconnected, ConnectionError, HTTPError, ReadTimeout), | ||
max_time=60, | ||
max_tries=self.max_retries, | ||
interval=0.1, | ||
giveup=is_final, | ||
on_backoff=backoff_handler, | ||
backoff_log_level=logging.DEBUG, | ||
giveup_log_level=logging.DEBUG) | ||
def online_book_get() -> OnlineType: | ||
json_response: OnlineType = self.other_session.get(path, timeout=2, params=params, stream=stream).json() | ||
return json_response | ||
|
||
return online_book_get() | ||
|
||
|
||
def get_configs() -> tuple[Configuration, Configuration, Configuration, Configuration]: | ||
"""Create the configs used for the tests.""" | ||
with open("./config.yml.default") as file: | ||
CONFIG = yaml.safe_load(file) | ||
insert_default_values(CONFIG) | ||
CONFIG["engine"]["online_moves"]["lichess_cloud_analysis"]["enabled"] = True | ||
CONFIG["engine"]["online_moves"]["online_egtb"]["enabled"] = True | ||
CONFIG["engine"]["draw_or_resign"]["resign_enabled"] = True | ||
CONFIG["engine"]["polyglot"]["enabled"] = True | ||
CONFIG["engine"]["polyglot"]["book"]["standard"] = ["TEMP/gm2001.bin"] | ||
engine_cfg = Configuration(CONFIG).engine | ||
CONFIG_2 = deepcopy(CONFIG) | ||
CONFIG_2["engine"]["online_moves"]["chessdb_book"]["enabled"] = True | ||
CONFIG_2["engine"]["online_moves"]["online_egtb"]["source"] = "chessdb" | ||
engine_cfg_2 = Configuration(CONFIG_2).engine | ||
return engine_cfg.online_moves, engine_cfg_2.online_moves, engine_cfg.draw_or_resign, engine_cfg.polyglot | ||
|
||
|
||
def get_game() -> Game: | ||
"""Create a model.Game to be used in the tests.""" | ||
game_event: GameEventType = {"id": "zzzzzzzz", | ||
"variant": {"key": "standard", | ||
"name": "Standard", | ||
"short": "Std"}, | ||
"clock": {"initial": 60000, | ||
"increment": 2000}, | ||
"speed": "bullet", | ||
"perf": {"name": "Bullet"}, | ||
"rated": True, | ||
"createdAt": 1600000000000, | ||
"white": {"id": "bo", | ||
"name": "bo", | ||
"title": "BOT", | ||
"rating": 3000}, | ||
"black": {"id": "b", | ||
"name": "b", | ||
"title": "BOT", | ||
"rating": 3000, | ||
"provisional": True}, | ||
"initialFen": "startpos", | ||
"type": "gameFull", | ||
"state": {"type": "gameState", | ||
"moves": "", | ||
"wtime": 1000000, | ||
"btime": 1000000, | ||
"winc": 2000, | ||
"binc": 2000, | ||
"status": "started"}} | ||
game = Game(game_event, "b", "https://lichess.org", timedelta(seconds=60)) | ||
return game | ||
|
||
|
||
def download_opening_book() -> None: | ||
"""Download gm2001.bin.""" | ||
if os.path.exists("./TEMP/gm2001.bin"): | ||
return | ||
response = requests.get("https://github.com/gmcheems-org/free-opening-books/raw/main/books/bin/gm2001.bin", | ||
allow_redirects=True) | ||
with open("./TEMP/gm2001.bin", "wb") as file: | ||
file.write(response.content) | ||
|
||
|
||
os.makedirs("TEMP", exist_ok=True) | ||
download_opening_book() | ||
|
||
|
||
def get_online_move_wrapper(li: LICHESS_TYPE, board: chess.Board, game: Game, online_moves_cfg: Configuration, | ||
draw_or_resign_cfg: Configuration) -> chess.engine.PlayResult: | ||
"""Wrap `lib.engine_wrapper.get_online_move` so that it only returns a PlayResult type.""" | ||
return cast(chess.engine.PlayResult, get_online_move(li, board, game, online_moves_cfg, draw_or_resign_cfg)) | ||
|
||
|
||
def test_external_moves() -> None: | ||
"""Test that the code for external moves works properly.""" | ||
li = MockLichess() | ||
game = get_game() | ||
online_cfg, online_cfg_2, draw_or_resign_cfg, polyglot_cfg = get_configs() | ||
|
||
starting_fen = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1" | ||
opening_fen = "rn1q1rk1/pbp1bpp1/1p2pn1p/3p4/2PP3B/2N1PN2/PP2BPPP/R2QK2R w KQ - 2 9" | ||
middlegame_fen = "8/5p2/1n1p1nk1/1p1Pp1p1/1Pp1P1Pp/r1P2B1P/2RNKP2/8 w - - 0 31" | ||
endgame_wdl2_fen = "2k5/4n2Q/5N2/8/8/8/1r6/2K5 b - - 0 123" | ||
endgame_wdl1_fen = "6N1/3n4/3k1b2/8/8/7Q/1r6/5K2 b - - 6 9" | ||
endgame_wdl0_fen = "6N1/3n4/3k1b2/8/8/7Q/5K2/1r6 b - - 8 10" | ||
|
||
# Test lichess_cloud_analysis. | ||
assert get_online_move_wrapper(li, chess.Board(starting_fen), game, online_cfg, draw_or_resign_cfg).move is not None | ||
assert get_online_move_wrapper(li, chess.Board(opening_fen), game, online_cfg, draw_or_resign_cfg).move is not None | ||
assert get_online_move_wrapper(li, chess.Board(middlegame_fen), game, online_cfg, draw_or_resign_cfg).move is None | ||
|
||
# Test chessdb_book. | ||
assert get_online_move_wrapper(li, chess.Board(starting_fen), game, online_cfg_2, draw_or_resign_cfg).move is not None | ||
assert get_online_move_wrapper(li, chess.Board(opening_fen), game, online_cfg_2, draw_or_resign_cfg).move is not None | ||
assert get_online_move_wrapper(li, chess.Board(middlegame_fen), game, online_cfg_2, draw_or_resign_cfg).move is None | ||
|
||
# Test online_egtb with lichess. | ||
assert get_online_move_wrapper(li, chess.Board(endgame_wdl2_fen), game, online_cfg, draw_or_resign_cfg).resigned | ||
assert get_online_move_wrapper(li, chess.Board(endgame_wdl0_fen), game, online_cfg, draw_or_resign_cfg).draw_offered | ||
wdl1_move = get_online_move_wrapper(li, chess.Board(endgame_wdl1_fen), game, online_cfg, draw_or_resign_cfg) | ||
assert not wdl1_move.resigned and not wdl1_move.draw_offered | ||
# Test with reversed colors. | ||
assert get_online_move_wrapper(li, chess.Board(endgame_wdl2_fen).mirror(), game, online_cfg, draw_or_resign_cfg).resigned | ||
assert get_online_move_wrapper(li, chess.Board(endgame_wdl0_fen).mirror(), game, online_cfg, | ||
draw_or_resign_cfg).draw_offered | ||
wdl1_move = get_online_move_wrapper(li, chess.Board(endgame_wdl1_fen).mirror(), game, online_cfg, draw_or_resign_cfg) | ||
assert not wdl1_move.resigned and not wdl1_move.draw_offered | ||
|
||
# Test online_egtb with chessdb. | ||
assert get_online_move_wrapper(li, chess.Board(endgame_wdl2_fen), game, online_cfg_2, draw_or_resign_cfg).resigned | ||
assert get_online_move_wrapper(li, chess.Board(endgame_wdl0_fen), game, online_cfg_2, draw_or_resign_cfg).draw_offered | ||
wdl1_move = get_online_move_wrapper(li, chess.Board(endgame_wdl1_fen), game, online_cfg_2, draw_or_resign_cfg) | ||
assert not wdl1_move.resigned and not wdl1_move.draw_offered | ||
# Test with reversed colors. | ||
assert get_online_move_wrapper(li, chess.Board(endgame_wdl2_fen).mirror(), game, online_cfg_2, draw_or_resign_cfg).resigned | ||
assert get_online_move_wrapper(li, chess.Board(endgame_wdl0_fen).mirror(), game, online_cfg_2, | ||
draw_or_resign_cfg).draw_offered | ||
wdl1_move = get_online_move_wrapper(li, chess.Board(endgame_wdl1_fen).mirror(), game, online_cfg_2, draw_or_resign_cfg) | ||
assert not wdl1_move.resigned and not wdl1_move.draw_offered | ||
|
||
# Test opening book. | ||
assert get_book_move(chess.Board(opening_fen), game, polyglot_cfg).move == chess.Move.from_uci("h4f6") |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Am I wrong, or do these code changes result in no change in behavior?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't change anything. I just though that the code would be easier to understand because the correct wdl is with the
* -1
, but we can obviously test with the wrong wdl and correct it at the end as we are currently doing. The bug was in line 1105.