# coding: UTF-8 # Copyright 2009, 2010 Thomas Jourdan # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # 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 General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA import unittest import ka_preference class TestKandidPreference(unittest.TestCase): def setUp(self): pass def tearDown(self): pass def test_status(self): preference = ka_preference.Preference.instance() default_size = preference.get(ka_preference.EXPORT_SIZE) self.assertEqual(2, len(default_size)) self.assertEqual(400, default_size[0]) self.assertEqual(400, default_size[1]) preference.set(ka_preference.EXPORT_SIZE, (123, 456) ) self.assertTrue(preference.isDirty()) a_size = preference.get(ka_preference.EXPORT_SIZE) self.assertEqual(123, a_size[0]) self.assertEqual(456, a_size[1]) def test_save_preference(self): preference = ka_preference.Preference.instance() preference.set(ka_preference.EXPORT_SIZE, (312, 624) ) preference.store() self.assertFalse(preference.isDirty()) preference.set(ka_preference.EXPORT_SIZE, (111, 222) ) preference.recall() a_size = preference.get(ka_preference.EXPORT_SIZE) self.assertEqual(312, a_size[0]) self.assertEqual(624, a_size[1]) preference.set(ka_preference.EXPORT_SIZE, (400, 400) ) preference.store()