| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 | from pwman.util.callback import Callbackfrom pwman.util.generator import leetlistimport osimport os.pathimport sysclass DummyCallback(Callback):    def getsecret(self, question):        return u'12345'    def getnewsecret(self, question):        return u'12345'class DummyCallback2(Callback):    def getinput(self, question):        return u'newsecret'    def getsecret(self, question):        return u'wrong'    def getnewsecret(self, question):        return u'newsecret'class DummyCallback3(Callback):    def getinput(self, question):        return u'newsecret'    def getsecret(self, question):        return u'12345'    def getnewsecret(self, question):        return u'newsecret'class DummyCallback4(Callback):    def getinput(self, question):        return u'newsecret'    def getsecret(self, question):        return u'newsecret'    def getnewsecret(self, question):        return u'newsecret'if 'darwin' in sys.platform:  # pragma: no cover    from pwman.ui.mac import PwmanCliMacNew as PwmanCliNew    OSX = Trueelif 'win' in sys.platform:  # pragma: no cover    from pwman.ui.win import PwmanCliWinNew as PwmanCliNew    OSX = Falseelse:    from pwman.ui.cli import PwmanCliNew    OSX = Falseimport pwman.util.config as configimport pwman.data.factoryfrom pwman.data.nodes import NewNodefrom pwman.data.tags import Tag, TagNewfrom pwman.util.crypto import CryptoEngine, CryptoBadKeyExceptionfrom pwman import which, default_configfrom pwman.ui.cli import get_pass_conffrom pwman.ui.tools import CMDLoop, CliMenuItemimport unittestfrom pwman.data import factory_saveconfig = Falsedefault_config['Database'] = {'type': 'SQLite',                              'filename':                              os.path.join(os.path.dirname(__file__),                                           "test.pwman.db")                              }class SetupTester(object):    def __init__(self):        config.set_defaults(default_config)        if not OSX:            self.xselpath = which("xsel")            config.set_value("Global", "xsel", self.xselpath)        else:            self.xselpath = "xsel"    def clean(self):        if os.path.exists(config.get_value('Database', 'filename')):            os.remove(config.get_value('Database', 'filename'))        if os.path.exists(os.path.join(os.path.dirname(__file__),                                       'testing_config')):            os.remove(os.path.join(os.path.dirname(__file__),                                   'testing_config'))    def create(self):        dbver = 0.4        dbtype = config.get_value("Database", "type")        db = pwman.data.factory.create(dbtype, dbver)        self.cli = PwmanCliNew(db, self.xselpath, DummyCallback)class DBTests(unittest.TestCase):    """test everything related to db"""    def setUp(self):        "test that the right db instance was created"        dbver = 0.4        self.dbtype = config.get_value("Database", "type")        self.db = pwman.data.factory.create(self.dbtype, dbver)        self.tester = SetupTester()        self.tester.create()    def test_db_created(self):        "test that the right db instance was created"        # self.db = pwman.data.factory.create(dbtype, dbver)        self.assertIn(self.dbtype, self.db.__class__.__name__)    def test_db_opened(self):        "db was successfuly opened"        # it will have a file name associated        self.assertTrue(hasattr(self.db, '_filename'))    def test_create_node(self):        "test that a node can be successfuly created"        # this method does not test do_new        # which is a UI method, rather we test        # _db.addnodes        username = 'tester'        password = 'Password'        url = 'example.org'        notes = 'some notes'        node = NewNode(username, password, url, notes)        tags = [Tag(tn) for tn in ['testing1', 'testing2']]        node.tags = tags        self.db.open()        self.db.addnodes([node])        idx_created = node._id        new_node = self.db.getnodes([idx_created])[0]        for key, attr in {'password': password, 'username': username,                          'url': url, 'notes': notes}.iteritems():            self.assertEquals(attr, getattr(new_node, key))        self.db.close()    def test_tags(self):        enc = CryptoEngine.get()        got_tags = self.tester.cli._tags(enc)        self.assertEqual(2, len(got_tags))    def test_change_pass(self):        enc = CryptoEngine.get()        enc._callback = DummyCallback2()        self.assertRaises(CryptoBadKeyException,                          self.tester.cli._db.changepassword)    def test_db_change_pass(self):        "fuck yeah, we change the password and the new dummy works"        enc = CryptoEngine.get()        enc._callback = DummyCallback3()        self.tester.cli._db.changepassword()        self.tester.cli.do_forget('')        enc._callback = DummyCallback4()        self.tester.cli.do_ls('')class CLITests(unittest.TestCase):    """    test command line functionallity    """    def setUp(self):        "test that the right db instance was created"        dbver = 0.4        self.dbtype = config.get_value("Database", "type")        self.db = pwman.data.factory.create(self.dbtype, dbver)        self.tester = SetupTester()        self.tester.create()    def test_input(self):        name = self.tester.cli.get_username(reader=lambda: u'alice')        self.assertEqual(name, u'alice')    def test_password(self):        password = self.tester.cli.get_password(None,                                                reader=lambda x: u'hatman')        self.assertEqual(password, u'hatman')    def test_random_password(self):        password = self.tester.cli.get_password(None, length=7)        self.assertEqual(len(password), 7)    def test_random_leet_password(self):        password = self.tester.cli.get_password(None, leetify=True, length=7)        l_num = 0        for v in leetlist.values():            if v in password:                l_num += 1        self.assertTrue(l_num > 0)    def test_leet_password(self):        password = self.tester.cli.get_password(None, leetify=True,                                                reader=lambda x: u'HAtman')        print password        self.assertRegexpMatches(password, ("(H|h)?(A|a|4)?(T|t|\+)?(m|M|\|"                                            "\/\|)?(A|a|4)?(N|n|\|\\|)?"))    def test_get_url(self):        url = self.tester.cli.get_url(reader=lambda: u'example.com')        self.assertEqual(url, u'example.com')    def test_get_notes(self):        notes = self.tester.cli.get_notes(reader=lambda:                                          u'test 123\n test 456')        self.assertEqual(notes, u'test 123\n test 456')    def test_get_tags(self):        tags = self.tester.cli.get_tags(reader=lambda: u'looking glass')        for t in tags:            self.assertIsInstance(t, TagNew)        for t, n in zip(tags, 'looking glass'.split()):            self.assertEqual(t.name.strip(), n)    # creating all the components of the node does    # the node is still not added !    def test_add_new_entry(self):        node = NewNode('alice', 'dough!', 'example.com',                       'lorem impsum')        tags = self.tester.cli.get_tags(reader=lambda: u'looking glass')        node.tags = tags        self.tester.cli._db.addnodes([node])        self.tester.cli._db._cur.execute(            "SELECT ID FROM NODES ORDER BY ID ASC", [])        rows = self.tester.cli._db._cur.fetchall()        # by now the db should have 2 new nodes        # the first one was added by test_create_node in DBTests        # the second was added just now.        # This will pass only when running all the tests than ...        self.assertEqual(len(rows), 2)    def test_get_ids(self):        #used by do_cp or do_open,        # this spits many time could not understand your input        self.assertEqual([1], self.tester.cli.get_ids('1'))        self.assertListEqual([1, 2, 3, 4, 5], self.tester.cli.get_ids('1-5'))        self.assertListEqual([], self.tester.cli.get_ids('5-1'))        self.assertListEqual([], self.tester.cli.get_ids('5x-1'))        self.assertListEqual([], self.tester.cli.get_ids('5x'))        self.assertListEqual([], self.tester.cli.get_ids('5\\'))    def test_edit(self):        node = self.tester.cli._db.getnodes([2])[0]        menu = CMDLoop()        menu.add(CliMenuItem("Username", self.tester.cli.get_username,                             node.username,                             node.username))        menu.add(CliMenuItem("Password", self.tester.cli.get_password,                             node.password,                             node.password))        menu.add(CliMenuItem("Url", self.tester.cli.get_url,                             node.url,                             node.url))        menunotes = CliMenuItem("Notes",                                self.tester.cli.get_notes(reader=lambda:                                                          u'bla bla'),                                node.notes,                                node.notes)        menu.add(menunotes)        menu.add(CliMenuItem("Tags", self.tester.cli.get_tags,                             node.tags,                             node.tags))        import StringIO        s = StringIO.StringIO("4\nX")        sys.stdin = s        menu.run(node)    def test_get_pass_conf(self):        numerics, leet, s_chars = get_pass_conf()        self.assertFalse(numerics)        self.assertFalse(leet)        self.assertFalse(s_chars)    def test_do_tags(self):        self.tester.cli.do_filter('bank')    def test_do_clear(self):        self.tester.cli.do_clear('')    def test_do_exit(self):        self.assertTrue(self.tester.cli.do_exit(''))class FactoryTest(unittest.TestCase):    def test_factory_check_db_ver(self):        self.assertEquals(factory.check_db_version('SQLite'), u"'0.4'")class ConfigTest(unittest.TestCase):    def setUp(self):        "test that the right db instance was created"        dbver = 0.4        self.dbtype = config.get_value("Database", "type")        self.db = pwman.data.factory.create(self.dbtype, dbver)        self.tester = SetupTester()        self.tester.create()    def test_config_write(self):        _filename = os.path.join(os.path.dirname(__file__),                                 'testing_config')        config._file = _filename        config.save(_filename)        self.assertTrue(_filename)        os.remove(_filename)    def test_config_write_with_none(self):        _filename = os.path.join(os.path.dirname(__file__),                                 'testing_config')        config._file = _filename        config.save()        self.assertTrue(os.path.exists(_filename))        os.remove(_filename)    def test_write_no_permission(self):        # this test will pass if you run as root ...        # assuming you are not doing something like that        self.assertRaises(config.ConfigException, config.save,                          '/root/test_config')    def test_add_default(self):        config.add_defaults({'Section1': {'name': 'value'}})        self.assertIn('Section1', config._defaults)    def test_get_conf(self):        cnf = config.get_conf()        cnf_keys = cnf.keys()        self.assertTrue('Encryption' in cnf_keys)        self.assertTrue('Readline' in cnf_keys)        self.assertTrue('Global' in cnf_keys)        self.assertTrue('Database' in cnf_keys)    def test_load_conf(self):        self.assertRaises(config.ConfigException, config.load, 'NoSuchFile')        # Everything should be ok        config.save('TestConfig.ini')        config.load('TestConfig.ini')        # let's corrupt the file        cfg = open('TestConfig.ini', 'w')        cfg.write('Corruption')        cfg.close()        self.assertRaises(config.ConfigException, config.load,                          'TestConfig.ini')        os.remove('TestConfig.ini')
 |