Merge pull request #2412 from cygnusv/llaves

Use NuCypher Logger instead of Twisted Logger. Closes #2404
pull/2402/head
David Núñez 2020-11-06 12:17:14 +01:00 committed by GitHub
commit 7f45dedecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 111 additions and 27 deletions

View File

@ -0,0 +1 @@
Removes leftover imports of Twisted Logger, using instead our shim (Closes #2404). Also, changes NuCypher Logger behavior to always escape curly braces.

View File

@ -24,10 +24,10 @@ from bytestring_splitter import BytestringSplitter
from constant_sorrow.constants import NO_KNOWN_NODES
from collections import namedtuple, defaultdict
from collections import OrderedDict
from twisted.logger import Logger
from .nicknames import Nickname
from nucypher.crypto.api import keccak_digest
from nucypher.utilities.logging import Logger
class FleetSensor:

View File

@ -31,7 +31,6 @@ from eth_utils import to_checksum_address
from requests.exceptions import SSLError
from twisted.internet import reactor, task
from twisted.internet.defer import Deferred
from twisted.logger import Logger
import nucypher
from bytestring_splitter import BytestringSplitter, BytestringSplittingError, PartiallyKwargifiedBytes, \

View File

@ -196,21 +196,12 @@ class Logger(TwistedLogger):
See Issue #724 and, particularly, https://github.com/nucypher/nucypher/issues/724#issuecomment-600190455"""
CURLY_BRACES_REGEX = re.compile('{+|}+')
@classmethod
def escape_format_string(cls, string):
"""
Escapes curly braces from a PEP-3101's format string when there's a sequence of odd length
Escapes all curly braces from a PEP-3101's format string.
"""
def escape_group_of_curly_braces(match):
curlies = match.group()
if len(curlies) % 2 == 1:
curlies += curlies
return curlies
escaped_string = cls.CURLY_BRACES_REGEX.sub(escape_group_of_curly_braces, string)
escaped_string = string.replace("{", "{{").replace("}", "}}")
return escaped_string
def emit(self, level, format=None, **kwargs):

View File

@ -15,7 +15,11 @@ You should have received a copy of the GNU Affero General Public License
along with nucypher. If not, see <https://www.gnu.org/licenses/>.
"""
from twisted.logger import Logger as TwistedLogger, formatEvent
from io import StringIO
from json.encoder import py_encode_basestring_ascii
import pytest
from twisted.logger import Logger as TwistedLogger, formatEvent, jsonFileLogObserver
from nucypher.utilities.logging import Logger
@ -24,46 +28,135 @@ def naive_print_observer(event):
print(formatEvent(event), end="")
ordinary_string = "And you're boring, and you're totally ordinary, and you know it"
quirky_but_ok_strings = (
"{{}}", "{{hola}}", "{{{{}}}}"
)
normal_strings = (ordinary_string, *quirky_but_ok_strings)
def get_json_observer_for_file(logfile):
def json_observer(event):
observer = jsonFileLogObserver(outFile=logfile)
return observer(event)
return json_observer
freak_format_strings = (
"{}", "{", "}", "}{", "{{{}}}", "{{{{{}}}}}", "{bananas}", str({'bananas': '🍌🍌🍌'})
def expected_processing(string_with_curly_braces):
ascii_string = py_encode_basestring_ascii(string_with_curly_braces)[1:-1]
expected_output = Logger.escape_format_string(ascii_string)
return expected_output
# Any string without curly braces won't have any problem
ordinary_strings = (
"Because there's nothing worse in life than being ordinary.",
"🍌 🍌 🍌 terracotta 🍌 🍌 🍌 terracotta terracotta 🥧",
'"You can quote me on this"',
f"Some bytes: {b''.join(chr(i).encode() for i in range(1024) if chr(i) not in '{}')}"
)
# Strings that have curly braces but that appear in groups of even length are considered safe too,
# as curly braces are escaped this way, according to PEP 3101. Twisted will eat these just fine,
# but since they have curly braces, we will have to process them in our Logger.
quirky_strings = (
"{{}}", "{{hola}}", "{{{{}}}}", "foo{{}}",
)
# These are strings that are definitely going to cause trouble for Twisted Logger
freaky_format_strings = ( # Including the expected exception and error message
("{", ValueError, "Single '{' encountered in format string"),
("}", ValueError, "Single '}' encountered in format string"),
("foo}", ValueError, "Single '}' encountered in format string"),
("bar{", ValueError, "Single '{' encountered in format string"),
("}{", ValueError, "Single '}' encountered in format string"),
("{{}", ValueError, "Single '}' encountered in format string"),
("}}{", ValueError, "Single '{' encountered in format string"),
(f"{b'{'}", ValueError, "expected '}' before end of string"),
(f"{b'}'}", ValueError, "Single '}' encountered in format string"),
("{}", KeyError, ""),
("{}{", KeyError, ""),
("{}}", KeyError, ""),
("{{{}}}", KeyError, ""),
("{{{{{}}}}}", KeyError, ""),
("{bananas}", KeyError, "bananas"),
(str({'bananas': '🍌🍌🍌'}), KeyError, "bananas"),
(f"Some bytes: {b''.join(chr(i).encode() for i in range(1024))}", KeyError, "|")
)
# Embrace the quirky!
acceptable_strings = (*ordinary_strings, *quirky_strings)
def test_twisted_logger_doesnt_like_curly_braces(capsys):
twisted_logger = TwistedLogger('twisted', observer=naive_print_observer)
# Normal strings are logged normally
for string in normal_strings:
for string in acceptable_strings:
twisted_logger.info(string)
captured = capsys.readouterr()
assert string.format() == captured.out
assert not captured.err
# But curly braces are not
for string in freak_format_strings:
for string, _exception, exception_message in freaky_format_strings:
twisted_logger.info(string)
captured = capsys.readouterr()
assert string != captured.out
assert "Unable to format event" in captured.out
assert exception_message in captured.out
def test_twisted_json_logger_doesnt_like_curly_braces_either():
twisted_logger = TwistedLogger('twisted-json')
# Normal strings are logged normally
for string in acceptable_strings:
file = StringIO()
twisted_logger.observer = get_json_observer_for_file(file)
twisted_logger.info(string)
logged_event = file.getvalue()
assert '"log_level": {"name": "info"' in logged_event
assert f'"log_format": "{expected_processing(string.format())}"' in logged_event
# But curly braces are not
for string, exception, exception_message in freaky_format_strings:
file = StringIO()
twisted_logger.observer = get_json_observer_for_file(file)
with pytest.raises(exception, match=exception_message):
twisted_logger.info(string)
def test_but_nucypher_logger_is_cool_with_that(capsys):
nucypher_logger = Logger('twisted', observer=naive_print_observer)
nucypher_logger = Logger('nucypher-logger', observer=naive_print_observer)
# Normal strings are logged normally
for string in normal_strings:
for string in acceptable_strings:
nucypher_logger.info(string)
captured = capsys.readouterr()
assert string.format() == captured.out
assert string == captured.out
assert not captured.err
# And curly braces too!
for string in freak_format_strings:
for string, _exception, _exception_message in freaky_format_strings:
nucypher_logger.info(string)
captured = capsys.readouterr()
assert "Unable to format event" not in captured.out
assert not captured.err
assert string == captured.out
def test_even_nucypher_json_logger_is_cool():
nucypher_logger = Logger('nucypher-logger-json')
# Normal strings are logged normally
for string in acceptable_strings:
file = StringIO()
nucypher_logger.observer = get_json_observer_for_file(file)
nucypher_logger.info(string)
logged_event = file.getvalue()
assert '"log_level": {"name": "info"' in logged_event
assert f'"log_format": "{expected_processing(string)}"' in logged_event
# And curly braces too!
for string, _exception, _exception_message in freaky_format_strings:
file = StringIO()
nucypher_logger.observer = get_json_observer_for_file(file)
nucypher_logger.info(string)
logged_event = file.getvalue()
assert '"log_level": {"name": "info"' in logged_event
assert f'"log_format": "{expected_processing(string)}"' in logged_event