1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
# ============================================================================
# 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 os
import unittest
import sys
from io import StringIO, BytesIO
from pwman.util.crypto_engine import CryptoEngine
from .test_crypto_engine import give_key, DummyCallback
from pwman.data.database import __DB_FORMAT__
from .test_tools import (SetupTester, testdb)
from pwman.data import factory
from pwman.data.nodes import Node
class dummy_stdin(object):
def __init__(self):
self.idx = -1
self.ans = ['4', 'some fucking notes', 'X']
def __call__(self, msg):
self.idx += 1
return self.ans[self.idx]
class TestBaseUI(unittest.TestCase):
@classmethod
def tearDownClass(cls):
for item in (testdb, 'foo.csv', 'pwman-export.csv'):
try:
os.unlink(item)
except OSError:
continue
SetupTester().clean()
def setUp(self):
"test that the right db instance was created"
dbver = __DB_FORMAT__
self.db = factory.createdb('sqlite://' + testdb, dbver)
self.tester = SetupTester(dbver, testdb)
self.tester.create()
def tearDown(self):
pass
def test_get_tags(self):
sys.stdin = StringIO("foo,bar,baz")
tags = self.tester.cli._get_tags(reader=lambda: "foo,bar,baz")
self.assertListEqual(['foo', 'bar', 'baz'], tags)
sys.stdin = sys.__stdin__
def test_1_do_new(self):
sys.stdin = BytesIO((b"alice\nsecret\nexample.com\nsome notes"
b"\nfoo,bar,baz"))
_node = self.tester.cli._do_new('')
sys.stdin = sys.__stdin__
self.assertListEqual([b'foo', b'bar', b'baz'], [t for t
in _node.tags])
sys.stdin = BytesIO((b"harry\nsecret\nexample.com\nsome notes"
b"\nfoo,bar,baz"))
_node = self.tester.cli._do_new('')
node_ids = self.tester.cli._db.lazy_list_node_ids()
self.assertListEqual([1, 2], list(node_ids))
node_tags = list(self.tester.cli._db.getnodes([1]))
nodes = node_tags[0]
tags = nodes[-1]
ce = CryptoEngine.get()
user = ce.decrypt(nodes[0][1])
self.assertTrue(user, 'alice')
for idx, t in enumerate(['foo', 'bar', 'baz']):
self.assertTrue(t, tags[idx])
node_tags = list(self.tester.cli._db.getnodes([1, 2]))
nodes = node_tags[1]
user = ce.decrypt(nodes[0][1])
self.assertTrue(user, 'harry')
for idx, t in enumerate(['foo', 'bar', 'baz']):
self.assertTrue(t, tags[idx])
def test_2_do_list(self):
self.output = StringIO()
sys.stdout = self.output
self.tester.cli.do_list('')
self.tester.cli.do_list('foo')
self.tester.cli.do_list('bar')
sys.stdout = sys.__stdout__
self.output.getvalue()
def test_3_do_export(self):
self.tester.cli.do_export("{'filename':'foo.csv'}")
with open('foo.csv') as f:
lines = f.readlines()
# on windows there is an extra empty line in the exported file
self.assertIn('alice;example.com;secret;some notes;foo,bar,baz\n',
lines)
def test_3a_do_export(self):
self.tester.cli.do_export("f")
with open('pwman-export.csv') as f:
lines = f.readlines()
self.assertIn('alice;example.com;secret;some notes;foo,bar,baz\n',
lines)
def test_4_do_forget(self):
self.tester.cli.do_forget('')
ce = CryptoEngine.get()
self.assertIsNone(ce._cipher)
def test_5_do_print(self):
v = StringIO()
sys.stdout = v
self.tester.cli.do_print('1')
self.assertIn('\x1b[31mUsername:\x1b[0m alice', v.getvalue())
self.tester.cli.do_print('a')
self.assertIn("print accepts only a single ID ...", v.getvalue())
sys.stdout = sys.__stdout__
def test_6_do_tags(self):
v = StringIO()
sys.stdout = v
self.tester.cli.do_tags('1')
v = v.getvalue()
for t in ['foo', 'bar', 'baz']:
t in v
sys.stdout = sys.__stdout__
def test_7_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_8_do_edit_1(self):
node_tags = list(self.tester.cli._db.getnodes([1]))[0]
node, tags = node_tags[0], node_tags[-1]
node = Node.from_encrypted_entries(node[1], node[2], node[3],
node[4], tags)
sys.stdin = StringIO(("1\nfoo\nx\n"))
self.tester.cli.do_edit('1')
v = StringIO()
sys.stdin = sys.__stdin__
sys.stdout = v
self.tester.cli.do_print('1')
self.assertIn('\x1b[31mUsername:\x1b[0m foo', v.getvalue())
sys.stdout = sys.__stdout__
def test_8_do_edit_2(self):
node_tags = list(self.tester.cli._db.getnodes([1]))[0]
node, tags = node_tags[0], node_tags[-1]
node = Node.from_encrypted_entries(node[1], node[2], node[3],
node[4], tags)
sys.stdin = StringIO(("2\ns3kr3t\nx\n"))
self.tester.cli.do_edit('1')
v = StringIO()
sys.stdin = sys.__stdin__
sys.stdout = v
self.tester.cli.do_print('1')
self.assertIn('\x1b[31mPassword:\x1b[0m s3kr3t', v.getvalue())
def test_9_do_delete(self):
self.assertIsNone(self.tester.cli._do_rm('x'))
sys.stdin = StringIO("y\n")
self.tester.cli.do_rm('1')
sys.stdin = sys.__stdin__
sys.stdout = StringIO()
self.tester.cli.do_ls('')
self.assertNotIn('alice', sys.stdout.getvalue())
sys.stdout = sys.__stdout__
def test_10_do_info(self):
self.output = StringIO()
sys.stdout = self.output
self.tester.cli.do_info(b'')
self.assertIn(testdb, sys.stdout.getvalue())
if __name__ == '__main__':
ce = CryptoEngine.get()
ce.callback = DummyCallback()
ce.changepassword(reader=give_key)
unittest.main(verbosity=3, failfast=True)
|