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
|
# SPDX-License-Identifier: MIT OR Apache-2.0
# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the MIT License. See the LICENSE file in the root of this
# repository for complete details.
import abc
import pickle
import warnings
import pytest
from pretend import call, call_recorder, stub
import structlog
from structlog._base import BoundLoggerBase
from structlog._config import (
_BUILTIN_DEFAULT_CONTEXT_CLASS,
_BUILTIN_DEFAULT_LOGGER_FACTORY,
_BUILTIN_DEFAULT_PROCESSORS,
_BUILTIN_DEFAULT_WRAPPER_CLASS,
_CONFIG,
BoundLoggerLazyProxy,
configure,
configure_once,
get_logger,
wrap_logger,
)
from structlog.typing import BindableLogger
@pytest.fixture(name="proxy")
def _proxy():
"""
Returns a BoundLoggerLazyProxy constructed w/o parameters & None as logger.
"""
return BoundLoggerLazyProxy(None)
class Wrapper(BoundLoggerBase):
"""
Custom wrapper class for testing.
"""
def test_lazy_logger_is_not_detected_as_abstract_method():
"""
If someone defines an attribute on an ABC with a logger, that logger is not
detected as an abstract method.
See https://github.com/hynek/structlog/issues/229
"""
class Foo(metaclass=abc.ABCMeta): # noqa: B024
log = structlog.get_logger()
Foo()
def test_lazy_logger_is_an_instance_of_bindable_logger():
"""
The BoundLoggerLazyProxy returned by get_logger fulfills the BindableLogger
protocol.
See https://github.com/hynek/structlog/issues/560
"""
assert isinstance(get_logger(), BindableLogger)
def test_lazy_logger_context_is_initial_values():
"""
If a user asks for _context (e.g., using get_context) return
initial_values.
"""
logger = get_logger(context="a")
assert {"context": "a"} == structlog.get_context(logger)
def test_default_context_class():
"""
Default context class is dict.
"""
assert dict is _BUILTIN_DEFAULT_CONTEXT_CLASS
class TestConfigure:
def test_get_config_is_configured(self):
"""
Return value of structlog.get_config() works as input for
structlog.configure(). is_configured() reflects the state of
configuration.
"""
assert False is structlog.is_configured()
structlog.configure(**structlog.get_config())
assert True is structlog.is_configured()
structlog.reset_defaults()
assert False is structlog.is_configured()
def test_configure_all(self, proxy):
"""
All configurations are applied and land on the bound logger.
"""
x = stub()
configure(processors=[x], context_class=dict)
b = proxy.bind()
assert [x] == b._processors
assert dict is b._context.__class__
def test_reset(self, proxy):
"""
Reset resets all settings to their default values.
"""
x = stub()
configure(processors=[x], context_class=dict, wrapper_class=Wrapper)
structlog.reset_defaults()
b = proxy.bind()
assert [x] != b._processors
assert _BUILTIN_DEFAULT_PROCESSORS == b._processors
assert isinstance(b, _BUILTIN_DEFAULT_WRAPPER_CLASS)
assert _BUILTIN_DEFAULT_CONTEXT_CLASS == b._context.__class__
assert _BUILTIN_DEFAULT_LOGGER_FACTORY is _CONFIG.logger_factory
def test_just_processors(self, proxy):
"""
It's possible to only configure processors.
"""
x = stub()
configure(processors=[x])
b = proxy.bind()
assert [x] == b._processors
assert _BUILTIN_DEFAULT_PROCESSORS != b._processors
assert _BUILTIN_DEFAULT_CONTEXT_CLASS == b._context.__class__
def test_just_context_class(self, proxy):
"""
It's possible to only configure the context class.
"""
configure(context_class=dict)
b = proxy.bind()
assert dict is b._context.__class__
assert _BUILTIN_DEFAULT_PROCESSORS == b._processors
def test_configure_sets_is_configured(self):
"""
After configure() is_configured() returns True.
"""
assert False is _CONFIG.is_configured
configure()
assert True is _CONFIG.is_configured
def test_configures_logger_factory(self):
"""
It's possible to configure the logger factory.
"""
def f():
pass
configure(logger_factory=f)
assert f is _CONFIG.logger_factory
class TestBoundLoggerLazyProxy:
def test_repr(self):
"""
repr reflects all attributes.
"""
p = BoundLoggerLazyProxy(
None,
processors=[1, 2, 3],
context_class=dict,
initial_values={"foo": 42},
logger_factory_args=(4, 5),
)
assert (
"<BoundLoggerLazyProxy(logger=None, wrapper_class=None, "
"processors=[1, 2, 3], "
"context_class=<class 'dict'>, "
"initial_values={'foo': 42}, "
"logger_factory_args=(4, 5))>"
) == repr(p)
def test_returns_bound_logger_on_bind(self, proxy):
"""
bind gets proxied to the wrapped bound logger.
"""
assert isinstance(proxy.bind(), BoundLoggerBase)
def test_returns_bound_logger_on_new(self, proxy):
"""
new gets proxied to the wrapped bound logger.
"""
assert isinstance(proxy.new(), BoundLoggerBase)
def test_returns_bound_logger_on_try_unbind(self, proxy):
"""
try_unbind gets proxied to the wrapped bound logger.
"""
assert isinstance(proxy.try_unbind(), BoundLoggerBase)
def test_prefers_args_over_config(self):
"""
Configuration can be overridden by passing arguments.
"""
p = BoundLoggerLazyProxy(
None, processors=[1, 2, 3], context_class=dict
)
b = p.bind()
assert isinstance(b._context, dict)
assert [1, 2, 3] == b._processors
class Class:
def __init__(self, *args, **kw):
pass
def update(self, *args, **kw):
pass
configure(processors=[4, 5, 6], context_class=Class)
b = p.bind()
assert not isinstance(b._context, Class)
assert [1, 2, 3] == b._processors
def test_falls_back_to_config(self, proxy):
"""
Configuration is used if no arguments are passed.
"""
b = proxy.bind()
assert isinstance(b._context, _CONFIG.default_context_class)
assert _CONFIG.default_processors == b._processors
def test_bind_honors_initial_values(self):
"""
Passed initial_values are merged on binds.
"""
p = BoundLoggerLazyProxy(None, initial_values={"a": 1, "b": 2})
b = p.bind()
assert {"a": 1, "b": 2} == b._context
b = p.bind(c=3)
assert {"a": 1, "b": 2, "c": 3} == b._context
def test_bind_binds_new_values(self, proxy):
"""
Values passed to bind arrive in the context.
"""
b = proxy.bind(c=3)
assert {"c": 3} == b._context
def test_unbind_unbinds_from_initial_values(self):
"""
It's possible to unbind a value that came from initial_values.
"""
p = BoundLoggerLazyProxy(None, initial_values={"a": 1, "b": 2})
b = p.unbind("a")
assert {"b": 2} == b._context
def test_honors_wrapper_class(self):
"""
Passed wrapper_class is used.
"""
p = BoundLoggerLazyProxy(None, wrapper_class=Wrapper)
b = p.bind()
assert isinstance(b, Wrapper)
def test_honors_wrapper_from_config(self, proxy):
"""
Configured wrapper_class is used if not overridden.
"""
configure(wrapper_class=Wrapper)
b = proxy.bind()
assert isinstance(b, Wrapper)
def test_new_binds_only_initial_values_implicit_ctx_class(self, proxy):
"""
new() doesn't clear initial_values if context_class comes from config.
"""
proxy = BoundLoggerLazyProxy(None, initial_values={"a": 1, "b": 2})
b = proxy.new(foo=42)
assert {"a": 1, "b": 2, "foo": 42} == b._context
def test_new_binds_only_initial_values_explicit_ctx_class(self, proxy):
"""
new() doesn't clear initial_values if context_class is passed
explicitly..
"""
proxy = BoundLoggerLazyProxy(
None, initial_values={"a": 1, "b": 2}, context_class=dict
)
b = proxy.new(foo=42)
assert {"a": 1, "b": 2, "foo": 42} == b._context
def test_rebinds_bind_method(self, proxy):
"""
To save time, be rebind the bind method once the logger has been
cached.
"""
configure(cache_logger_on_first_use=True)
bind = proxy.bind
proxy.bind()
assert bind != proxy.bind
def test_does_not_cache_by_default(self, proxy):
"""
Proxy's bind method doesn't change by default.
"""
bind = proxy.bind
proxy.bind()
assert bind == proxy.bind
@pytest.mark.parametrize("cache", [True, False])
def test_argument_takes_precedence_over_configuration(self, cache):
"""
Passing cache_logger_on_first_use as an argument overrides config.
"""
configure(cache_logger_on_first_use=cache)
proxy = BoundLoggerLazyProxy(None, cache_logger_on_first_use=not cache)
bind = proxy.bind
proxy.bind()
if cache:
assert bind == proxy.bind
else:
assert bind != proxy.bind
def test_bind_doesnt_cache_logger(self):
"""
Calling configure() changes BoundLoggerLazyProxys immediately.
Previous uses of the BoundLoggerLazyProxy don't interfere.
"""
class F:
"New logger factory with a new attribute"
def info(self, *args):
return 5
proxy = BoundLoggerLazyProxy(None)
proxy.bind()
configure(logger_factory=F)
new_b = proxy.bind()
assert new_b.info("test") == 5
def test_emphemeral(self):
"""
Calling an unknown method proxy creates a new wrapped bound logger
first.
"""
class Foo(BoundLoggerBase):
def foo(self):
return 42
proxy = BoundLoggerLazyProxy(
None, wrapper_class=Foo, cache_logger_on_first_use=False
)
assert 42 == proxy.foo()
@pytest.mark.parametrize("proto", range(pickle.HIGHEST_PROTOCOL + 1))
def test_pickle(self, proto):
"""
Can be pickled and unpickled.
"""
bllp = BoundLoggerLazyProxy(None)
assert repr(bllp) == repr(pickle.loads(pickle.dumps(bllp, proto)))
class TestFunctions:
def test_wrap_passes_args(self):
"""
wrap_logger propagates all arguments to the wrapped bound logger.
"""
logger = object()
p = wrap_logger(logger, processors=[1, 2, 3], context_class=dict)
assert logger is p._logger
assert [1, 2, 3] == p._processors
assert dict is p._context_class
def test_empty_processors(self):
"""
An empty list is a valid value for processors so it must be preserved.
"""
# We need to do a bind such that we get an actual logger and not just
# a lazy proxy.
logger = wrap_logger(object(), processors=[]).new()
assert [] == logger._processors
def test_wrap_returns_proxy(self):
"""
wrap_logger always returns a lazy proxy.
"""
assert isinstance(wrap_logger(None), BoundLoggerLazyProxy)
def test_configure_once_issues_warning_on_repeated_call(self):
"""
configure_once raises a warning when it's after configuration.
"""
with warnings.catch_warnings(record=True) as warns:
configure_once()
assert 0 == len(warns)
with warnings.catch_warnings(record=True) as warns:
configure_once()
assert 1 == len(warns)
assert RuntimeWarning is warns[0].category
assert "Repeated configuration attempted." == warns[0].message.args[0]
def test_get_logger_configures_according_to_config(self):
"""
get_logger returns a correctly configured bound logger.
"""
b = get_logger().bind()
assert isinstance(
b._logger, _BUILTIN_DEFAULT_LOGGER_FACTORY().__class__
)
assert _BUILTIN_DEFAULT_PROCESSORS == b._processors
assert isinstance(b, _BUILTIN_DEFAULT_WRAPPER_CLASS)
assert _BUILTIN_DEFAULT_CONTEXT_CLASS == b._context.__class__
def test_get_logger_passes_positional_arguments_to_logger_factory(self):
"""
Ensure `get_logger` passes optional positional arguments through to
the logger factory.
"""
factory = call_recorder(lambda *args: object())
configure(logger_factory=factory)
get_logger("test").bind(x=42)
assert [call("test")] == factory.calls
|