mirror of https://github.com/fail2ban/fail2ban
81 lines
2.5 KiB
Python
81 lines
2.5 KiB
Python
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: t -*-
|
|
# vi: set ft=python sts=4 ts=4 sw=4 noet :
|
|
|
|
# This file is part of Fail2Ban.
|
|
#
|
|
# Fail2Ban is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Fail2Ban 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 Fail2Ban; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
__author__ = "Yaroslav Halchenko"
|
|
__copyright__ = "Copyright (c) 2013 Yaroslav Halchenko"
|
|
__license__ = "GPL"
|
|
|
|
import os, sys, unittest
|
|
import tempfile
|
|
import shutil
|
|
|
|
from glob import glob
|
|
|
|
from common.helpers import formatExceptionInfo
|
|
|
|
class HelpersTest(unittest.TestCase):
|
|
|
|
def testFormatExceptionInfoBasic(self):
|
|
try:
|
|
raise ValueError("Very bad exception")
|
|
except:
|
|
name, args = formatExceptionInfo()
|
|
self.assertEqual(name, "ValueError")
|
|
self.assertEqual(args, "Very bad exception")
|
|
|
|
def testFormatExceptionConvertArgs(self):
|
|
try:
|
|
raise ValueError("Very bad", None)
|
|
except:
|
|
name, args = formatExceptionInfo()
|
|
self.assertEqual(name, "ValueError")
|
|
# might be fragile due to ' vs "
|
|
self.assertEqual(args, "('Very bad', None)")
|
|
|
|
|
|
class SetupTest(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
setup = os.path.join(os.path.dirname(__file__), '..', 'setup.py')
|
|
self.setup = os.path.exists(setup) and setup or None
|
|
if not self.setup and sys.version_info >= (2,7): # running not out of the source
|
|
raise unittest.SkipTest(
|
|
"Seems to be running not out of source distribution"
|
|
" -- cannot locate setup.py")
|
|
|
|
def testSetupInstallRoot(self):
|
|
if not self.setup: return # if verbose skip didn't work out
|
|
tmp = tempfile.mkdtemp()
|
|
os.system("%s install --root=%s >/dev/null" % (self.setup, tmp))
|
|
|
|
def addpath(l):
|
|
return [os.path.join(tmp, x) for x in l]
|
|
|
|
self.assertEqual(sorted(glob('%s/*' % tmp)),
|
|
addpath(['etc', 'usr', 'var']))
|
|
|
|
# Assure presence of some files we expect to see in the installation
|
|
for f in ('etc/fail2ban/fail2ban.conf',
|
|
'etc/fail2ban/jail.conf'):
|
|
self.assertTrue(os.path.exists(os.path.join(tmp, f)),
|
|
msg="Can't find %s" % f)
|
|
|
|
# clean up
|
|
shutil.rmtree(tmp)
|