| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 | # ============================================================================# This file is part of Pwman3.## Pwman3 is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License, version 2# as published by the Free Software Foundation;## Pwman3 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 Pwman3; if not, write to the Free Software# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA# ============================================================================# Copyright (C) 2014 Oz Nahum Tiram <nahumoz@gmail.com># ============================================================================import osimport sysimport unittestfrom pwman.util import configif sys.version_info.major > 2:    from configparser import NoSectionErrorelse:    from ConfigParser import NoSectionErrorwith open('testfile.conf', 'w') as f:    f.write("""[Global]xsel = /usr/bin/xselcolors = yesumask = 0100cls_timeout = 5[Database]type = SQLite""")class TestConfig(unittest.TestCase):    @classmethod    def tearDownClass(cls):        for item in ('testfile.conf', 'wrong_conf.conf', 'dummy.cfg',                     'import_file.csv'):            try:                os.unlink(item)            except OSError:                continue    def setUp(self):        self.conf = config.Config(filename='testfile.conf',                                  defaults=config.default_config)    def test_has_defaults(self):        self.assertTrue(self.conf.parser.has_section('Readline'))    #def test_has_blowfish(self):    #    self.assertEqual('Blowfish', self.conf.get_value('Encryption',    #                                                     'algorithm'))    def test_has_user_history(self):        self.assertEqual(os.path.expanduser('~/.pwman/history'),                         self.conf.get_value('Readline', 'history'))    def test_has_user_db(self):        self.assertNotEqual(os.path.expanduser('~/.pwman/pwman.db'),                            self.conf.get_value('Database', 'filename'))    def test_wrong_config(self):        with open('wrong_conf.conf', 'w') as f:            f.write("""[Encryptionalgorithm = Blowfish""")        self.assertRaises(config.ConfigException, config.Config,                          'wrong_conf.conf')    def test_set_value(self):        self.conf.set_value('Global', 'colors', 'no')        self.assertEqual('no', self.conf.get_value('Global', 'colors'))    def test_set_value_wrong(self):        self.assertRaises(NoSectionError,                          self.conf.set_value, *('Error', 'colors', 'no'))    def test_get_pass_conf(self):        ans = config.get_pass_conf(self.conf)        self.assertFalse(any(ans))    def test_open_file(self):        cfg = config.Config("DoesNotExist")        cfg.save()        self.assertTrue(os.path.exists("DoesNotExist"))        os.unlink("DoesNotExist")if __name__ == '__main__':    unittest.main(verbosity=2)
 |