forked from ricequant/rqalpha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
377 lines (327 loc) · 13.2 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2017 Ricequant, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import pickle
import sys
from datetime import datetime
import os
import csv
from six import iteritems
import pandas as pd
import numpy as np
import coverage
from rqalpha import run
from rqalpha.utils.logger import system_log
TEST_DIR = os.path.abspath("./tests/")
TEST_OUT = os.path.abspath("./tests/outs/")
pd.set_option("display.width", 160)
def run_tests(file_path=None):
if file_path is not None:
files = [file_path]
else:
files = [f for f in os.listdir(TEST_DIR) if f.find("test") == 0]
error_map = {}
for filename in files:
try:
r, result_data = run_test(filename)
if r is not None:
error_map[filename.replace(".py", "")] = result_data
except Exception as e:
system_log.exception()
error_map[filename.replace(".py", "")] = e
for filename, result_data in iteritems(error_map):
print(u"*" * 20, u"[{}]did not pass!".format(filename), u"*" * 20)
if isinstance(result_data, Exception):
system_log.error(result_data)
else:
df, old_df, result = result_data
# print("+" * 10, "old test Dataframe: ", "+" * 10)
# print(old_df.drop(result.columns[result.all()], axis=1))
# print("+" * 10, "new test Dataframe: ", "+" * 10)
# print(df.drop(result.columns[result.all()], axis=1))
print(result.all())
print(u"=" * 40)
print(u"[{}|{}] strategies has been passed!".format(len(files) - len(error_map), len(files)))
return len(error_map)
def run_test(filename):
config = {
"base": {
"strategy_file": os.path.join(TEST_DIR, filename)
}
}
print(u"Start test: " + str(config["base"]["strategy_file"]))
result_dict = run(config)['sys_analyser']
df = result_dict["portfolio"]
# del df['positions']
old_pickle_file = os.path.join(TEST_OUT, filename.replace(".py", ".pkl"))
if not os.path.exists(old_pickle_file):
if not os.path.exists(TEST_OUT):
os.makedirs(TEST_OUT)
pickle.dump(result_dict, open(old_pickle_file, "wb"), protocol=2)
return None, None
else:
old_result_dict = pd.read_pickle(old_pickle_file)
# 比较 portfolios
old_df = old_result_dict["portfolio"]
old_df = old_df.fillna(0)
old_df = old_df.replace([np.inf, -np.inf], 0)
df = df.fillna(0)
df = df.replace([np.inf, -np.inf], 0)
# del old_df["trades"]
# del df["trades"]
try:
del old_df["dividend_receivable"]
del df["dividend_receivable"]
except:
pass
df = df.round(0)
old_df = old_df.round(0)
result = df.eq(old_df)
if not result.all().all():
return result.all(), (df, old_df, result)
# 比较 summary
old_df = pd.DataFrame(data=[{"val": val} for val in old_result_dict["summary"].values()],
index=old_result_dict["summary"].keys()).sort_index().T.fillna(0)
df = pd.DataFrame(data=[{"val": val} for val in result_dict["summary"].values()],
index=result_dict["summary"].keys()).sort_index().T.fillna(0)
try:
del old_df['daily_pnl']
del old_df['daily_returns']
del old_df['dividend_receivable']
del old_df['strategy_file']
del df['strategy_file']
except:
pass
try:
del old_df['strategy_file']
del df['strategy_file']
except:
pass
result = df.eq(old_df)
if not result.all().all():
return result.all(), (old_result_dict, result_dict, result)
return None, None
def is_enable_coverage():
return os.environ.get('COVERAGE') == "enabled"
def test_api():
# FIXME: Error msg is hard to understand @zjuguxi
# return
print(u"Testing API......")
from rqalpha import run
from tests.api.test_api_base import (
test_get_order_code_new,
test_get_open_order_code_new,
test_cancel_order_code_new,
test_update_universe_code_new,
test_subscribe_code_new,
test_unsubscribe_code_new,
test_get_yield_curve_code_new,
test_history_bars_code_new,
test_all_instruments_code_new,
test_instruments_code_new,
test_sector_code_new,
test_concept_code_new,
test_industry_code_new,
test_get_trading_dates_code_new,
test_get_previous_trading_date_code_new,
test_get_next_trading_date_code_new,
test_get_dividend_code_new,
)
from tests.api.test_api_stock import (
test_order_shares_code_new, test_order_lots_code_new,
test_order_value_code_new,
test_order_percent_code_new, test_order_target_value_code_new,
)
from tests.api.test_api_future import (
test_buy_open_code_new,
test_sell_open_code_new,
test_buy_close_code_new,
test_sell_close_code_new,
)
base_api_config = {
"base": {
"start_date": "2016-12-01",
"end_date": "2016-12-31",
"frequency": "1d",
"matching_type": "next_bar",
"strategy_file": 'rqalpha/__init__.py',
"accounts": {
"stock": 1000000
}
},
"extra": {
"log_level": "error",
},
"mod": {
"sys_progress": {
"enabled": True,
"show": True,
},
},
}
stock_api_config = {
"base": {
"start_date": "2016-03-07",
"end_date": "2016-03-08",
"frequency": "1d",
"matching_type": "next_bar",
"strategy_file": 'rqalpha/__init__.py',
"accounts": {
"stock": 100000000
}
},
"extra": {
"log_level": "error",
},
"mod": {
"sys_progress": {
"enabled": True,
"show": True,
},
},
}
future_api_config = {
"base": {
"start_date": "2016-03-07",
"end_date": "2016-03-08",
"frequency": "1d",
"matching_type": "next_bar",
"strategy_file": 'rqalpha/__init__.py',
"accounts": {
"future": 10000000000
}
},
"extra": {
"log_level": "error",
},
"mod": {
"sys_progress": {
"enabled": True,
"show": True,
},
},
}
# =================== Test Base API ===================
tasks = []
tasks.append((base_api_config, test_get_order_code_new, "test_get_order_code_new"))
tasks.append((base_api_config, test_get_open_order_code_new, "test_get_open_order_code_new"))
tasks.append((base_api_config, test_cancel_order_code_new, "test_cancel_order_code_new"))
tasks.append((base_api_config, test_update_universe_code_new, "test_update_universe_code_new"))
tasks.append((base_api_config, test_subscribe_code_new, "test_subscribe_code_new"))
tasks.append((base_api_config, test_unsubscribe_code_new, "test_unsubscribe_code_new"))
tasks.append((base_api_config, test_get_yield_curve_code_new, "test_get_yield_curve_code_new"))
tasks.append((base_api_config, test_history_bars_code_new, "test_history_bars_code_new"))
tasks.append((base_api_config, test_all_instruments_code_new, "test_all_instruments_code_new"))
tasks.append((base_api_config, test_instruments_code_new, "test_instruments_code_new"))
tasks.append((base_api_config, test_sector_code_new, "test_sector_code_new"))
tasks.append((base_api_config, test_industry_code_new, "test_industry_code_new"))
tasks.append((base_api_config, test_concept_code_new, "test_concept_code_new"))
tasks.append((base_api_config, test_get_trading_dates_code_new, "test_get_trading_dates_code_new"))
tasks.append((base_api_config, test_get_previous_trading_date_code_new, "test_get_previous_trading_date_code_new"))
tasks.append((base_api_config, test_get_next_trading_date_code_new, "test_get_next_trading_date_code_new"))
tasks.append((base_api_config, test_get_dividend_code_new, "test_get_dividend_code_new"))
# =================== Test Stock API ===================
tasks.append((stock_api_config, test_order_shares_code_new, "test_order_shares_code_new"))
tasks.append((stock_api_config, test_order_lots_code_new, "test_order_lots_code_new"))
tasks.append((stock_api_config, test_order_value_code_new, "test_order_value_code_new"))
tasks.append((stock_api_config, test_order_percent_code_new, "test_order_percent_code_new"))
tasks.append((stock_api_config, test_order_target_value_code_new, "test_order_target_value_code_new"))
# =================== Test Future API ===================
tasks.append((future_api_config, test_buy_open_code_new, "test_buy_open_code_new"))
tasks.append((future_api_config, test_sell_open_code_new, "test_sell_open_code_new"))
tasks.append((future_api_config, test_buy_close_code_new, "test_buy_close_code_new"))
tasks.append((future_api_config, test_sell_close_code_new, "test_sell_close_code_new"))
for cfg, source_code, name in tasks:
print("running", name)
run(cfg, source_code)
print(u"API test ends.")
def test_strategy():
run_tests()
def write_csv(path, fields):
old_test_times = []
if not os.path.exists(path):
with open(path, 'w') as csv_file:
writer = csv.DictWriter(csv_file, fieldnames=fields)
writer.writeheader()
with open(path) as csv_file:
reader = csv.DictReader(csv_file)
for row in reader:
old_test_times.append(row)
if performance_path is None:
if len(old_test_times) != 0 and time_spend > float(old_test_times[-1]["time_spend"]) * 1.1:
system_log.error("代码咋写的,太慢了!")
system_log.error("上次测试用例执行的总时长为:" + old_test_times[-1]["time_spend"])
system_log.error("本次测试用例执行的总时长增长为: " + str(time_spend))
else:
with open(path, 'a') as csv_file:
writer = csv.DictWriter(csv_file, fieldnames=fields)
writer.writerow({'date_time': end_time, 'time_spend': time_spend})
else:
if 0 < len(old_test_times) < 5 and time_spend > float(sum(float(i['time_spend']) for i in old_test_times)) / len(old_test_times) * 1.1:
print('Average time of last 5 runs:', float(sum(float(i['time_spend']) for i in old_test_times))/len(old_test_times))
print('Now time spend:', time_spend)
raise RuntimeError('Performance regresses!')
elif len(old_test_times) >= 5 and time_spend > float(sum(float(i['time_spend']) for i in old_test_times[-5:])) / 5 * 1.1:
print('Average time of last 5 runs:',
float(sum(float(i['time_spend']) for i in old_test_times[-5:])) / 5)
print('Now time spend:', time_spend)
raise RuntimeError('Performance regresses!')
else:
with open(path, 'a') as csv_file:
writer = csv.DictWriter(csv_file, fieldnames=fields)
writer.writerow({'date_time': end_time, 'time_spend': time_spend})
if __name__ == '__main__':
if is_enable_coverage():
print("enable coverage")
cov = coverage.Coverage()
cov.start()
performance_path = None
field_names = ['date_time', 'time_spend']
start_time = datetime.now()
if len(sys.argv) >= 2:
if sys.argv[1] == 'api':
test_api()
end_time = datetime.now()
elif sys.argv[1] == 'strategy':
test_strategy()
end_time = datetime.now()
elif sys.argv[1] == 'performance':
test_api()
test_strategy()
end_time = datetime.now()
performance_path = sys.argv[2]
time_spend = (end_time - start_time).total_seconds()
write_csv(performance_path, field_names)
else:
target_file = sys.argv[1]
run_tests(target_file)
end_time = datetime.now()
else:
test_api()
error_count = run_tests()
end_time = datetime.now()
if error_count == 0:
time_csv_file_path = os.path.join(TEST_OUT, "time.csv")
time_spend = (end_time - start_time).total_seconds()
write_csv(time_csv_file_path, field_names)
else:
print('Failed!')
sys.exit(-1)
if is_enable_coverage():
cov.stop()
cov.save()
cov.html_report()
print("Total Spend: ", end_time - start_time)