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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
|
#!/usr/bin/env python
# -*- coding: utf-8; mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vim: fileencoding=utf-8 tabstop=4 expandtab shiftwidth=4
# ruff: noqa: RET504, S311, S603
""" stresstest.py: A stress-tester for ConcurrentRotatingFileHandler
This utility spawns a bunch of processes that all try to concurrently write to
the same file. This is pretty much the worst-case scenario for my log handler.
Once all of the processes have completed writing to the log file, the output is
compared to see if any log messages have been lost.
In the future, I may also add in support for testing with each process having
multiple threads.
"""
import gzip
import io
import os
import string
import sys
from optparse import OptionParser
from random import choice, randint
from subprocess import Popen
from time import sleep
# local lib; for testing
from concurrent_log_handler import ConcurrentRotatingFileHandler, randbits
__author__ = "Lowell Alleman"
PY2 = False # No longer supporting Python 2.7
# ruff: noqa: F821, E501
# The total amount of rotated files to keep through the test run. Any data accumulated
# before this is reached gets lost. It needs to be high enough so that all loop iterations
# across all threads get all their data captured without losing anything otherwise the
# diff at the end will fail. But if rollover file count get very high then performance
# becomes slow due to the mass renaming and some threads may throw a lock acquire failure!
ROTATE_COUNT = 10000
# Not all encodings will work here unless you remove some of the Unicode
# chars in the test string.
# ENCODING = 'cp1252'
# There are some issues with the test program in utf-16 but I think the logging itself works...?
# ENCODING = 'utf-16'
ENCODING = "utf-8"
class RotateLogStressTester:
def __init__(self, sharedfile, uniquefile, name="LogStressTester"):
self.sharedfile = sharedfile
self.uniquefile = uniquefile
self.name = name
self.writeLoops = 100000
self.rotateSize = 128 * 1024
self.rotateCount = ROTATE_COUNT
self.random_sleep_mode = False
self.debug = True
self.log = None
self.use_gzip = True
self.extended_unicode = True
self.use_queue = False
self.lock_dir = None
if PY2 and ENCODING != "utf-8":
# hopefully temporary... the problem is with stdout in the tester I think
self.extended_unicode = False
def getLogHandler(self, fn):
"""Override this method if you want to test a different logging handler
class."""
rv = ConcurrentRotatingFileHandler(
fn,
"a",
self.rotateSize,
self.rotateCount,
encoding=ENCODING,
debug=self.debug,
use_gzip=self.use_gzip,
lock_file_directory=self.lock_dir,
)
# To force LF only linefeeds on Windows: newline='', terminator='\n'
# To force CRLF on Unix: newline='', terminator='\r\n'
# To run the test with the standard library's RotatingFileHandler:
# from logging.handlers import RotatingFileHandler
# return RotatingFileHandler(fn, 'a', self.rotateSize, self.rotateCount)
return rv
def start(self):
from logging import DEBUG, FileHandler, Formatter, getLogger
self.log = getLogger(self.name)
self.log.setLevel(DEBUG)
formatter = Formatter(
"%(asctime)s [%(process)d:%(threadName)s] %(levelname)-8s %(name)s: %(message)s"
)
# Unique log handler (single file)
handler = FileHandler(self.uniquefile, "w", encoding=ENCODING)
handler.setLevel(DEBUG)
handler.setFormatter(formatter)
self.log.addHandler(handler)
# If you suspect that the diff stuff isn't working, un comment the next
# line. You should see this show up once per-process.
# self.log.info("Here is a line that should only be in the first output.")
# Setup output used for testing
handler = self.getLogHandler(self.sharedfile)
handler.setLevel(DEBUG)
handler.setFormatter(formatter)
self.log.addHandler(handler)
if self.use_queue:
from concurrent_log_handler.queue import setup_logging_queues
setup_logging_queues()
# If this ever becomes a real "Thread", then remove this line:
self.run()
def run(self):
print("Hello, self.writeLoops: %s" % (self.writeLoops,))
c = 0
import random
# Use a bunch of random quotes, numbers, and severity levels to mix it up a bit!
msgs = [
"I found %d puppies",
"There are %d cats in your hatz",
"my favorite number is %d",
"I am %d years old.",
"1 + 1 = %d",
"%d/0 = DivideByZero",
"blah! %d thingies!",
"8 15 16 23 48 %d",
"the worlds largest prime number: %d",
"%d happy meals!",
]
if self.extended_unicode:
msgs.extend(
[
"\U0001d122 \U00024b00 Euro: \u20ac%d",
"my favorite number is %d ①②③④⑤⑥⑦⑧!",
]
)
logfuncts = [self.log.debug, self.log.info, self.log.warning, self.log.error]
num_rand_bits = 64
rand_string_len = 1024 * 5
self.log.info(
"c=%s Starting to write random log message. Loop=%d", c, self.writeLoops
)
while c <= self.writeLoops:
c += 1
self.log.debug(
"c=%s Triggering logging within format of another log: %r",
c,
InnerLoggerExample(
self.log, randbits(num_rand_bits), rand_string(rand_string_len), c
),
)
msg = random.choice(msgs)
logfunc = random.choice(logfuncts)
logfunc("c=%s " + msg, c, randbits(num_rand_bits))
if self.random_sleep_mode and c % 1000 == 0:
# Sleep from 0-5 seconds
s = randint(0, 5)
print("PID %d sleeping for %d seconds" % (os.getpid(), s))
sleep(s)
# break
self.log.info("c=%s Done writing random log messages.", c)
def iter_lognames(logfile, count):
"""Generator for log file names based on a rotation scheme"""
for i in range(count - 1, 0, -1):
yield "%s.%d" % (logfile, i)
yield logfile
def iter_logs(iterable, missing_ok=False):
"""Generator to extract log entries from shared log file."""
for fn in iterable:
opener = open
log_path = fn
log_path_gz = log_path + ".gz"
if os.path.exists(log_path_gz):
log_path = log_path_gz
opener = gzip.open
if os.path.exists(log_path):
with opener(log_path, "rb") as fh:
for line in fh:
yield line
elif not missing_ok:
raise ValueError("Missing log file %s" % log_path)
def combine_logs(combinedlog, iterable, mode="wb"):
"""write all lines (iterable) into a single log file."""
fp = io.open(combinedlog, mode)
if ENCODING == "utf-16":
import codecs
fp.write(codecs.BOM_UTF16)
for chunk in iterable:
fp.write(chunk)
fp.close()
class InnerLoggerExample(object):
def __init__(self, log, a, b, c):
self.log = log
self.a = a
self.b = b
self.c = c
def __str__(self):
# This should trigger a logging event within the format() handling of another event
self.log.debug("c=%s Inner logging example: a=%r, b=%r", self.c, self.a, self.b)
return "<InnerLoggerExample a=%r>" % (self.a,)
def __repr__(self):
return str(self)
allchar = string.ascii_letters + string.punctuation + string.digits
def rand_string(str_len):
chars = []
for i in range(str_len):
c = choice(allchar)
if i % 10 == 0:
c = " "
chars.append(c)
return "".join(chars)
parser = OptionParser(
usage="usage: %prog",
# version=__version__,
description="Stress test the concurrent_log_handler module.",
)
parser.add_option(
"--log-calls",
metavar="NUM",
action="store",
type="int",
default=5000,
help="Number of logging entries to write to each log file. Default is %d",
)
parser.add_option("--random-sleep-mode", action="store_true", default=False)
parser.add_option("--debug", action="store_true", default=False)
parser.add_option("--use-queue", action="store_true", default=False)
parser.add_option(
"--lock-dir",
metavar="DIR",
action="store",
default=None,
help="Store lock files in an alternate directory.",
)
def main_client(args):
(options, args) = parser.parse_args(args)
if len(args) != 2: # noqa: PLR2004
raise ValueError("Require 2 arguments. We have %d args" % len(args))
(shared, client) = args
if os.path.isfile(client):
sys.stderr.write("Already a client using output file %s\n" % client)
sys.exit(1)
tester = RotateLogStressTester(shared, client)
tester.random_sleep_mode = options.random_sleep_mode
tester.debug = options.debug
tester.writeLoops = options.log_calls
tester.lock_dir = options.lock_dir
tester.start()
print("We are done pid=%d" % os.getpid())
class TestManager:
class ChildProc(object):
"""Very simple child container class."""
__slots__ = ["popen", "sharedfile", "clientfile"]
def __init__(self, **kwargs):
self.update(**kwargs)
def update(self, **kwargs):
for key, val in kwargs.items():
setattr(self, key, val)
def __init__(self, output_path):
self.output_path = output_path
self.tests = []
self.client_stdout = io.open(
os.path.join(output_path, "client_stdout.txt"), "a", encoding=ENCODING
)
self.client_stderr = io.open(
os.path.join(output_path, "client_stderr.txt"), "a", encoding=ENCODING
)
def launchPopen(self, *args, **kwargs):
if "stdout" not in kwargs:
kwargs["stdout"] = self.client_stdout
if "stderr" not in kwargs:
kwargs["stderr"] = self.client_stdout
proc = Popen(*args, **kwargs)
cp = self.ChildProc(popen=proc)
self.tests.append(cp)
return cp
def wait(self, check_interval=3):
"""Wait for all child test processes to complete."""
print("Waiting while children are out running and playing!")
while True:
sleep(check_interval)
waiting = []
for cp in self.tests:
if cp.popen.poll() is None:
waiting.append(cp.popen.pid)
if not waiting:
break
print("Waiting on %r " % waiting)
print("All children have stopped.")
def checkExitCodes(self):
for cp in self.tests:
stdout_str, stderr_str = cp.popen.communicate()
exit_code = cp.popen.poll()
if exit_code != 0:
print(stderr_str)
print(stderr_str)
print("cp exit code: %s: %s" % (cp, exit_code))
return False
return True
def unified_diff(a, b, out=sys.stdout, out2=None):
import difflib
dfile = None
if out2:
dfile = io.open(out2, "w", encoding=ENCODING)
ai = io.open(a, "r", encoding=ENCODING).readlines()
bi = io.open(b, "r", encoding=ENCODING).readlines()
for line in difflib.unified_diff(ai, bi, a, b):
# if PY2:
# line = line.encode(ENCODING)
if PY2:
if not isinstance(line, unicode):
line = unicode(line, ENCODING) # noqa: PLW2901
line_out = line.encode(out.encoding, "ignore").decode(out.encoding)
out.write(line_out)
else:
out.write(line)
if dfile:
dfile.write(line)
def main_runner(args): # noqa: PLR0915
parser.add_option(
"--processes",
metavar="NUM",
action="store",
type="int",
default=3,
help="Number of processes to spawn. Default: %default",
)
parser.add_option(
"--delay",
metavar="secs",
action="store",
type="float",
default=2.5,
help="Wait SECS before spawning next processes. Default: %d",
)
parser.add_option(
"-p",
"--path",
metavar="DIR",
action="store",
default="test_output",
help="Path to a temporary directory. Default: '%d'",
)
parser.add_option(
"-k",
"--keep",
action="store_true",
default=False,
help="Don't automatically delete the --path directory at test start.",
)
this_script = args[0]
(options, args) = parser.parse_args(args)
options.path = os.path.abspath(options.path)
if not options.keep and os.path.exists(options.path):
import shutil
# Can we delete everything under the test output path but not the folder itself?
shutil.rmtree(options.path)
if not os.path.isdir(options.path):
os.makedirs(options.path)
else:
existing_files = len(os.listdir(options.path))
if existing_files:
sys.stderr.write(
"Output directory is not empty and --keep was not given: %s files in %s.\n"
% (
existing_files,
options.path,
)
)
sys.exit(1)
manager = TestManager(options.path)
shared = os.path.join(options.path, "shared.log")
for client_id in range(options.processes):
client = os.path.join(options.path, "client.log_client%s.log" % client_id)
cmdline = [
sys.executable,
this_script,
"client",
shared,
client,
"--log-calls=%d" % options.log_calls,
]
if options.random_sleep_mode:
cmdline.append("--random-sleep-mode")
if options.debug:
cmdline.append("--debug")
if options.use_queue:
cmdline.append("--use-queue")
if options.lock_dir:
cmdline.append("--lock-dir=%s" % (options.lock_dir,))
child = manager.launchPopen(cmdline)
child.update(sharedfile=shared, clientfile=client)
sleep(options.delay)
# Wait for all of the subprocesses to exit
manager.wait()
# Check children exit codes
if not manager.checkExitCodes():
sys.stderr.write(
"One or more of the child process has failed.\n Aborting test.\n"
)
sys.exit(2)
client_combo = os.path.join(options.path, "client.log.combo")
shared_combo = os.path.join(options.path, "shared.log.combo")
# Combine all of the log files...
client_files = [child.clientfile for child in manager.tests]
sort_em = sorted
print("Writing out combined client logs...")
combine_logs(client_combo, sort_em(iter_logs(client_files)))
print("done.")
print("Writing out combined shared logs...")
shared_log_files = iter_lognames(shared, ROTATE_COUNT)
log_lines = iter_logs(shared_log_files, missing_ok=True)
combine_logs(shared_combo, sort_em(log_lines))
print("done.")
print(
"Running internal diff: "
"(If the next line is 'end of diff', then the stress test passed!)"
)
diff_file = os.path.join(options.path, "diff.patch")
unified_diff(client_combo, shared_combo, sys.stdout, diff_file)
print(" --- end of diff ----")
def decode(thing, encoding=ENCODING):
if isinstance(thing, bytes):
return thing.decode(encoding=encoding)
return thing
if __name__ == "__main__":
if len(sys.argv) > 1 and sys.argv[1].lower() == "client":
main_client(sys.argv[2:])
else:
main_runner(sys.argv)
|