mirror of
https://github.com/sprockets/sprockets.mixins.metrics.git
synced 2024-11-25 19:29:52 +00:00
ad19d64911
Also remove a test that isn't that useful
120 lines
3.8 KiB
Python
120 lines
3.8 KiB
Python
import logging
|
|
import re
|
|
import socket
|
|
|
|
from tornado import iostream, locks, tcpserver, testing
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class FakeStatsdServer(tcpserver.TCPServer):
|
|
"""
|
|
Implements something resembling a statsd server.
|
|
|
|
:param tornado.ioloop.IOLoop iol: the loop to attach to
|
|
:param str protocol: The StatsD protocol. May be either ``udp`` or ``tcp``.
|
|
|
|
Create an instance of this class in your asynchronous test case
|
|
attached to the IOLoop and configure your application to send
|
|
metrics to it. The received datagrams are available in the
|
|
``datagrams`` attribute for validation in your tests.
|
|
|
|
.. attribute:: sockaddr
|
|
|
|
The socket address that the server is listening on. This is
|
|
a tuple returned from :meth:`socket.socket.getsockname`.
|
|
|
|
.. attribute:: datagrams
|
|
|
|
A list of datagrams that have been received by the server.
|
|
|
|
"""
|
|
|
|
TCP_PATTERN = br'(?P<path>[^:]*):(?P<value>[^|]*)\|(?P<type>.*)\n$'
|
|
|
|
def __init__(self, iol, protocol='udp'):
|
|
self.datagrams = []
|
|
|
|
if protocol == 'tcp':
|
|
self.tcp_server()
|
|
elif protocol == 'udp':
|
|
self.udp_server(iol)
|
|
else:
|
|
raise ValueError('Invalid protocol: {}'.format(protocol))
|
|
|
|
def tcp_server(self):
|
|
self.event = locks.Event()
|
|
super().__init__()
|
|
|
|
sock, port = testing.bind_unused_port()
|
|
self.add_socket(sock)
|
|
self.sockaddr = sock.getsockname()
|
|
|
|
def udp_server(self, iol):
|
|
self.socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM,
|
|
socket.IPPROTO_UDP)
|
|
self.socket.bind(('127.0.0.1', 0))
|
|
self.sockaddr = self.socket.getsockname()
|
|
|
|
iol.add_handler(self.socket, self._handle_events, iol.READ)
|
|
self._iol = iol
|
|
|
|
def close(self):
|
|
if self.socket is not None:
|
|
if self._iol is not None:
|
|
self._iol.remove_handler(self.socket)
|
|
self._iol = None
|
|
self.socket.close()
|
|
self.socket = None
|
|
|
|
async def handle_stream(self, stream, address):
|
|
while True:
|
|
try:
|
|
result = await stream.read_until_regex(self.TCP_PATTERN)
|
|
except iostream.StreamClosedError:
|
|
break
|
|
else:
|
|
self.event.set()
|
|
self.datagrams.append(result)
|
|
if b'reconnect' in result:
|
|
self.reconnect_receive = True
|
|
stream.close()
|
|
return
|
|
|
|
def _handle_events(self, fd, events):
|
|
if fd != self.socket:
|
|
return
|
|
if self._iol is None:
|
|
raise RuntimeError
|
|
|
|
if events & self._iol.READ:
|
|
data, _ = self.socket.recvfrom(4096)
|
|
self.datagrams.append(data)
|
|
|
|
def find_metrics(self, prefix, metric_type):
|
|
"""
|
|
Yields captured datagrams that start with `prefix`.
|
|
|
|
:param str prefix: the metric prefix to search for
|
|
:param str metric_type: the statsd metric type (e.g., 'ms', 'c')
|
|
:returns: yields (path, value, metric_type) tuples for each
|
|
captured metric that matches
|
|
:raises AssertionError: if no metrics match.
|
|
|
|
"""
|
|
pattern = re.compile(
|
|
'(?P<path>{}[^:]*):(?P<value>[^|]*)\\|(?P<type>{})'.format(
|
|
re.escape(prefix), re.escape(metric_type)))
|
|
matched = False
|
|
|
|
for datagram in self.datagrams:
|
|
text_msg = datagram.decode('ascii')
|
|
match = pattern.match(text_msg)
|
|
if match:
|
|
yield match.groups()
|
|
matched = True
|
|
|
|
if not matched:
|
|
raise AssertionError(
|
|
'Expected metric starting with "{}" in {!r}'.format(
|
|
prefix, self.datagrams))
|