aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/stress_test.py
blob: 883c874a3217903920afc250ebb4d651a0e44782 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#!/usr/bin/env python3

# Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "math-server" project.
# For details, see https://github.com/egor-tensin/math-server.
# Distributed under the MIT License.

'''This is a stupid script to feed the server with somewhat random arithmetic
expressions.
'''

import argparse
from contextlib import contextmanager
import logging
import math
from multiprocessing import Pool
import random
import subprocess
from subprocess import PIPE
import sys
from timeit import default_timer


class Client:
    DEFAULT_PATH = 'math-client'
    DEFAULT_HOST = 'localhost'
    DEFAULT_PORT = 18000

    def __init__(self, path=None, host=None, port=None):
        if path is None:
            path = Client.DEFAULT_PATH
        if host is None:
            host = Client.DEFAULT_HOST
        if port is None:
            port = Client.DEFAULT_PORT
        self._path = path
        self._host = host
        self._port = port

    def get_command_line(self):
        return [self._path, '--host', self._host, '--port', str(self._port)]


@contextmanager
def timer(description):
    start = default_timer()
    try:
        yield
    finally:
        duration = default_timer() - start
        logging.info('%s: %s', description, duration)


class Expr:
    def __init__(self, impl):
        self._impl = impl

    def __str__(self):
        return self._impl

    def eval(self):
        try:
            return eval(self._impl)
        except Exception:
            logging.error("Couldn't evaluate expression: %s", self._impl)
            raise


class ExprGen:
    _OPERATORS = '+', '-', '*', '/'
    _MIN_NUMOF_OPERATORS = 10
    _MAX_NUMOF_OPERATORS = 1000
    _MIN_NUMBER = -10e10
    _MAX_NUMBER = 10e10

    @staticmethod
    def _random_operator():
        return ExprGen._OPERATORS[random.randrange(len(ExprGen._OPERATORS))]

    @staticmethod
    def _random_number():
        return random.randint(ExprGen._MIN_NUMBER, ExprGen._MAX_NUMBER)

    @staticmethod
    def gen_expression():
        numof_operators = random.randrange(ExprGen._MIN_NUMOF_OPERATORS,
                                           ExprGen._MAX_NUMOF_OPERATORS + 1)
        expr = ''
        for _ in range(numof_operators):
            expr += f"{ExprGen._random_number()} {ExprGen._random_operator()} "
        expr += str(ExprGen._random_number())
        return Expr(expr)


class Input:
    def __init__(self, expr_lst):
        self._expr_lst = expr_lst

    @staticmethod
    def generate(n):
        if n < 1:
            raise ValueError('input length must be positive')
        return Input([ExprGen.gen_expression() for i in range(n)])

    def stdin(self):
        return '\n'.join(map(str, self._expr_lst)) + '\n'

    def expected_output(self):
        return [expr.eval() for expr in self._expr_lst]


def _float_lists_equal(xs, ys):
    if len(xs) != len(ys):
        return False
    for i in range(len(xs)):
        if not math.isclose(xs[i], ys[i]):
            return False
    return True


class Output:
    def __init__(self, stdout):
        self._stdout = stdout

    def __eq__(self, other):
        return self._stdout == other._stdout

    def __str__(self):
        return self._stdout

    def parse(self):
        values = []
        for line in self._stdout.split('\n')[:-1]:
            try:
                n = float(line)
            except ValueError:
                logging.error('Not a number: %s', line)
                raise
            values.append(n)
        return values

    def equal_to_expected(self, expected):
        this = self.parse()
        if not _float_lists_equal(this, expected):
            logging.error("Actual output doesn't match expected output")
            logging.error('Expected output (length %d):\n%s', len(expected), expected)
            logging.error('Actual output (length %d):\n%s', len(this), this)
            return False
        return True


def _run_client(client, stdin):
    with _logging():
        cmd = client.get_command_line()
        with timer('Client invocation'):
            result = subprocess.run(cmd, stdout=PIPE, stderr=PIPE, input=stdin,
                                    universal_newlines=True, check=True)
        return Output(result.stdout)


def _run_clients(numof_clients, client, stdin):
    with Pool(numof_clients) as pool:
        results = pool.starmap(_run_client, [(client, stdin) for _ in range(numof_clients)])
        if len(results) != numof_clients:
            raise RuntimeError(f'expected {numof_clients} results, got {len(results)}')
        return results


def _run_stress_test(args):
    client = Client(args.client, args.host, args.port)
    input = Input.generate(args.numof_expressions)
    stdin = input.stdin()
    expected_output = input.expected_output()
    actual_outputs = _run_clients(args.numof_processes, client, stdin)

    # Check that all outputs are equal to each other:
    assert actual_outputs
    actual_output, rest = actual_outputs[0], actual_outputs[1:]
    for other in rest:
        if actual_output == other:
            continue
        logging.error("Client outputs don't match, this should never happen")
        logging.error('For example, this:\n%s', actual_output)
        logging.error('... is not equal to this:\n%s', other)
        return False

    # Check that the first output is equal to the expected output:
    return actual_output.equal_to_expected(expected_output)


def _parse_positive_int(s):
    try:
        n = int(s)
    except ValueError:
        raise argparse.ArgumentTypeError(f'must be a positive integer: {s}')
    if n < 1:
        raise argparse.ArgumentTypeError(f'must be a positive integer: {s}')
    return n


def _parse_args(argv=None):
    if argv is None:
        argv = sys.argv[1:]

    parser = argparse.ArgumentParser(
        description=__doc__,
        formatter_class=argparse.RawDescriptionHelpFormatter)

    parser.add_argument('--host', '-H', metavar='HOST',
                        default=Client.DEFAULT_HOST,
                        help='server host')
    parser.add_argument('--port', '-p', metavar='PORT',
                        type=int, default=Client.DEFAULT_PORT,
                        help='server port')
    parser.add_argument('--processes', '-n', metavar='N',
                        dest='numof_processes',
                        type=_parse_positive_int, default=1,
                        help='number of processes')
    parser.add_argument('--expressions', '-e', metavar='N',
                        dest='numof_expressions',
                        type=_parse_positive_int, default=1,
                        help='number of expressions')
    parser.add_argument('--client', '-c', metavar='PATH',
                        default=Client.DEFAULT_PATH,
                        help='path to the client executable')

    return parser.parse_args(argv)


@contextmanager
def _logging():
    logging.basicConfig(
        format='%(asctime)s | %(levelname)s | %(message)s',
        datefmt='%Y-%m-%d %H:%M:%S',
        level=logging.DEBUG)
    try:
        yield
    except Exception as e:
        logging.exception(e)
        raise


def main(argv=None):
    with _logging():
        args = _parse_args(argv)
        if not _run_stress_test(args):
            sys.exit(1)


if __name__ == '__main__':
    main()