mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-22 10:53:03 -08:00
3d378eb583
* Bump cheroot from 8.6.0 to 9.0.0 Bumps [cheroot](https://github.com/cherrypy/cheroot) from 8.6.0 to 9.0.0. - [Release notes](https://github.com/cherrypy/cheroot/releases) - [Changelog](https://github.com/cherrypy/cheroot/blob/main/CHANGES.rst) - [Commits](https://github.com/cherrypy/cheroot/compare/v8.6.0...v9.0.0) --- updated-dependencies: - dependency-name: cheroot dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update cheroot==9.0.0 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
50 lines
1.2 KiB
Python
50 lines
1.2 KiB
Python
"""Tests for :py:mod:`cheroot.makefile`."""
|
|
|
|
from cheroot import makefile
|
|
|
|
|
|
class MockSocket:
|
|
"""A mock socket."""
|
|
|
|
def __init__(self):
|
|
"""Initialize :py:class:`MockSocket`."""
|
|
self.messages = []
|
|
|
|
def recv_into(self, buf):
|
|
"""Simulate ``recv_into`` for Python 3."""
|
|
if not self.messages:
|
|
return 0
|
|
msg = self.messages.pop(0)
|
|
for index, byte in enumerate(msg):
|
|
buf[index] = byte
|
|
return len(msg)
|
|
|
|
def recv(self, size):
|
|
"""Simulate ``recv`` for Python 2."""
|
|
try:
|
|
return self.messages.pop(0)
|
|
except IndexError:
|
|
return ''
|
|
|
|
def send(self, val):
|
|
"""Simulate a send."""
|
|
return len(val)
|
|
|
|
|
|
def test_bytes_read():
|
|
"""Reader should capture bytes read."""
|
|
sock = MockSocket()
|
|
sock.messages.append(b'foo')
|
|
rfile = makefile.MakeFile(sock, 'r')
|
|
rfile.read()
|
|
assert rfile.bytes_read == 3
|
|
|
|
|
|
def test_bytes_written():
|
|
"""Writer should capture bytes written."""
|
|
sock = MockSocket()
|
|
sock.messages.append(b'foo')
|
|
wfile = makefile.MakeFile(sock, 'w')
|
|
wfile.write(b'bar')
|
|
assert wfile.bytes_written == 3
|