-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add files via upload * Add files via upload * Add files via upload * Add files via upload
- Loading branch information
1 parent
3298569
commit 5359d3f
Showing
4 changed files
with
138 additions
and
2 deletions.
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,49 @@ | ||
"""Tests for the lichess communication.""" | ||
|
||
from lib import lichess | ||
import logging | ||
import os | ||
import pytest | ||
|
||
|
||
def test_lichess() -> None: | ||
"""Test the lichess communication.""" | ||
token = os.getenv("LICHESS_BOT_TEST_TOKEN") | ||
if token is None: | ||
pytest.skip("Lichess-bot test token must be set.") | ||
li = lichess.Lichess(token, "https://lichess.org/", "0.0.0", logging.DEBUG, 3) | ||
assert len(li.get_online_bots()) > 20 | ||
profile = li.get_profile() | ||
profile['seenAt'] = 1700000000000 | ||
assert profile == {'blocking': False, | ||
'count': {'ai': 3, 'all': 12, 'bookmark': 0, 'draw': 1, 'drawH': 1, 'import': 0, | ||
'loss': 8, 'lossH': 5, 'me': 0, 'playing': 0, 'rated': 0, 'win': 3, 'winH': 3}, | ||
'createdAt': 1627834995597, 'followable': True, 'following': False, 'id': 'badsunfish', | ||
'perfs': {'blitz': {'games': 0, 'prog': 0, 'prov': True, 'rating': 1500, 'rd': 500}, | ||
'bullet': {'games': 0, 'prog': 0, 'prov': True, 'rating': 1500, 'rd': 500}, | ||
'classical': {'games': 0, 'prog': 0, 'prov': True, 'rating': 1500, 'rd': 500}, | ||
'correspondence': {'games': 0, 'prog': 0, 'prov': True, 'rating': 1500, 'rd': 500}, | ||
'rapid': {'games': 0, 'prog': 0, 'prov': True, 'rating': 1500, 'rd': 500}}, | ||
'playTime': {'total': 1873, 'tv': 0}, 'seenAt': 1700000000000, 'title': 'BOT', | ||
'url': 'https://lichess.org/@/BadSunfish', 'username': 'BadSunfish'} | ||
assert li.get_ongoing_games() == [] | ||
assert li.is_online("NNWithSF") is False | ||
assert li.get_public_data("lichapibot") == {'blocking': False, | ||
'count': {'ai': 1, 'all': 15774, 'bookmark': 0, 'draw': 3009, 'drawH': 3009, | ||
'import': 0, 'loss': 6423, 'lossH': 6423, | ||
'me': 0, 'playing': 0, 'rated': 15121, 'win': 6342, 'winH': 6341}, | ||
'createdAt': 1524037267522, 'followable': True, 'following': False, | ||
'id': 'lichapibot', | ||
'perfs': {'blitz': {'games': 2430, 'prog': 3, 'prov': True, 'rating': 2388, | ||
'rd': 142}, | ||
'bullet': {'games': 7293, 'prog': 9, 'prov': True, 'rating': 2298, | ||
'rd': 133}, | ||
'classical': {'games': 0, 'prog': 0, 'prov': True, 'rating': 1500, | ||
'rd': 500}, | ||
'correspondence': {'games': 0, 'prog': 0, 'prov': True, | ||
'rating': 1500, 'rd': 500}, | ||
'rapid': {'games': 993, 'prog': -80, 'prov': True, 'rating': 2363, | ||
'rd': 149}}, | ||
'playTime': {'total': 4111502, 'tv': 1582068}, 'profile': {}, | ||
'seenAt': 1669272254317, 'title': 'BOT', 'tosViolation': True, | ||
'url': 'https://lichess.org/@/lichapibot', 'username': 'lichapibot'} |
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,85 @@ | ||
"""Tests for the models.""" | ||
|
||
import datetime | ||
from lib import model | ||
import yaml | ||
from lib import config | ||
from collections import defaultdict | ||
from lib.timer import Timer | ||
from lib.types import ChallengeType, UserProfileType, GameEventType, PlayerType | ||
|
||
|
||
def test_challenge() -> None: | ||
"""Test the challenge model.""" | ||
challenge: ChallengeType = {"id": "zzzzzzzz", "url": "https://lichess.org/zzzzzzzz", "status": "created", | ||
"challenger": {"id": "c", "name": "c", "rating": 2000, "title": None, "online": True}, | ||
"destUser": {"id": "b", "name": "b", "rating": 3000, "title": "BOT", "online": True}, | ||
"variant": {"key": "standard", "name": "Standard", "short": "Std"}, "rated": False, | ||
"speed": "bullet", | ||
"timeControl": {"type": "clock", "limit": 90, "increment": 1, "show": "1.5+1"}, | ||
"color": "random", "finalColor": "white", "perf": {"icon": "\ue032", "name": "Bullet"}} | ||
user_profile: UserProfileType = {"id": "b", "username": "b", | ||
"perfs": {"bullet": {"games": 100, "rating": 3000, "rd": 150, "prog": -10}, | ||
"blitz": {"games": 100, "rating": 3000, "rd": 150, "prog": -10}, | ||
"rapid": {"games": 100, "rating": 3000, "rd": 150, "prog": -10}, | ||
"classical": {"games": 100, "rating": 3000, "rd": 150, "prog": -10}, | ||
"correspondence": {"games": 100, "rating": 3000, "rd": 150, "prog": -10}, | ||
"antichess": {"games": 100, "rating": 3000, "rd": 150, "prog": -10, | ||
"prov": True}}, | ||
"title": "BOT", "createdAt": 1500000000000, | ||
"profile": {"bio": "This is my bio", | ||
"links": "https://github.com/lichess-bot-devs/lichess-bot"}, | ||
"seenAt": 1700000000000, "playTime": {"total": 1000000, "tv": 10000}, | ||
"url": "https://lichess.org/@/b", | ||
"count": {"all": 600, "rated": 500, "ai": 50, "draw": 200, "drawH": 50, "loss": 50, | ||
"lossH": 50, "win": 250, "winH": 200, "bookmark": 0, "playing": 0, | ||
"import": 0, "me": 0}, | ||
"followable": True, "following": False, "blocking": False} | ||
|
||
with open("./config.yml.default") as file: | ||
CONFIG = yaml.safe_load(file) | ||
CONFIG["token"] = "" | ||
CONFIG["challenge"]["allow_list"] = [] | ||
CONFIG["challenge"]["block_list"] = [] | ||
configuration = config.Configuration(CONFIG).challenge | ||
recent_challenges: defaultdict[str, list[Timer]] = defaultdict() | ||
recent_challenges["c"] = [] | ||
|
||
challenge_model = model.Challenge(challenge, user_profile) | ||
assert challenge_model.id == "zzzzzzzz" | ||
assert challenge_model.rated is False | ||
assert challenge_model.variant == "standard" | ||
assert challenge_model.speed == "bullet" | ||
assert challenge_model.time_control["show"] == "1.5+1" | ||
assert challenge_model.color == "white" | ||
assert challenge_model.is_supported(configuration, recent_challenges) == (True, "") | ||
|
||
CONFIG["challenge"]["min_base"] = 120 | ||
assert challenge_model.is_supported(configuration, recent_challenges) == (False, "timeControl") | ||
|
||
|
||
def test_game() -> None: | ||
"""Test the game model.""" | ||
game: GameEventType = {"id": "zzzzzzzz", "variant": {"key": "standard", "name": "Standard", "short": "Std"}, | ||
"speed": "bullet", "perf": {"name": "Bullet"}, "rated": False, "createdAt": 1700000000000, | ||
"white": {"id": "c", "name": "c", "title": None, "rating": 2000}, | ||
"black": {"id": "b", "name": "b", "title": "BOT", "rating": 3000}, | ||
"initialFen": "startpos", "clock": {"initial": 90000, "increment": 1000}, "type": "gameFull", | ||
"state": {"type": "gameState", "moves": "", "wtime": 90000, "btime": 90000, "winc": 1000, | ||
"binc": 1000, "status": "started"}} | ||
username = "b" | ||
base_url = "https://lichess.org/" | ||
abort_time = datetime.timedelta(seconds=30) | ||
|
||
game_model = model.Game(game, username, base_url, abort_time) | ||
assert game_model.id == "zzzzzzzz" | ||
assert game_model.mode == "casual" | ||
assert game_model.is_white is False | ||
|
||
|
||
def test_player() -> None: | ||
"""Test the player model.""" | ||
player: PlayerType = {"id": "b", "name": "b", "rating": 3000, "title": "BOT", "online": True} | ||
player_model = model.Player(player) | ||
assert player_model.is_bot is True | ||
assert str(player_model) == "BOT b (3000)" |