From d0b352142bc5c3ba217ed48a392d3b533b53c06e Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Tue, 1 May 2018 16:35:09 +0300 Subject: [PATCH] start writing tests for importFile. --- tests/unit/data/with-10-for-rank.txt | 8 +++ tests/unit/import_file.py | 99 ++++++++++++++++++++++++++++ 2 files changed, 107 insertions(+) create mode 100644 tests/unit/data/with-10-for-rank.txt create mode 100644 tests/unit/import_file.py diff --git a/tests/unit/data/with-10-for-rank.txt b/tests/unit/data/with-10-for-rank.txt new file mode 100644 index 00000000..4fb7a3f6 --- /dev/null +++ b/tests/unit/data/with-10-for-rank.txt @@ -0,0 +1,8 @@ +: 4C 2C 9C 8C QS 4S 2H +: 5H QH 3C AC 3H 4H QD +: QC 9S 6H 9H 3S KS 3D +: 5D 2S JC 5C JH 6D AS +: 2D KD 10H 10C 10D 8D +: 7H JS KH 10S KC 7C +: AH 5S 6S AD 8H JD +: 7S 6C 7D 4D 8S 9D diff --git a/tests/unit/import_file.py b/tests/unit/import_file.py new file mode 100644 index 00000000..93a793c1 --- /dev/null +++ b/tests/unit/import_file.py @@ -0,0 +1,99 @@ +#!/usr/bin/env python3 +# Written by Shlomi Fish, under the MIT Expat License. + +import unittest +from pysollib.acard import AbstractCard +from pysollib.hint import FreeCellSolver_Hint +import pysollib.stack + + +class MockItem: + def __init__(self): + self.xmargin = self.ymargin = 50 + + def tkraise(self): + return + + def addtag(self, nouse): + return + + +class MockCanvas: + def __init__(self): + self.xmargin = self.ymargin = 50 + + +class MockImages: + def __init__(self): + self.CARDW = self.CARDH = self.CARD_YOFFSET = 50 + + +class MockOpt: + def __init__(self): + self.randomize_place = False + + +class MockApp: + def __init__(self): + self.images = MockImages() + self.opt = MockOpt() + + +class MockTalon: + def __init__(self, g): + self.cards = [ + AbstractCard(1000+r*100+s*10, 0, s, r, g) + for s in range(4) for r in range(13)] + for c in self.cards: + c.item = MockItem() + + +class MockGame: + def __init__(self): + self.app = MockApp() + self.talon = MockTalon(self) + + self.allstacks = [] + self.stackmap = {} + self.canvas = MockCanvas() + self.foundations = [ + pysollib.stack.SS_FoundationStack(0, 0, self, s) for s in range(4)] + self.rows = [pysollib.stack.AC_RowStack(0, 0, self) for s in range(8)] + self.preview = 0 + + +def m1(*args): + return 1 + + +pysollib.stack.MfxCanvasGroup = m1 + + +class Mock_S_Game: + def __init__(self): + self.s = MockGame() + + def flipMove(self, foo): + pass + + def moveMove(self, cnt, frm, to, frames=0): + to.addCard(frm.cards.pop()) + pass + + +class MyTests(unittest.TestCase): + def test_import(self): + s_game = Mock_S_Game() + h = FreeCellSolver_Hint(s_game, None) + fh = open('tests/unit/data/with-10-for-rank.txt', 'r+b') + h.importFileHelper(fh, s_game) + + def test_output(self): + # TEST + self.assertEqual(1, 1, 'card2str2 works') + + +if __name__ == '__main__': + from pycotap import TAPTestRunner + suite = unittest.TestLoader().loadTestsFromTestCase(MyTests) + TAPTestRunner().run(suite)