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
|
import pytest
import socket
def pytest_addoption(parser):
parser.addoption('--server', action='store', default='localhost',
help='memcached server')
parser.addoption('--port', action='store', default='11211',
help='memcached server port')
parser.addoption('--size', action='store', default=1024,
help='size of data in benchmarks')
parser.addoption('--count', action='store', default=10000,
help='number of iterations to run each benchmark')
parser.addoption('--keys', action='store', default=20,
help='number of keys to use for multi benchmarks')
@pytest.fixture(scope='session')
def host(request):
return request.config.option.server
@pytest.fixture(scope='session')
def port(request):
return int(request.config.option.port)
@pytest.fixture(scope='session')
def size(request):
return int(request.config.option.size)
@pytest.fixture(scope='session')
def count(request):
return int(request.config.option.count)
@pytest.fixture(scope='session')
def keys(request):
return int(request.config.option.keys)
@pytest.fixture(scope='session')
def pairs(size, keys):
return {'pymemcache_test:%d' % i: 'X' * size for i in range(keys)}
def pytest_generate_tests(metafunc):
if 'socket_module' in metafunc.fixturenames:
socket_modules = [socket]
try:
from gevent import socket as gevent_socket
except ImportError:
print("Skipping gevent (not installed)")
else:
socket_modules.append(gevent_socket)
metafunc.parametrize("socket_module", socket_modules)
if 'client_class' in metafunc.fixturenames:
from pymemcache.client.base import PooledClient, Client
from pymemcache.client.hash import HashClient
class HashClientSingle(HashClient):
def __init__(self, server, *args, **kwargs):
super(HashClientSingle, self).__init__(
[server], *args, **kwargs
)
metafunc.parametrize(
"client_class", [Client, PooledClient, HashClientSingle]
)
|