Changeset 83fa028 in trunk


Ignore:
Timestamp:
2023-11-16T18:53:51Z (17 months ago)
Author:
Itamar Turner-Trauring <itamar@…>
Branches:
master
Children:
7b680b3
Parents:
3ddfb92
Message:

Use the existing Tahoe JSON encoder.

Location:
src/allmydata
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/allmydata/test/__init__.py

    r3ddfb92 r83fa028  
    126126
    127127from eliot import to_file
    128 from allmydata.util.eliotutil import BytesEliotJSONEncoder
    129 to_file(open("eliot.log", "wb"), encoder=BytesEliotJSONEncoder)
     128from allmydata.util.jsonbytes import AnyBytesJSONEncoder
     129to_file(open("eliot.log", "wb"), encoder=AnyBytesJSONEncoder)
  • TabularUnified src/allmydata/test/eliotutil.py

    r3ddfb92 r83fa028  
    3939)
    4040
    41 from ..util.eliotutil import (
    42     BytesEliotJSONEncoder
     41from ..util.jsonbytes import (
     42    AnyBytesJSONEncoder
    4343)
    4444
     
    148148    @wraps(test_method)
    149149    def run_with_logging(*args, **kwargs):
    150         validating_logger = MemoryLogger(encoder=BytesEliotJSONEncoder)
     150        validating_logger = MemoryLogger(encoder=AnyBytesJSONEncoder)
    151151        original = swap_logger(None)
    152152        try:
  • TabularUnified src/allmydata/test/test_client.py

    r3ddfb92 r83fa028  
    6868    jsonbytes as json,
    6969)
    70 from allmydata.util.eliotutil import capture_logging, BytesEliotJSONEncoder
     70from allmydata.util.eliotutil import capture_logging
    7171from allmydata.util.fileutil import abspath_expanduser_unicode
    7272from allmydata.interfaces import IFilesystemNode, IFileNode, \
     
    851851            succeeded=True,
    852852        ),
    853         encoder_=BytesEliotJSONEncoder
     853        encoder_=json.AnyBytesJSONEncoder
    854854    )
    855855    def test_static_servers(self, logger):
     
    886886            succeeded=False,
    887887        ),
    888         encoder_=BytesEliotJSONEncoder
     888        encoder_=json.AnyBytesJSONEncoder
    889889    )
    890890    def test_invalid_static_server(self, logger):
  • TabularUnified src/allmydata/test/test_eliotutil.py

    r3ddfb92 r83fa028  
    6464
    6565from ..util.eliotutil import (
    66     BytesEliotJSONEncoder,
    6766    log_call_deferred,
    6867    _parse_destination_description,
     
    8685        return result.wasSuccessful()
    8786    return AfterPreprocessing(run, Equals(True))
    88 
    89 
    90 class BytesEliotJSONEncoderTests(TestCase):
    91     """Tests for ``BytesEliotJSONEncoder``."""
    92 
    93     def test_encoding_bytes(self):
    94         """``BytesEliotJSONEncoder`` can encode bytes."""
    95         encoder = BytesEliotJSONEncoder()
    96         self.assertEqual(encoder.default(b"xxx"), "xxx")
    97         self.assertEqual(encoder.default(bytes([12])), "\x0c")
    98 
    99     def test_encoding_sets(self):
    100         """``BytesEliotJSONEncoder`` can encode sets."""
    101         encoder = BytesEliotJSONEncoder()
    102         self.assertIn(encoder.default({1, 2}), ([1, 2], [2, 1]))
    10387
    10488
  • TabularUnified src/allmydata/test/web/test_logs.py

    r3ddfb92 r83fa028  
    118118        yield proto.is_closed
    119119
    120         self.assertThat(len(messages), Equals(3))
     120        self.assertThat(len(messages), Equals(3), messages)
    121121        self.assertThat(messages[0]["action_type"], Equals("test:cli:some-exciting-action"))
    122122        self.assertThat(messages[0]["arguments"],
  • TabularUnified src/allmydata/util/eliotutil.py

    r3ddfb92 r83fa028  
    5151    capture_logging,
    5252)
    53 from eliot.json import EliotJSONEncoder
    5453
    5554from eliot._validation import (
     
    7978from twisted.application.service import Service
    8079
    81 
    82 class BytesEliotJSONEncoder(EliotJSONEncoder):
    83     """Support encoding bytes."""
    84 
    85     def default(self, o):
    86         if isinstance(o, bytes):
    87             return o.decode("utf-8", "backslashreplace")
    88         if isinstance(o, set):
    89             return list(o)
    90         return EliotJSONEncoder.default(self, o)
     80from .jsonbytes import AnyBytesJSONEncoder
    9181
    9282
     
    307297                    maxRotatedFiles=max_rotated_files,
    308298                )
    309         return lambda reactor: FileDestination(get_file(), encoder=BytesEliotJSONEncoder)
     299        return lambda reactor: FileDestination(get_file(), encoder=AnyBytesJSONEncoder)
    310300
    311301
  • TabularUnified src/allmydata/util/jsonbytes.py

    r3ddfb92 r83fa028  
    6262    A JSON encoder than can also encode UTF-8 encoded strings.
    6363    """
     64    def default(self, o):
     65        return bytes_to_unicode(False, o)
     66
    6467    def encode(self, o, **kwargs):
    6568        return json.JSONEncoder.encode(
     
    7881    bytes are quoted.
    7982    """
     83    def default(self, o):
     84        return bytes_to_unicode(True, o)
     85
    8086    def encode(self, o, **kwargs):
    8187        return json.JSONEncoder.encode(
Note: See TracChangeset for help on using the changeset viewer.