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
|
#############################################################################
# Copyright (c) 2007-2015 Balabit
#
# This program 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, 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# As an additional exemption you are allowed to compile & link against the
# OpenSSL libraries as published by the OpenSSL project. See the file
# COPYING for details.
#
#############################################################################
from globals import *
from log import *
from messagegen import *
from messagecheck import *
from control import *
config_poll = """@version: %(syslog_ng_version)s
options { ts_format(iso); chain_hostnames(no); keep_hostname(yes); threaded(yes); };
source s_wildcard { wildcard_file(
base_dir("wildcard")
filename_pattern("*.log")
monitor-method("poll")
recursive(yes));
};
destination d_wildcard { file("test-wildcard.log"); };
log { source(s_wildcard); destination(d_wildcard); };
""" % locals()
config_auto = """@version: %(syslog_ng_version)s
options { ts_format(iso); chain_hostnames(no); keep_hostname(yes); threaded(yes); };
source s_wildcard { wildcard_file(
base_dir("wildcard")
filename_pattern("*.log")
monitor-method("auto")
recursive(yes));
};
destination d_wildcard { file("test-wildcard.log"); };
log { source(s_wildcard); destination(d_wildcard); };
""" % locals()
config = {"poll": config_poll, "auto": config_auto}
settle_time=4
def create_source_files(recursive=False):
messages = (
'wildcard0',
'wildcard1',
'wildcard2',
'wildcard3',
'wildcard4',
'wildcard5',
'wildcard6',
'wildcard7',
)
expected = []
for ndx in range(0, len(messages)):
if not recursive:
s = FileSender('wildcard/%d.log' % (ndx % 4), repeat=100)
else:
s = FileSender('wildcard/wildcard%d/%d.log' % ((ndx % 2),(ndx % 4)), repeat=100)
expected.extend(s.sendMessages(messages[ndx]))
return expected
def test_wildcard_files():
expected = create_source_files()
if not check_file_expected('test-wildcard', expected, settle_time=settle_time):
return False
return True
def test_wildcard_recursion():
expected = create_source_files(True)
if not check_file_expected('test-wildcard', expected, settle_time=settle_time):
return False
return True
def file_get_contents(filename):
with open(filename) as f:
return f.read()
def test_wildcard_no_directory_exists():
stop_syslogng()
os.system("rm -rf wildcard")
start_syslogng(file_get_contents("test.conf"))
os.system("mkdir wildcard")
expected = create_source_files()
if not check_file_expected('test-wildcard', expected, settle_time=settle_time):
return False
return True
def test_wildcard_runtime_detection():
expected = create_source_files()
messagegen.need_to_flush = False
print_user("waiting for syslog-ng to process files (%d sec)" % 5)
time.sleep(5)
if not check_file_expected('test-wildcard', expected, settle_time=settle_time):
return False
return True
|