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
|
#!/usr/bin/python
#
# Copyright (C) YEAR Martin Owens
#
# This program 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 3 of the License, or
# (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
"""
Test the cron log extention with a test syslog example data file.
"""
import os
import sys
from datetime import datetime, date
sys.path.insert(0, '../')
import unittest
from crontab import CronTab
from cronlog import CronLog, LogReader
try:
from test import test_support
except ImportError:
from test import support as test_support
INITAL_TAB = """
* * * * * userscript &> /dev/null
* * * * * rootscript &> /dev/null
* * * * * shadowscript &> /dev/null
"""
ROOT_PIDS = ['16592', '16574', '16552', '16522', '16514', '16489']
SHAD_PIDS = ['16551', '16497']
USER_PIDS = ['16591', '16588', '16573', '16569', '16554', '16539', '16523',\
'16519','16513','16496','16490']
YEAR = date.today().year
ROOT_DATES = [
datetime(YEAR, 4, 4, 21, 34, 1),
datetime(YEAR, 4, 4, 21, 32, 1),
datetime(YEAR, 4, 4, 21, 30, 1),
datetime(YEAR, 4, 4, 21, 28, 1),
datetime(YEAR, 4, 4, 21, 26, 1),
datetime(YEAR, 4, 4, 21, 24, 1),
]
SHAD_DATES = [
datetime(YEAR, 4, 4, 21, 30, 1),
datetime(YEAR, 4, 4, 21, 25, 1),
]
USER_DATES = [
datetime(YEAR, 4, 4, 21, 34, 1),
datetime(YEAR, 4, 4, 21, 33, 2),
datetime(YEAR, 4, 4, 21, 32, 1),
datetime(YEAR, 4, 4, 21, 31, 1),
datetime(YEAR, 4, 4, 21, 30, 1),
datetime(YEAR, 4, 4, 21, 29, 1),
datetime(YEAR, 4, 4, 21, 28, 1),
datetime(YEAR, 4, 4, 21, 27, 1),
datetime(YEAR, 4, 4, 21, 26, 1),
datetime(YEAR, 4, 4, 21, 25, 1),
datetime(YEAR, 4, 4, 21, 24, 1),
]
READ_LINE = [ 'The End', 'Sickem', '2', '9', 'First Line' ]
class BasicTestCase(unittest.TestCase):
"""Test basic functionality of crontab."""
def setUp(self):
self.crontab = CronTab(tab=INITAL_TAB, log='data/test.log')
def test_00_logreader(self):
"""Log Reader"""
lines = READ_LINE[:]
reader = LogReader('data/basic.log')
for line in reader:
self.assertEqual(line.strip(), lines.pop(0))
def test_01_cronreader(self):
"""Cron Log Lines"""
lines = list(self.crontab.log.readlines())
self.assertEqual(len(lines), 32)
self.assertEqual(lines[0][1], "Apr 4 21:34:01 servername CRON[16592]: (root) CMD (rootscript &> /dev/null)")
self.assertEqual(lines[15][1], "Apr 4 21:28:31 servername NOTCRON: that these are ignored")
self.assertEqual(lines[-1][1], "Apr 4 21:24:01 servername CRON[16490]: (user) CMD (userscript &> /dev/null)")
def test_02_cronlog(self):
"""Cron Log Items"""
entries = list(CronLog('data/test.log'))
self.assertEqual(len(entries), 19)
self.assertEqual(entries[0]['pid'], "16592")
self.assertEqual(entries[3]['pid'], "16574")
self.assertEqual(entries[-1]['pid'], "16490")
def test_03_crontab(self):
"""Cron Tab Items"""
entries = list(self.crontab.log)
self.assertEqual(len(entries), 8)
self.assertEqual(entries[0]['pid'], "16592")
self.assertEqual(entries[3]['pid'], "16551")
self.assertEqual(entries[-1]['pid'], "16489")
def test_04_root(self):
"""Cron Job Items"""
pids, dates = ROOT_PIDS[:], ROOT_DATES[:]
job = list(self.crontab.find_command('rootscript'))[0]
for log in job.log:
self.assertEqual(log['pid'], pids.pop(0))
self.assertEqual(log['date'], dates.pop(0))
self.assertEqual(pids, [])
def tst_05_shadow(self):
"""Seperate Job Items"""
pids, dates = SHAD_PIDS[:], SHAD_DATES[:]
job = self.crontab.find_command('shadowscript')[0]
for log in job.log:
self.assertEqual(log['pid'], pids.pop(0))
self.assertEqual(log['date'], dates.pop(0))
self.assertEqual(pids, [])
def tst_06_user(self):
"""Seperate User Crontab"""
pids, dates = USER_PIDS[:], User_DATES[:]
self.crontab.user = 'user'
job = self.crontab.find_command('userscript')[0]
for log in job.log:
self.assertEqual(log['pid'], pids.pop(0))
self.assertEqual(log['date'], dates.pop(0))
self.assertEqual(pids, [])
if __name__ == '__main__':
test_support.run_unittest(
BasicTestCase,
)
|