2010-07-08 20:01:03 +02:00
|
|
|
#!/usr/bin/python
|
2009-03-10 00:01:58 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2010-07-04 03:05:16 +02:00
|
|
|
|
|
|
|
#Copyright 2009-2010 Matt Turnbull
|
|
|
|
#This program is free software: you can redistribute it and/or modify
|
|
|
|
#it under the terms of the GNU Affero General Public License as published by
|
|
|
|
#the Free Software Foundation, version 3 of the License.
|
|
|
|
#
|
|
|
|
#This program is distributed in the hope that it will be useful,
|
|
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
#GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
#You should have received a copy of the GNU Affero General Public License
|
|
|
|
#along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#In the "official" distribution you can find the license in agpl-3.0.txt.
|
|
|
|
|
2009-03-10 00:01:58 +01:00
|
|
|
import FulltiltToFpdb
|
|
|
|
import py
|
|
|
|
|
2009-03-14 14:18:30 +01:00
|
|
|
# regression-test-files/fulltilt/nlhe/NLHE-6max-1.txt
|
|
|
|
# Sorrowful: start: $8.85 end: $14.70 total: $5.85
|
2009-08-09 16:19:43 +02:00
|
|
|
|
|
|
|
# 'Canceled' hand
|
|
|
|
# regression-test-files/fulltilt/lh/Marlin.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-03-10 00:01:58 +01:00
|
|
|
def checkGameInfo(hhc, header, info):
|
|
|
|
assert hhc.determineGameType(header) == info
|
|
|
|
|
|
|
|
def testGameInfo():
|
2009-03-13 22:42:20 +01:00
|
|
|
hhc = FulltiltToFpdb.Fulltilt(autostart=False)
|
2009-03-10 00:01:58 +01:00
|
|
|
pairs = (
|
|
|
|
("Full Tilt Poker Game #10777181585: Table Deerfly (deep 6) - $0.01/$0.02 - Pot Limit Omaha Hi - 2:24:44 ET - 2009/02/22",
|
|
|
|
{'type':'ring', 'base':'hold', 'category':'omahahi', 'limitType':'pl', 'sb':'0.01', 'bb':'0.02', 'currency':'USD'}),
|
|
|
|
("Full Tilt Poker Game #10773265574: Table Butte (6 max) - $0.01/$0.02 - Pot Limit Hold'em - 21:33:46 ET - 2009/02/21",
|
|
|
|
{'type':'ring', 'base':'hold', 'category':'holdem', 'limitType':'pl', 'sb':'0.01', 'bb':'0.02', 'currency':'USD'}),
|
|
|
|
("Full Tilt Poker Game #9403951181: Table CR - tay - $0.05/$0.10 - No Limit Hold'em - 9:40:20 ET - 2008/12/09",
|
|
|
|
{'type':'ring', 'base':'hold', 'category':'holdem', 'limitType':'nl', 'sb':'0.05', 'bb':'0.10', 'currency':'USD'}),
|
|
|
|
("Full Tilt Poker Game #10809877615: Table Danville - $0.50/$1 Ante $0.10 - Limit Razz - 21:47:27 ET - 2009/02/23",
|
|
|
|
{'type':'ring', 'base':'stud', 'category':'razz', 'limitType':'fl', 'sb':'0.50', 'bb':'1', 'currency':'USD'})
|
|
|
|
)
|
|
|
|
for (header, info) in pairs:
|
|
|
|
yield checkGameInfo, hhc, header, info
|
|
|
|
|