logging_configurator_tests.py 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing,
  12. # software distributed under the License is distributed on an
  13. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. # KIND, either express or implied. See the License for the
  15. # specific language governing permissions and limitations
  16. # under the License.
  17. import logging
  18. import unittest
  19. from unittest.mock import MagicMock
  20. from superset.utils.logging_configurator import LoggingConfigurator
  21. class TestLoggingConfigurator(unittest.TestCase):
  22. def reset_logging(self):
  23. # work around all of the import side-effects in superset
  24. logging.root.manager.loggerDict = {}
  25. logging.root.handlers = []
  26. def test_configurator_adding_handler(self):
  27. class MyEventHandler(logging.Handler):
  28. def __init__(self):
  29. super().__init__(level=logging.DEBUG)
  30. self.received = False
  31. def handle(self, record):
  32. if hasattr(record, "testattr"):
  33. self.received = True
  34. class MyConfigurator(LoggingConfigurator):
  35. def __init__(self, handler):
  36. self.handler = handler
  37. def configure_logging(self, app_config, debug_mode):
  38. super().configure_logging(app_config, debug_mode)
  39. logging.getLogger().addHandler(self.handler)
  40. self.reset_logging()
  41. handler = MyEventHandler()
  42. cfg = MyConfigurator(handler)
  43. cfg.configure_logging(MagicMock(), True)
  44. logging.info("test", extra={"testattr": "foo"})
  45. self.assertTrue(handler.received)