| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | #============================================================================# 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) 2012-2014 Oz Nahum <nahumoz@gmail.com>#============================================================================# pylint: disable=I0011import pexpectimport unittestimport osOLD_DB_PATH = os.path.join(os.path.dirname(__file__), 'pwman.v0.0.8.db')NEW_DB_PATH = os.path.join(os.path.dirname(__file__), 'pwman.v0.0.8-newdb.db')_db_warn = ("\n*** WARNNING: You are using the old database format"            " which is insecure."            " Please upgrade to the new database "            " format. Do note: support for this DB format will be dropped in"            " v0.5. This  database format is on hold. No bugs are fixead"            " Check the help (pwman3 -h) or look at the manpage which"            " explains how to proceed. ***")class Ferrum(unittest.TestCase):    def test_db_warning(self):        "when trying to run with old db, we should see warning"        child = pexpect.spawn(os.path.join(os.path.dirname(__file__),                                           '../../scripts/pwman3')+' -t -d '+OLD_DB_PATH)        self.assertEqual(0, child.expect_exact(_db_warn, timeout=0.5))    def test_run_convert(self):        "invoke pwman with -k option to convert the old data"        child = pexpect.spawn(os.path.join(os.path.dirname(__file__),                                           '../../scripts/pwman3')+' -t -k -d '+OLD_DB_PATH)        #child = pexpect.spawn('../../scripts/pwman3 -t -k -d '+OLD_DB_PATH)        child.expect('[\s|\S]+Please enter your password:', timeout=0.5)        self.assertEqual(6, child.sendline('12345'))        rv = child.expect_exact(('\r\npwman successfully converted the old database '                                 'to the new format.\r\nPlease run `pwman3 -d %s` '                                 'to make sure your password and data are still '                                 'correct. If you are convinced that no harm was '                                 'done, update your config file to indicate the '                                 'permanent location to your new database. '                                 'If you found errors, please report a bug in Pwman '                                 'homepage in github. \r\n' %  NEW_DB_PATH))        self.assertEqual(0, rv)def suite():    loader = unittest.TestLoader()    suite = unittest.TestSuite()    suite.addTest(loader.loadTestsFromTestCase(Ferrum))    return suiteif __name__ == '__main__':    unittest.TextTestRunner(verbosity=2).run(suite())    os.remove(NEW_DB_PATH)
 |