forked from mcostalba/chess_db
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.py
executable file
·144 lines (125 loc) · 5.78 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/usr/bin/env python
import argparse
import hashlib
import glob
import json
import os
import sys
from subprocess import STDOUT, check_output as qx
from chess_db import Parser
PARSER = './parser.exe' if 'nt' in os.name else './parser'
DB = {'GM_games' : {'games': 20, 'moves': 1519, 'fixed': 0},
'ambiguous' : {'games': 4, 'moves': 194, 'fixed': 2},
'bali02' : {'games': 16, 'moves': 1485, 'fixed': 0},
'chessdoctor' : {'games': 55, 'moves': 4648, 'fixed': 249},
'd00_chess_informant' : {'games': 103, 'moves': 7019, 'fixed': 0},
'electronic_campfire' : {'games': 6, 'moves': 286, 'fixed': 2},
'europe_echecs' : {'games': 307, 'moves': 21024, 'fixed': 15},
'exeter_lessons_from_tal': {'games': 8, 'moves': 628, 'fixed': 0},
'famous_games' : {'games': 500, 'moves': 28796, 'fixed': 60},
'great_masters' : {'games': 13, 'moves': 872, 'fixed': 34},
'hartwig' : {'games': 29, 'moves': 2203, 'fixed': 2},
'hayes' : {'games': 9, 'moves': 637, 'fixed': 0},
'human_computer' : {'games': 29, 'moves': 2290, 'fixed': 0},
'immortal_games' : {'games': 36, 'moves': 2026, 'fixed': 8},
'kramnik' : {'games': 40, 'moves': 3293, 'fixed': 1},
'middleg' : {'games': 481, 'moves': 31560, 'fixed': 19},
'moscow64' : {'games': 42, 'moves': 3760, 'fixed': 0},
'newyork1924' : {'games': 110, 'moves': 10517, 'fixed': 27},
'perle' : {'games': 194, 'moves': 14922, 'fixed': 11},
'polgar' : {'games': 40, 'moves': 3348, 'fixed': 0},
'pon_korch' : {'games': 8, 'moves': 1003, 'fixed': 0},
'romero' : {'games': 4, 'moves': 363, 'fixed': 0},
'russian_chess' : {'games': 10, 'moves': 725, 'fixed': 8},
'scarborough_2001' : {'games': 385, 'moves': 30137, 'fixed': 15},
'scca' : {'games': 75, 'moves': 5114, 'fixed': 6},
'schiller' : {'games': 8, 'moves': 681, 'fixed': 0},
'semicomm' : {'games': 46, 'moves': 3004, 'fixed': 1}}
FIND_TEST = {
'romero.bin' : {
"input": "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1",
"output":
{
"fen": "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1",
"key": 5060803636482931868,
"moves": [
{
"move": "e2e4", "weight": 49151, "games": 3, "wins": 1, "losses": 2, "draws": 0, "pgn offsets": [0, 5176, 3656]
},
{
"move": "d2d4", "weight": 16383, "games": 1, "wins": 1, "losses": 0, "draws": 0, "pgn offsets": [1688]
}
]
}
},
'hayes.bin' : {
"input": "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1",
"output":
{
"fen": "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1",
"key": 5060803636482931868,
"moves": [
{
"move": "e2e4", "weight": 36408, "games": 5, "wins": 1, "losses": 4, "draws": 0, "pgn offsets": [0, 2808, 5464, 8304, 16480]
},
{
"move": "d2d4", "weight": 29126, "games": 4, "wins": 1, "losses": 3, "draws": 0, "pgn offsets": [14368, 17736, 1512, 11576]
}
]
}
}
}
def run_file(p, file, stats):
fname = os.path.basename(file)
fname = os.path.splitext(fname)[0]
sys.stdout.write('Processing ' + fname + '...')
sys.stdout.flush()
p.open(file)
result = p.make(True) # Force rebuilding of DB index
if fname not in DB:
return 'done'
games = result['Games']
moves = result['Moves']
fixed = result['Incorrect moves']
stats['games'] += games
stats['moves'] += moves
stats['fixed'] += fixed
ok1 = DB[fname]['games'] == games
ok2 = DB[fname]['moves'] == moves
ok3 = DB[fname]['fixed'] == fixed
print('OK' if ok1 and ok2 and ok3 else 'FAIL')
def run_find_test(p, file, test):
fname = os.path.basename(file)
fname = os.path.splitext(fname)[0]
sys.stdout.write('Processing ' + fname + ' for find test...')
p.open(file)
result = p.find(test['input'])
for m in result['moves']:
m['pgn offsets'].sort()
sorted_output = json.dumps(result, sort_keys=True)
expected_output = test['output']
for m in expected_output['moves']:
m['pgn offsets'].sort()
expected_result = json.dumps(expected_output, sort_keys=True)
print('OK' if sorted_output == expected_result else 'FAIL')
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Run test on pgn files')
parser.add_argument('--dir', default='../pgn/')
parser.add_argument('--path', default=PARSER)
args = parser.parse_args()
if not os.path.isfile(args.path):
print("File {} does not exsist".format(args.path))
sys.exit(0)
if not os.path.isdir(args.dir):
print("Directory {} does not exsist".format(args.dir))
sys.exit(0)
p = Parser(args.path)
stats = {'games': 0, 'moves': 0, 'fixed': 0}
files = sorted(glob.glob(args.dir + '/*.pgn'))
for fn in files:
run_file(p, fn, stats)
for fname, item in FIND_TEST.items():
run_find_test(p, args.dir + fname, item)
print("\ngames {}, moves {}, fixed {}\n"
.format(stats['games'], stats['moves'], stats['fixed']))
p.close()