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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
#
# This file is part of logilab-common.
#
# logilab-common is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 2.1 of the License, or (at your option) any
# later version.
#
# logilab-common 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with logilab-common. If not, see <http://www.gnu.org/licenses/>.
"""unit tests for logilab.common.shellutils"""
import sys, os, tempfile, shutil
from os.path import join
import datetime, time
from logilab.common.testlib import TestCase, unittest_main
from logilab.common.shellutils import (globfind, find, ProgressBar,
acquire_lock, release_lock,
RawInput, confirm)
from logilab.common.proc import NoSuchProcess
from StringIO import StringIO
DATA_DIR = join('data','find_test')
class FindTC(TestCase):
def test_include(self):
files = set(find(DATA_DIR, '.py'))
self.assertSetEqual(files,
set([join(DATA_DIR, f) for f in ['__init__.py', 'module.py',
'module2.py', 'noendingnewline.py',
'nonregr.py', join('sub', 'momo.py')]]))
files = set(find(DATA_DIR, ('.py',), blacklist=('sub',)))
self.assertSetEqual(files,
set([join(DATA_DIR, f) for f in ['__init__.py', 'module.py',
'module2.py', 'noendingnewline.py',
'nonregr.py']]))
def test_exclude(self):
files = set(find(DATA_DIR, ('.py', '.pyc'), exclude=True))
self.assertSetEqual(files,
set([join(DATA_DIR, f) for f in ['foo.txt',
'newlines.txt',
'normal_file.txt',
'test.ini',
'test1.msg',
'test2.msg',
'spam.txt',
join('sub', 'doc.txt'),
'write_protected_file.txt',
]]))
def test_globfind(self):
files = set(globfind(DATA_DIR, '*.py'))
self.assertSetEqual(files,
set([join(DATA_DIR, f) for f in ['__init__.py', 'module.py',
'module2.py', 'noendingnewline.py',
'nonregr.py', join('sub', 'momo.py')]]))
files = set(globfind(DATA_DIR, 'mo*.py'))
self.assertSetEqual(files,
set([join(DATA_DIR, f) for f in ['module.py', 'module2.py',
join('sub', 'momo.py')]]))
files = set(globfind(DATA_DIR, 'mo*.py', blacklist=('sub',)))
self.assertSetEqual(files,
set([join(DATA_DIR, f) for f in ['module.py', 'module2.py']]))
class ProgressBarTC(TestCase):
def test_refresh(self):
pgb_stream = StringIO()
expected_stream = StringIO()
pgb = ProgressBar(20,stream=pgb_stream)
self.assertEquals(pgb_stream.getvalue(), expected_stream.getvalue()) # nothing print before refresh
pgb.refresh()
expected_stream.write("\r["+' '*20+"]")
self.assertEquals(pgb_stream.getvalue(), expected_stream.getvalue())
def test_refresh_g_size(self):
pgb_stream = StringIO()
expected_stream = StringIO()
pgb = ProgressBar(20,35,stream=pgb_stream)
pgb.refresh()
expected_stream.write("\r["+' '*35+"]")
self.assertEquals(pgb_stream.getvalue(), expected_stream.getvalue())
def test_refresh_l_size(self):
pgb_stream = StringIO()
expected_stream = StringIO()
pgb = ProgressBar(20,3,stream=pgb_stream)
pgb.refresh()
expected_stream.write("\r["+' '*3+"]")
self.assertEquals(pgb_stream.getvalue(), expected_stream.getvalue())
def _update_test(self, nbops, expected, size = None):
pgb_stream = StringIO()
expected_stream = StringIO()
if size is None:
pgb = ProgressBar(nbops, stream=pgb_stream)
size=20
else:
pgb = ProgressBar(nbops, size, stream=pgb_stream)
last = 0
for round in expected:
if not hasattr(round, '__int__'):
dots, update = round
else:
dots, update = round, None
pgb.update()
if update or (update is None and dots != last):
last = dots
expected_stream.write("\r["+('.'*dots)+(' '*(size-dots))+"]")
self.assertEquals(pgb_stream.getvalue(), expected_stream.getvalue())
def test_default(self):
self._update_test(20, xrange(1,21))
def test_nbops_gt_size(self):
"""Test the progress bar for nbops > size"""
def half(total):
for counter in range(1,total+1):
yield counter / 2
self._update_test(40, half(40))
def test_nbops_lt_size(self):
"""Test the progress bar for nbops < size"""
def double(total):
for counter in range(1,total+1):
yield counter * 2
self._update_test(10, double(10))
def test_nbops_nomul_size(self):
"""Test the progress bar for size % nbops !=0 (non int number of dots per update)"""
self._update_test(3, (6,13,20))
def test_overflow(self):
self._update_test(5, (8, 16, 25, 33, 42, (42, True)), size=42)
class AcquireLockTC(TestCase):
def setUp(self):
self.tmpdir = tempfile.mkdtemp()
self.lock = join(self.tmpdir, 'LOCK')
def tearDown(self):
shutil.rmtree(self.tmpdir)
def test_acquire_normal(self):
self.assertTrue(acquire_lock(self.lock, 1, 1))
self.assertTrue(os.path.exists(self.lock))
release_lock(self.lock)
self.assertFalse(os.path.exists(self.lock))
def test_no_possible_acquire(self):
self.assertRaises(Exception, acquire_lock, self.lock, 0)
def test_wrong_process(self):
fd = os.open(self.lock, os.O_EXCL | os.O_RDWR | os.O_CREAT)
os.write(fd, '1111111111')
os.close(fd)
self.assertTrue(os.path.exists(self.lock))
self.assertRaises(Exception, acquire_lock, self.lock, 1, 1)
def test_wrong_process_and_continue(self):
fd = os.open(self.lock, os.O_EXCL | os.O_RDWR | os.O_CREAT)
os.write(fd, '1111111111')
os.close(fd)
self.assertTrue(os.path.exists(self.lock))
self.assertTrue(acquire_lock(self.lock))
def test_locked_for_one_hour(self):
self.assertTrue(acquire_lock(self.lock))
touch = datetime.datetime.fromtimestamp(time.time() - 3601).strftime("%m%d%H%M")
os.system("touch -t %s %s" % (touch, self.lock))
self.assertRaises(UserWarning, acquire_lock, self.lock, max_try=2, delay=1)
class RawInputTC(TestCase):
def auto_input(self, *args):
self.input_args = args
return self.input_answer
def setUp(self):
null_printer = lambda x: None
self.qa = RawInput(self.auto_input, null_printer)
def test_ask_default(self):
self.input_answer = ''
answer = self.qa.ask('text', ('yes','no'), 'yes')
self.assertEquals(answer, 'yes')
self.input_answer = ' '
answer = self.qa.ask('text', ('yes','no'), 'yes')
self.assertEquals(answer, 'yes')
def test_ask_case(self):
self.input_answer = 'no'
answer = self.qa.ask('text', ('yes','no'), 'yes')
self.assertEquals(answer, 'no')
self.input_answer = 'No'
answer = self.qa.ask('text', ('yes','no'), 'yes')
self.assertEquals(answer, 'no')
self.input_answer = 'NO'
answer = self.qa.ask('text', ('yes','no'), 'yes')
self.assertEquals(answer, 'no')
self.input_answer = 'nO'
answer = self.qa.ask('text', ('yes','no'), 'yes')
self.assertEquals(answer, 'no')
self.input_answer = 'YES'
answer = self.qa.ask('text', ('yes','no'), 'yes')
self.assertEquals(answer, 'yes')
def test_ask_prompt(self):
self.input_answer = ''
answer = self.qa.ask('text', ('yes','no'), 'yes')
self.assertEquals(self.input_args[0], 'text [Y(es)/n(o)]: ')
answer = self.qa.ask('text', ('y','n'), 'y')
self.assertEquals(self.input_args[0], 'text [Y/n]: ')
answer = self.qa.ask('text', ('n','y'), 'y')
self.assertEquals(self.input_args[0], 'text [n/Y]: ')
answer = self.qa.ask('text', ('yes','no','maybe','1'), 'yes')
self.assertEquals(self.input_args[0], 'text [Y(es)/n(o)/m(aybe)/1]: ')
def test_ask_ambiguous(self):
self.input_answer = 'y'
self.assertRaises(Exception, self.qa.ask, 'text', ('yes','yep'), 'yes')
def test_confirm(self):
self.input_answer = 'y'
self.assertEquals(self.qa.confirm('Say yes'), True)
self.assertEquals(self.qa.confirm('Say yes', default_is_yes=False), True)
self.input_answer = 'n'
self.assertEquals(self.qa.confirm('Say yes'), False)
self.assertEquals(self.qa.confirm('Say yes', default_is_yes=False), False)
self.input_answer = ''
self.assertEquals(self.qa.confirm('Say default'), True)
self.assertEquals(self.qa.confirm('Say default', default_is_yes=False), False)
if __name__ == '__main__':
unittest_main()
|