Exemplo n.º 1
0
async def err_invalid_endpoint(
        client: Union[HTTPClientV3, WebsocketClientV3],
        throttler: Throttler,
) -> None:
    """Handler to make a request against an endpoint which does not exist."""
    client_type = client.__class__.__name__

    if isinstance(client, HTTPClientV3):
        url = f'{client.url}/bad-route'
        try:
            async with throttler:
                _ = await client.make_request('GET', url)
        except Exception as e:
            # this is okay and what we expect
            logger.debug(
                'invalid endpoint request failed expectedly',
                url=url, err=e, client=client_type,
            )

    else:
        event = 'request/bad-event'
        try:
            async with throttler:
                _ = await client.request(event)
        except Exception as e:
            # this is okay and what we expect
            logger.debug(
                'invalid event request failed expectedly',
                request=event, err=e, client=client_type,
            )
Exemplo n.º 2
0
def expect_error(fn, client):
    try:
        yield
    except Exception as e:
        logger.debug(
            'invalid endpoint request failed expectedly',
            err=e, fn=fn, client=client.__class__.__name__,
        )
Exemplo n.º 3
0
def log_latency(fn, client):
    t = time.time()
    try:
        yield
    except Exception as e:
        logger.exception(
            'failed request unexpectedly',
            request=fn, client=client.__class__.__name__,
            err=e, t=time.time() - t,
        )
    else:
        logger.debug(
            'issued request',
            request=fn, client=client.__class__.__name__,
            t=time.time() - t,
        )
Exemplo n.º 4
0
async def on_write_sync(
        client: Union[HTTPClientV3, WebsocketClientV3],
        is_err: bool,
        throttler: Throttler,
) -> None:
    """Handler for issuing a synchronous write request."""
    if is_err:
        if random.randint(0, 1):
            # Issue a request to the correct device with the incorrect data.
            leds = await synse_cache.get('leds')
            # If there are no LEDs, this will fall back to the other failure request.
            if leds:
                async with throttler:
                    with expect_error('write_sync', client):
                        _ = await client.write_sync(
                            device=random.choice(leds),
                            payload={'action': 'color', 'data': 'not a hex color'},
                        )
                return

        # Issue a request to a nonexistent device
        async with throttler:
            with expect_error('write_sync', client):
                _ = await client.write_sync(
                    device='not-a-known-device-id',
                    payload={'action': 'state', 'data': 'on'},
                )

    else:
        async with throttler:
            leds = await synse_cache.get('leds')
            if not leds:
                logger.debug(
                    'no LED devices cached, waiting for future scans request to rebuild cache',
                )
                return

            with log_latency('write_sync', client):
                _ = await client.write_sync(
                    device=random.choice(leds),
                    payload={'action': 'color', 'data': 'ff33aa'},
                )
Exemplo n.º 5
0
async def on_transaction(
        client: Union[HTTPClientV3, WebsocketClientV3],
        is_err: bool,
        throttler: Throttler,
) -> None:
    """Handler for issuing a transaction info request."""
    if is_err:
        async with throttler:
            with expect_error('transaction', client):
                _ = await client.transaction('not-a-known-transaction-id')
    else:
        async with throttler:
            txns = await synse_cache.get('txns')
            if not txns:
                logger.debug(
                    'no transactions cached, waiting for future transactions request to rebuild cache',
                )
                return

            with log_latency('transaction', client):
                _ = await client.transaction(random.choice(txns))
Exemplo n.º 6
0
async def on_info(
        client: Union[HTTPClientV3, WebsocketClientV3],
        is_err: bool,
        throttler: Throttler,
) -> None:
    """Handler for issuing a device info request."""
    if is_err:
        async with throttler:
            with expect_error('info', client):
                _ = await client.info('not-a-known-device-id')
    else:
        async with throttler:
            devs = await synse_cache.get('devices')
            if not devs:
                logger.debug(
                    'no devices cached, waiting for future scan request to rebuild device cache',
                )
                return

            with log_latency('info', client):
                _ = await client.info(random.choice(devs))
Exemplo n.º 7
0
async def run() -> None:
    """Run the Synse LoadGen application."""

    logger.info('starting application run')
    config.load_config()
    logger.info(
        'loaded configuration',
        config=config.options.config,
        source=config.options.config_file,
    )

    setup_logger()
    logger.info('configured logger')

    logger.debug('creating aiohttp client session')
    session = aiohttp.ClientSession(
        loop=asyncio.get_event_loop(),
        timeout=aiohttp.ClientTimeout(
            total=config.options.get('synse.timeout'),
        ),
    )

    throttler = Throttler(rate_limit=config.options.get('settings.rate'))

    async with session as s:

        httpv3 = None
        wsv3 = None

        for i in range(5):
            logger.debug('creating Synse HTTP client', attempt=i)
            try:
                httpv3 = HTTPClientV3(
                    host=config.options.get('synse.host'),
                    port=config.options.get('synse.port'),
                    timeout=config.options.get('synse.timeout'),
                    session=s,
                )

                logger.debug('creating Synse WebSocket client')
                wsv3 = WebsocketClientV3(
                    host=config.options.get('synse.host'),
                    port=config.options.get('synse.port'),
                    session=s,
                )
                logger.debug('connecting WebSocket')
                await wsv3.connect()
            except Exception as e:
                logger.warning('failed to connect to synse... retrying', err=e)
                await asyncio.sleep(0.5)
            else:
                break

        requests = [
            'status',
            'version',
            'scan',
            'read',
            'read_device',
            'write_sync',
            'write_async',
            'transaction',
            'transactions',
            'plugin',
            'plugins',
            'plugin_health',
            'tags',
            'info',
        ]

        err_ratio = config.options.get('settings.error_ratio')
        while True:
            await globals().get(f'on_{random.choice(requests)}')(
                random.choice((httpv3, wsv3)),
                random.random() <= err_ratio,
                throttler,
            )
            await asyncio.sleep(0.05)