This repository was archived by the owner on May 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_integration.py
257 lines (204 loc) · 8.53 KB
/
test_integration.py
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
252
253
254
255
256
257
#! /usr/bin/env python
# coding=utf-8
import commands
from pgclient import *
from twisted.trial import unittest
class ServerOperator(object):
shell_path = '/home/mi/git.xiaomi/Pegasus/pegasus'
@classmethod
def modify_conf(cls, old_conf, new_conf):
origin_conf_file = cls.shell_path + '/src/server/config-server.ini'
status, output = commands.getstatusoutput('sed -i "s/%s/%s/" %s'
% (old_conf, new_conf, origin_conf_file))
# print(status, output)
@classmethod
def start_cluster(cls, meta_count, replica_count, check_health):
status, output = commands.getstatusoutput('cd %s && ./run.sh start_onebox -m %s -r %s'
% (cls.shell_path, meta_count, replica_count))
# print(status, output)
if check_health:
cls.wait_until_cluster_health()
else:
time.sleep(1) # wait a while for meta ready
@classmethod
def stop_and_clear_cluster(cls):
status, output = commands.getstatusoutput('cd %s && ./run.sh stop_onebox'
% cls.shell_path)
# print(status, output)
status, output = commands.getstatusoutput('cd %s && ./run.sh clear_onebox'
% cls.shell_path)
# print(status, output)
@classmethod
def operate_1_server(cls, op_type, server_type, index):
status, output = commands.getstatusoutput('cd %s && ./run.sh %s_onebox_instance -%s %s'
% (cls.shell_path, op_type, server_type, index))
# print(status, output)
@classmethod
def stop_1_replica(cls, index):
cls.operate_1_server('stop', 'r', index)
@classmethod
def start_1_replica(cls, index):
cls.operate_1_server('start', 'r', index)
@classmethod
def restart_1_replica(cls, index):
cls.operate_1_server('restart', 'r', index)
@classmethod
def stop_1_meta(cls, index):
cls.operate_1_server('stop', 'm', index)
@classmethod
def start_1_meta(cls, index):
cls.operate_1_server('start', 'm', index)
@classmethod
def wait_until_cluster_health(cls):
while True:
status, output = commands.getstatusoutput(
'cd %s && echo "app temp -d" | ./run.sh shell |'
' grep fully_healthy_partition_count | awk \'{print $NF}\''
% cls.shell_path)
if status == 0 and output == '8': # TODO '8' should fix
break
class TestIntegration(unittest.TestCase):
TEST_HKEY = 'test_hkey_1'
TEST_SKEY = 'test_skey_1'
TEST_VALUE = 'test_value_1'
DATA_COUNT = 1000
MAX_RETRY_COUNT = 30
check_health = True
def setUp(self):
ServerOperator.stop_and_clear_cluster()
def tearDown(self):
self.c.close()
ServerOperator.stop_and_clear_cluster()
@inlineCallbacks
def init(self, meta_count, replica_count, confs=None):
if isinstance(confs, dict):
for old_conf, new_conf in confs.iteritems():
ServerOperator.modify_conf(old_conf, new_conf)
ServerOperator.start_cluster(meta_count, replica_count, self.check_health)
self.c = Pegasus(['127.0.0.1:34601', '127.0.0.1:34602', '127.0.0.1:34603'], 'temp')
ret = yield self.c.init()
self.assertTrue(ret)
@inlineCallbacks
def loop_op(self):
for i in range(self.DATA_COUNT):
ret = yield self.c.get(self.TEST_HKEY + str(i), self.TEST_SKEY, 200)
if not isinstance(ret, tuple) or ret[0] != error_types.ERR_OK.value or ret[1] != self.TEST_VALUE:
defer.returnValue(False)
defer.returnValue(True)
@inlineCallbacks
def check_data(self):
wait_times = 0
while True:
ret = yield self.loop_op()
if not ret:
wait_times += 1
time.sleep(1)
if wait_times >= self.MAX_RETRY_COUNT:
self.assertTrue(False)
else:
break
@inlineCallbacks
def test_can_not_connect(self):
self.c = Pegasus(['127.0.1.1:34601', '127.0.0.1:34602', '127.0.0.1:34603'], 'temp')
ret = yield self.c.init()
self.assertEqual(ret, None)
@inlineCallbacks
def test_1of3_replica_restart(self):
yield self.init(3, 3)
for i in range(self.DATA_COUNT):
(ret, ign) = yield self.c.set(self.TEST_HKEY + str(i), self.TEST_SKEY, self.TEST_VALUE)
self.assertEqual(ret, error_types.ERR_OK.value)
ServerOperator.restart_1_replica(1)
yield self.check_data()
@inlineCallbacks
def test_3of3_replica_restart(self):
yield self.init(3, 3)
ServerOperator.wait_until_cluster_health()
for i in range(self.DATA_COUNT):
(ret, ign) = yield self.c.set(self.TEST_HKEY + str(i), self.TEST_SKEY, self.TEST_VALUE)
self.assertEqual(ret, error_types.ERR_OK.value)
for i in range(1, 4):
ServerOperator.restart_1_replica(i)
yield self.check_data()
@inlineCallbacks
def test_1of5_replica_restart(self):
yield self.init(3, 5)
for i in range(self.DATA_COUNT):
(ret, ign) = yield self.c.set(self.TEST_HKEY + str(i), self.TEST_SKEY, self.TEST_VALUE)
self.assertEqual(ret, error_types.ERR_OK.value)
ServerOperator.restart_1_replica(1)
yield self.check_data()
@inlineCallbacks
def test_1of5_replica_stop_and_start(self):
yield self.init(3, 5)
for i in range(self.DATA_COUNT):
(ret, ign) = yield self.c.set(self.TEST_HKEY + str(i), self.TEST_SKEY, self.TEST_VALUE)
self.assertEqual(ret, error_types.ERR_OK.value)
ServerOperator.stop_1_replica(1)
yield self.check_data()
ServerOperator.start_1_replica(1)
yield self.check_data()
@inlineCallbacks
def test_5of5_replica_restart(self):
yield self.init(3, 5)
ServerOperator.wait_until_cluster_health()
for i in range(self.DATA_COUNT):
(ret, ign) = yield self.c.set(self.TEST_HKEY + str(i), self.TEST_SKEY, self.TEST_VALUE)
self.assertEqual(ret, error_types.ERR_OK.value)
for i in range(1, 6):
ServerOperator.restart_1_replica(i)
yield self.check_data()
@inlineCallbacks
def test_1of5_replica_stop(self):
yield self.init(3, 5)
for i in range(self.DATA_COUNT):
(ret, ign) = yield self.c.set(self.TEST_HKEY + str(i), self.TEST_SKEY, self.TEST_VALUE)
self.assertEqual(ret, error_types.ERR_OK.value)
ServerOperator.stop_1_replica(1)
wait_times = 0
while True:
ret = yield self.loop_op()
if not ret:
wait_times += 1
time.sleep(wait_times)
if wait_times >= 20:
self.assertTrue(False)
else:
break
@inlineCallbacks
def test_2of5_replica_stop(self):
yield self.init(3, 5)
for i in range(self.DATA_COUNT):
(ret, ign) = yield self.c.set(self.TEST_HKEY + str(i), self.TEST_SKEY, self.TEST_VALUE)
self.assertEqual(ret, error_types.ERR_OK.value)
for i in range(1, 3):
ServerOperator.stop_1_replica(i)
yield self.check_data()
@inlineCallbacks
def test_1of5_replica_stop_and_start_with_meta_stop_and_start(self):
confs = {'timeout_ms = 60000': 'timeout_ms = 2000'}
yield self.init(2, 5, confs)
for i in range(self.DATA_COUNT):
(ret, ign) = yield self.c.set(self.TEST_HKEY + str(i), self.TEST_SKEY, self.TEST_VALUE)
self.assertEqual(ret, error_types.ERR_OK.value)
for i in range(2):
ServerOperator.stop_1_replica(1)
ServerOperator.stop_1_meta(i+1)
time.sleep(3)
yield self.check_data()
ServerOperator.start_1_meta(i+1)
ServerOperator.start_1_replica(1)
time.sleep(3)
yield self.check_data()
@inlineCallbacks
def test_0_replica_scan_exception(self):
self.check_health = False
yield self.init(3, 0)
o = ScanOptions()
s = self.c.get_scanner(self.TEST_HKEY, b'\x00\x00', b'\xFF\xFF', o)
try:
ret = yield s.get_next()
self.assertEqual(ret, None)
s.close()
except Exception, e:
self.assertEqual(e.args[0], 'session or packet error!')