| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | # ============================================================================# 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 unittestfrom pwman.util.crypto_engine import CryptoEnginefrom pwman.data.nodes import Nodefrom .test_crypto_engine import give_key, DummyCallbackclass TestNode(unittest.TestCase):    def setUp(self):        self.node = Node(username=b'foo', password=b's3kr3t',                         url=b'example.com', notes=b'just a reminder to self',                         tags=[b'baz', b'baz'])    def test_do_encdict(self):        ce = CryptoEngine.get()        for k, v in self.node.to_encdict().items():            if k == 'user':                self.assertEqual(ce.decrypt(v).decode(), getattr(self.node,                                                                 'username'))            elif k != 'tags':                self.assertEqual(ce.decrypt(v).decode(), getattr(self.node, k))    def test_setters(self):        new_node = {'username': b'baz', 'password': b'n3ws3k43t',                    'notes': b'i have changed the password',                    'url': b'newexample.com', 'tags': [b'tag1', b'tag2']}        for k in new_node:            setattr(self.node, k, new_node[k])        for attribute in ['username', 'password', 'url', 'notes']:            self.assertEqual(bytearray(getattr(self.node, attribute), 'utf-8'), new_node[attribute])        self.assertEqual(bytearray(getattr(self.node, 'username'), 'utf-8'), new_node['username'])        self.assertEqual(bytearray(getattr(self.node, 'password'), 'utf-8'), new_node['password'])        self.assertEqual(getattr(self.node, 'tags'), new_node['tags'])if __name__ == '__main__':    ce = CryptoEngine.get()    ce.callback = DummyCallback()    ce.changepassword(reader=give_key)    try:        unittest.main(verbosity=2, failfast=True)    except SystemExit:        pass
 |