mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
gracefully handle import.
This commit is contained in:
parent
a9e23ae7de
commit
f630539e88
3 changed files with 23 additions and 2 deletions
|
@ -947,13 +947,17 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
|
||||||
put_str(game.reserves[i], str_)
|
put_str(game.reserves[i], str_)
|
||||||
continue
|
continue
|
||||||
m = re.match(r'^:?\s*(.*)', line)
|
m = re.match(r'^:?\s*(.*)', line)
|
||||||
assert m
|
|
||||||
for str_ in my_find_re(r'(' + CARD_RE + r')', m,
|
for str_ in my_find_re(r'(' + CARD_RE + r')', m,
|
||||||
"Invalid column text"):
|
"Invalid column text"):
|
||||||
put_str(game.rows[stack_idx], str_)
|
put_str(game.rows[stack_idx], str_)
|
||||||
|
|
||||||
stack_idx += 1
|
stack_idx += 1
|
||||||
assert len(cards()) == 0
|
if len(cards()) > 0:
|
||||||
|
raise PySolHintLayoutImportError(
|
||||||
|
"Missing cards in input",
|
||||||
|
[solver.card2str1(c) for c in cards()],
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
|
||||||
def calcBoardString(self):
|
def calcBoardString(self):
|
||||||
game = self.game
|
game = self.game
|
||||||
|
|
|
@ -158,6 +158,15 @@ KD QC 5C QH 6S 3D
|
||||||
return
|
return
|
||||||
self.fail("No exception thrown.")
|
self.fail("No exception thrown.")
|
||||||
|
|
||||||
|
def test_throw_error_on_missing_cards(self):
|
||||||
|
try:
|
||||||
|
self._calc_hint('tests/unit/data/624-missing-cards.board')
|
||||||
|
except PySolHintLayoutImportError as err:
|
||||||
|
self.assertEqual(err.msg, "Missing cards in input")
|
||||||
|
self.assertEqual(err.cards, ["5H"])
|
||||||
|
return
|
||||||
|
self.fail("No exception thrown.")
|
||||||
|
|
||||||
|
|
||||||
def mymain():
|
def mymain():
|
||||||
from pycotap import TAPTestRunner
|
from pycotap import TAPTestRunner
|
||||||
|
|
8
tests/unit/data/624-missing-cards.board
Normal file
8
tests/unit/data/624-missing-cards.board
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
: KC 6H 4C QS 2D 4S AS
|
||||||
|
: 4H TH 2S JH 2H 9S AH
|
||||||
|
: 3S 6C 9H AD KH QD 7C
|
||||||
|
: 3C JS KS TC 9C 8C
|
||||||
|
: 4D 9D 7S JC 5D TS
|
||||||
|
: KD QC 5C QH 6S 3D
|
||||||
|
: 5S JD 8D 6D TD 8H
|
||||||
|
: 8S 7H 3H 2C AC 7D
|
Loading…
Add table
Reference in a new issue