mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2020 Ansible Project
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
import logging
|
|
import sys
|
|
|
|
|
|
def test_logger():
|
|
'''
|
|
Avoid CVE-2019-14846 as 3rd party libs will disclose secrets when
|
|
logging is set to DEBUG
|
|
'''
|
|
|
|
# clear loaded modules to have unadultered test.
|
|
for loaded in list(sys.modules.keys()):
|
|
if 'ansible' in loaded:
|
|
del sys.modules[loaded]
|
|
|
|
# force logger to exist via config
|
|
from ansible import constants as C
|
|
C.DEFAULT_LOG_PATH = '/dev/null'
|
|
|
|
# initialize logger
|
|
from ansible.utils.display import logger
|
|
|
|
assert logger.root.level != logging.DEBUG
|
|
|
|
|
|
def test_empty_logger():
|
|
# clear loaded modules to have unadultered test.
|
|
for loaded in list(sys.modules.keys()):
|
|
if 'ansible' in loaded:
|
|
del sys.modules[loaded]
|
|
|
|
# force logger to exist via config
|
|
from ansible import constants as C
|
|
C.DEFAULT_LOG_PATH = ''
|
|
|
|
# initialize logger
|
|
from ansible.utils.display import logger
|
|
|
|
assert logger is None
|