root / qa / ganeti-qa.py @ d0a44ec0
History | View | Annotate | Download (24.8 kB)
1 |
#!/usr/bin/python -u
|
---|---|
2 |
#
|
3 |
|
4 |
# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Google Inc.
|
5 |
#
|
6 |
# This program is free software; you can redistribute it and/or modify
|
7 |
# it under the terms of the GNU General Public License as published by
|
8 |
# the Free Software Foundation; either version 2 of the License, or
|
9 |
# (at your option) any later version.
|
10 |
#
|
11 |
# This program is distributed in the hope that it will be useful, but
|
12 |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14 |
# General Public License for more details.
|
15 |
#
|
16 |
# You should have received a copy of the GNU General Public License
|
17 |
# along with this program; if not, write to the Free Software
|
18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
19 |
# 02110-1301, USA.
|
20 |
|
21 |
|
22 |
"""Script for doing QA on Ganeti.
|
23 |
|
24 |
"""
|
25 |
|
26 |
# pylint: disable=C0103
|
27 |
# due to invalid name
|
28 |
|
29 |
import sys |
30 |
import datetime |
31 |
import optparse |
32 |
|
33 |
import qa_cluster |
34 |
import qa_config |
35 |
import qa_daemon |
36 |
import qa_env |
37 |
import qa_error |
38 |
import qa_group |
39 |
import qa_instance |
40 |
import qa_network |
41 |
import qa_node |
42 |
import qa_os |
43 |
import qa_job |
44 |
import qa_rapi |
45 |
import qa_tags |
46 |
import qa_utils |
47 |
|
48 |
from ganeti import utils |
49 |
from ganeti import rapi # pylint: disable=W0611 |
50 |
from ganeti import constants |
51 |
|
52 |
import ganeti.rapi.client # pylint: disable=W0611 |
53 |
from ganeti.rapi.client import UsesRapiClient |
54 |
|
55 |
|
56 |
def _FormatHeader(line, end=72): |
57 |
"""Fill a line up to the end column.
|
58 |
|
59 |
"""
|
60 |
line = "---- " + line + " " |
61 |
line += "-" * (end - len(line)) |
62 |
line = line.rstrip() |
63 |
return line
|
64 |
|
65 |
|
66 |
def _DescriptionOf(fn): |
67 |
"""Computes the description of an item.
|
68 |
|
69 |
"""
|
70 |
if fn.__doc__:
|
71 |
desc = fn.__doc__.splitlines()[0].strip()
|
72 |
else:
|
73 |
desc = "%r" % fn
|
74 |
|
75 |
return desc.rstrip(".") |
76 |
|
77 |
|
78 |
def RunTest(fn, *args, **kwargs): |
79 |
"""Runs a test after printing a header.
|
80 |
|
81 |
"""
|
82 |
|
83 |
tstart = datetime.datetime.now() |
84 |
|
85 |
desc = _DescriptionOf(fn) |
86 |
|
87 |
print
|
88 |
print _FormatHeader("%s start %s" % (tstart, desc)) |
89 |
|
90 |
try:
|
91 |
retval = fn(*args, **kwargs) |
92 |
return retval
|
93 |
finally:
|
94 |
tstop = datetime.datetime.now() |
95 |
tdelta = tstop - tstart |
96 |
print _FormatHeader("%s time=%s %s" % (tstop, tdelta, desc)) |
97 |
|
98 |
|
99 |
def RunTestIf(testnames, fn, *args, **kwargs): |
100 |
"""Runs a test conditionally.
|
101 |
|
102 |
@param testnames: either a single test name in the configuration
|
103 |
file, or a list of testnames (which will be AND-ed together)
|
104 |
|
105 |
"""
|
106 |
if qa_config.TestEnabled(testnames):
|
107 |
RunTest(fn, *args, **kwargs) |
108 |
else:
|
109 |
tstart = datetime.datetime.now() |
110 |
desc = _DescriptionOf(fn) |
111 |
# TODO: Formatting test names when non-string names are involved
|
112 |
print _FormatHeader("%s skipping %s, test(s) %s disabled" % |
113 |
(tstart, desc, testnames)) |
114 |
|
115 |
|
116 |
def RunEnvTests(): |
117 |
"""Run several environment tests.
|
118 |
|
119 |
"""
|
120 |
RunTestIf("env", qa_env.TestSshConnection)
|
121 |
RunTestIf("env", qa_env.TestIcmpPing)
|
122 |
RunTestIf("env", qa_env.TestGanetiCommands)
|
123 |
|
124 |
|
125 |
def SetupCluster(rapi_user, rapi_secret): |
126 |
"""Initializes the cluster.
|
127 |
|
128 |
@param rapi_user: Login user for RAPI
|
129 |
@param rapi_secret: Login secret for RAPI
|
130 |
|
131 |
"""
|
132 |
RunTestIf("create-cluster", qa_cluster.TestClusterInit,
|
133 |
rapi_user, rapi_secret) |
134 |
if not qa_config.TestEnabled("create-cluster"): |
135 |
# If the cluster is already in place, we assume that exclusive-storage is
|
136 |
# already set according to the configuration
|
137 |
qa_config.SetExclusiveStorage(qa_config.get("exclusive-storage", False)) |
138 |
|
139 |
# Test on empty cluster
|
140 |
RunTestIf("node-list", qa_node.TestNodeList)
|
141 |
RunTestIf("instance-list", qa_instance.TestInstanceList)
|
142 |
RunTestIf("job-list", qa_job.TestJobList)
|
143 |
|
144 |
RunTestIf("create-cluster", qa_node.TestNodeAddAll)
|
145 |
if not qa_config.TestEnabled("create-cluster"): |
146 |
# consider the nodes are already there
|
147 |
qa_node.MarkNodeAddedAll() |
148 |
|
149 |
RunTestIf("test-jobqueue", qa_cluster.TestJobqueue)
|
150 |
|
151 |
# enable the watcher (unconditionally)
|
152 |
RunTest(qa_daemon.TestResumeWatcher) |
153 |
|
154 |
RunTestIf("node-list", qa_node.TestNodeList)
|
155 |
|
156 |
# Test listing fields
|
157 |
RunTestIf("node-list", qa_node.TestNodeListFields)
|
158 |
RunTestIf("instance-list", qa_instance.TestInstanceListFields)
|
159 |
RunTestIf("job-list", qa_job.TestJobListFields)
|
160 |
RunTestIf("instance-export", qa_instance.TestBackupListFields)
|
161 |
|
162 |
RunTestIf("node-info", qa_node.TestNodeInfo)
|
163 |
|
164 |
|
165 |
def RunClusterTests(): |
166 |
"""Runs tests related to gnt-cluster.
|
167 |
|
168 |
"""
|
169 |
for test, fn in [ |
170 |
("create-cluster", qa_cluster.TestClusterInitDisk),
|
171 |
("cluster-renew-crypto", qa_cluster.TestClusterRenewCrypto),
|
172 |
("cluster-verify", qa_cluster.TestClusterVerify),
|
173 |
("cluster-reserved-lvs", qa_cluster.TestClusterReservedLvs),
|
174 |
# TODO: add more cluster modify tests
|
175 |
("cluster-modify", qa_cluster.TestClusterModifyEmpty),
|
176 |
("cluster-modify", qa_cluster.TestClusterModifyIPolicy),
|
177 |
("cluster-modify", qa_cluster.TestClusterModifyISpecs),
|
178 |
("cluster-modify", qa_cluster.TestClusterModifyBe),
|
179 |
("cluster-modify", qa_cluster.TestClusterModifyDisk),
|
180 |
("cluster-modify", qa_cluster.TestClusterModifyStorageTypes),
|
181 |
("cluster-rename", qa_cluster.TestClusterRename),
|
182 |
("cluster-info", qa_cluster.TestClusterVersion),
|
183 |
("cluster-info", qa_cluster.TestClusterInfo),
|
184 |
("cluster-info", qa_cluster.TestClusterGetmaster),
|
185 |
("cluster-redist-conf", qa_cluster.TestClusterRedistConf),
|
186 |
(["cluster-copyfile", qa_config.NoVirtualCluster],
|
187 |
qa_cluster.TestClusterCopyfile), |
188 |
("cluster-command", qa_cluster.TestClusterCommand),
|
189 |
("cluster-burnin", qa_cluster.TestClusterBurnin),
|
190 |
("cluster-master-failover", qa_cluster.TestClusterMasterFailover),
|
191 |
("cluster-master-failover",
|
192 |
qa_cluster.TestClusterMasterFailoverWithDrainedQueue), |
193 |
(["cluster-oob", qa_config.NoVirtualCluster],
|
194 |
qa_cluster.TestClusterOob), |
195 |
(qa_rapi.Enabled, qa_rapi.TestVersion), |
196 |
(qa_rapi.Enabled, qa_rapi.TestEmptyCluster), |
197 |
(qa_rapi.Enabled, qa_rapi.TestRapiQuery), |
198 |
]: |
199 |
RunTestIf(test, fn) |
200 |
|
201 |
|
202 |
def RunRepairDiskSizes(): |
203 |
"""Run the repair disk-sizes test.
|
204 |
|
205 |
"""
|
206 |
RunTestIf("cluster-repair-disk-sizes", qa_cluster.TestClusterRepairDiskSizes)
|
207 |
|
208 |
|
209 |
def RunOsTests(): |
210 |
"""Runs all tests related to gnt-os.
|
211 |
|
212 |
"""
|
213 |
os_enabled = ["os", qa_config.NoVirtualCluster]
|
214 |
|
215 |
if qa_config.TestEnabled(qa_rapi.Enabled):
|
216 |
rapi_getos = qa_rapi.GetOperatingSystems |
217 |
else:
|
218 |
rapi_getos = None
|
219 |
|
220 |
for fn in [ |
221 |
qa_os.TestOsList, |
222 |
qa_os.TestOsDiagnose, |
223 |
]: |
224 |
RunTestIf(os_enabled, fn) |
225 |
|
226 |
for fn in [ |
227 |
qa_os.TestOsValid, |
228 |
qa_os.TestOsInvalid, |
229 |
qa_os.TestOsPartiallyValid, |
230 |
]: |
231 |
RunTestIf(os_enabled, fn, rapi_getos) |
232 |
|
233 |
for fn in [ |
234 |
qa_os.TestOsModifyValid, |
235 |
qa_os.TestOsModifyInvalid, |
236 |
qa_os.TestOsStatesNonExisting, |
237 |
]: |
238 |
RunTestIf(os_enabled, fn) |
239 |
|
240 |
|
241 |
def RunCommonInstanceTests(instance): |
242 |
"""Runs a few tests that are common to all disk types.
|
243 |
|
244 |
"""
|
245 |
RunTestIf("instance-shutdown", qa_instance.TestInstanceShutdown, instance)
|
246 |
RunTestIf(["instance-shutdown", "instance-console", qa_rapi.Enabled], |
247 |
qa_rapi.TestRapiStoppedInstanceConsole, instance) |
248 |
RunTestIf(["instance-shutdown", "instance-modify"], |
249 |
qa_instance.TestInstanceStoppedModify, instance) |
250 |
RunTestIf("instance-shutdown", qa_instance.TestInstanceStartup, instance)
|
251 |
|
252 |
# Test shutdown/start via RAPI
|
253 |
RunTestIf(["instance-shutdown", qa_rapi.Enabled],
|
254 |
qa_rapi.TestRapiInstanceShutdown, instance) |
255 |
RunTestIf(["instance-shutdown", qa_rapi.Enabled],
|
256 |
qa_rapi.TestRapiInstanceStartup, instance) |
257 |
|
258 |
RunTestIf("instance-list", qa_instance.TestInstanceList)
|
259 |
|
260 |
RunTestIf("instance-info", qa_instance.TestInstanceInfo, instance)
|
261 |
|
262 |
RunTestIf("instance-modify", qa_instance.TestInstanceModify, instance)
|
263 |
RunTestIf(["instance-modify", qa_rapi.Enabled],
|
264 |
qa_rapi.TestRapiInstanceModify, instance) |
265 |
|
266 |
RunTestIf("instance-console", qa_instance.TestInstanceConsole, instance)
|
267 |
RunTestIf(["instance-console", qa_rapi.Enabled],
|
268 |
qa_rapi.TestRapiInstanceConsole, instance) |
269 |
|
270 |
DOWN_TESTS = qa_config.Either([ |
271 |
"instance-reinstall",
|
272 |
"instance-rename",
|
273 |
"instance-grow-disk",
|
274 |
]) |
275 |
|
276 |
# shutdown instance for any 'down' tests
|
277 |
RunTestIf(DOWN_TESTS, qa_instance.TestInstanceShutdown, instance) |
278 |
|
279 |
# now run the 'down' state tests
|
280 |
RunTestIf("instance-reinstall", qa_instance.TestInstanceReinstall, instance)
|
281 |
RunTestIf(["instance-reinstall", qa_rapi.Enabled],
|
282 |
qa_rapi.TestRapiInstanceReinstall, instance) |
283 |
|
284 |
if qa_config.TestEnabled("instance-rename"): |
285 |
tgt_instance = qa_config.AcquireInstance() |
286 |
try:
|
287 |
rename_source = instance.name |
288 |
rename_target = tgt_instance.name |
289 |
# perform instance rename to the same name
|
290 |
RunTest(qa_instance.TestInstanceRenameAndBack, |
291 |
rename_source, rename_source) |
292 |
RunTestIf(qa_rapi.Enabled, qa_rapi.TestRapiInstanceRenameAndBack, |
293 |
rename_source, rename_source) |
294 |
if rename_target is not None: |
295 |
# perform instance rename to a different name, if we have one configured
|
296 |
RunTest(qa_instance.TestInstanceRenameAndBack, |
297 |
rename_source, rename_target) |
298 |
RunTestIf(qa_rapi.Enabled, qa_rapi.TestRapiInstanceRenameAndBack, |
299 |
rename_source, rename_target) |
300 |
finally:
|
301 |
tgt_instance.Release() |
302 |
|
303 |
RunTestIf(["instance-grow-disk"], qa_instance.TestInstanceGrowDisk, instance)
|
304 |
|
305 |
# and now start the instance again
|
306 |
RunTestIf(DOWN_TESTS, qa_instance.TestInstanceStartup, instance) |
307 |
|
308 |
RunTestIf("instance-reboot", qa_instance.TestInstanceReboot, instance)
|
309 |
|
310 |
RunTestIf("tags", qa_tags.TestInstanceTags, instance)
|
311 |
|
312 |
RunTestIf("cluster-verify", qa_cluster.TestClusterVerify)
|
313 |
|
314 |
RunTestIf(qa_rapi.Enabled, qa_rapi.TestInstance, instance) |
315 |
|
316 |
# Lists instances, too
|
317 |
RunTestIf("node-list", qa_node.TestNodeList)
|
318 |
|
319 |
# Some jobs have been run, let's test listing them
|
320 |
RunTestIf("job-list", qa_job.TestJobList)
|
321 |
|
322 |
|
323 |
def RunCommonNodeTests(): |
324 |
"""Run a few common node tests.
|
325 |
|
326 |
"""
|
327 |
RunTestIf("node-volumes", qa_node.TestNodeVolumes)
|
328 |
RunTestIf("node-storage", qa_node.TestNodeStorage)
|
329 |
RunTestIf(["node-oob", qa_config.NoVirtualCluster], qa_node.TestOutOfBand)
|
330 |
|
331 |
|
332 |
def RunGroupListTests(): |
333 |
"""Run tests for listing node groups.
|
334 |
|
335 |
"""
|
336 |
RunTestIf("group-list", qa_group.TestGroupList)
|
337 |
RunTestIf("group-list", qa_group.TestGroupListFields)
|
338 |
|
339 |
|
340 |
def RunNetworkTests(): |
341 |
"""Run tests for network management.
|
342 |
|
343 |
"""
|
344 |
RunTestIf("network", qa_network.TestNetworkAddRemove)
|
345 |
RunTestIf("network", qa_network.TestNetworkConnect)
|
346 |
|
347 |
|
348 |
def RunGroupRwTests(): |
349 |
"""Run tests for adding/removing/renaming groups.
|
350 |
|
351 |
"""
|
352 |
RunTestIf("group-rwops", qa_group.TestGroupAddRemoveRename)
|
353 |
RunTestIf("group-rwops", qa_group.TestGroupAddWithOptions)
|
354 |
RunTestIf("group-rwops", qa_group.TestGroupModify)
|
355 |
RunTestIf(["group-rwops", qa_rapi.Enabled], qa_rapi.TestRapiNodeGroups)
|
356 |
RunTestIf(["group-rwops", "tags"], qa_tags.TestGroupTags, |
357 |
qa_group.GetDefaultGroup()) |
358 |
|
359 |
|
360 |
def RunExportImportTests(instance, inodes): |
361 |
"""Tries to export and import the instance.
|
362 |
|
363 |
@type inodes: list of nodes
|
364 |
@param inodes: current nodes of the instance
|
365 |
|
366 |
"""
|
367 |
if qa_config.TestEnabled("instance-export"): |
368 |
RunTest(qa_instance.TestInstanceExportNoTarget, instance) |
369 |
|
370 |
pnode = inodes[0]
|
371 |
expnode = qa_config.AcquireNode(exclude=pnode) |
372 |
try:
|
373 |
name = RunTest(qa_instance.TestInstanceExport, instance, expnode) |
374 |
|
375 |
RunTest(qa_instance.TestBackupList, expnode) |
376 |
|
377 |
if qa_config.TestEnabled("instance-import"): |
378 |
newinst = qa_config.AcquireInstance() |
379 |
try:
|
380 |
RunTest(qa_instance.TestInstanceImport, newinst, pnode, |
381 |
expnode, name) |
382 |
# Check if starting the instance works
|
383 |
RunTest(qa_instance.TestInstanceStartup, newinst) |
384 |
RunTest(qa_instance.TestInstanceRemove, newinst) |
385 |
finally:
|
386 |
newinst.Release() |
387 |
finally:
|
388 |
expnode.Release() |
389 |
|
390 |
if qa_config.TestEnabled([qa_rapi.Enabled, "inter-cluster-instance-move"]): |
391 |
newinst = qa_config.AcquireInstance() |
392 |
try:
|
393 |
tnode = qa_config.AcquireNode(exclude=inodes) |
394 |
try:
|
395 |
RunTest(qa_rapi.TestInterClusterInstanceMove, instance, newinst, |
396 |
inodes, tnode) |
397 |
finally:
|
398 |
tnode.Release() |
399 |
finally:
|
400 |
newinst.Release() |
401 |
|
402 |
|
403 |
def RunDaemonTests(instance): |
404 |
"""Test the ganeti-watcher script.
|
405 |
|
406 |
"""
|
407 |
RunTest(qa_daemon.TestPauseWatcher) |
408 |
|
409 |
RunTestIf("instance-automatic-restart",
|
410 |
qa_daemon.TestInstanceAutomaticRestart, instance) |
411 |
RunTestIf("instance-consecutive-failures",
|
412 |
qa_daemon.TestInstanceConsecutiveFailures, instance) |
413 |
|
414 |
RunTest(qa_daemon.TestResumeWatcher) |
415 |
|
416 |
|
417 |
def RunHardwareFailureTests(instance, inodes): |
418 |
"""Test cluster internal hardware failure recovery.
|
419 |
|
420 |
"""
|
421 |
RunTestIf("instance-failover", qa_instance.TestInstanceFailover, instance)
|
422 |
RunTestIf(["instance-failover", qa_rapi.Enabled],
|
423 |
qa_rapi.TestRapiInstanceFailover, instance) |
424 |
|
425 |
RunTestIf("instance-migrate", qa_instance.TestInstanceMigrate, instance)
|
426 |
RunTestIf(["instance-migrate", qa_rapi.Enabled],
|
427 |
qa_rapi.TestRapiInstanceMigrate, instance) |
428 |
|
429 |
if qa_config.TestEnabled("instance-replace-disks"): |
430 |
# We just need alternative secondary nodes, hence "- 1"
|
431 |
othernodes = qa_config.AcquireManyNodes(len(inodes) - 1, exclude=inodes) |
432 |
try:
|
433 |
RunTestIf(qa_rapi.Enabled, qa_rapi.TestRapiInstanceReplaceDisks, instance) |
434 |
RunTest(qa_instance.TestReplaceDisks, |
435 |
instance, inodes, othernodes) |
436 |
finally:
|
437 |
qa_config.ReleaseManyNodes(othernodes) |
438 |
del othernodes
|
439 |
|
440 |
if qa_config.TestEnabled("instance-recreate-disks"): |
441 |
try:
|
442 |
acquirednodes = qa_config.AcquireManyNodes(len(inodes), exclude=inodes)
|
443 |
othernodes = acquirednodes |
444 |
except qa_error.OutOfNodesError:
|
445 |
if len(inodes) > 1: |
446 |
# If the cluster is not big enough, let's reuse some of the nodes, but
|
447 |
# with different roles. In this way, we can test a DRBD instance even on
|
448 |
# a 3-node cluster.
|
449 |
acquirednodes = [qa_config.AcquireNode(exclude=inodes)] |
450 |
othernodes = acquirednodes + inodes[:-1]
|
451 |
else:
|
452 |
raise
|
453 |
try:
|
454 |
RunTest(qa_instance.TestRecreateDisks, |
455 |
instance, inodes, othernodes) |
456 |
finally:
|
457 |
qa_config.ReleaseManyNodes(acquirednodes) |
458 |
|
459 |
if len(inodes) >= 2: |
460 |
RunTestIf("node-evacuate", qa_node.TestNodeEvacuate, inodes[0], inodes[1]) |
461 |
RunTestIf("node-failover", qa_node.TestNodeFailover, inodes[0], inodes[1]) |
462 |
|
463 |
|
464 |
def RunExclusiveStorageTests(): |
465 |
"""Test exclusive storage."""
|
466 |
if not qa_config.TestEnabled("cluster-exclusive-storage"): |
467 |
return
|
468 |
|
469 |
node = qa_config.AcquireNode() |
470 |
try:
|
471 |
old_es = qa_cluster.TestSetExclStorCluster(False)
|
472 |
qa_node.TestExclStorSingleNode(node) |
473 |
|
474 |
qa_cluster.TestSetExclStorCluster(True)
|
475 |
qa_cluster.TestExclStorSharedPv(node) |
476 |
|
477 |
if qa_config.TestEnabled("instance-add-plain-disk"): |
478 |
# Make sure that the cluster doesn't have any pre-existing problem
|
479 |
qa_cluster.AssertClusterVerify() |
480 |
|
481 |
# Create and allocate instances
|
482 |
instance1 = qa_instance.TestInstanceAddWithPlainDisk([node]) |
483 |
try:
|
484 |
instance2 = qa_instance.TestInstanceAddWithPlainDisk([node]) |
485 |
try:
|
486 |
# cluster-verify checks that disks are allocated correctly
|
487 |
qa_cluster.AssertClusterVerify() |
488 |
|
489 |
# Remove instances
|
490 |
qa_instance.TestInstanceRemove(instance2) |
491 |
qa_instance.TestInstanceRemove(instance1) |
492 |
finally:
|
493 |
instance2.Release() |
494 |
finally:
|
495 |
instance1.Release() |
496 |
|
497 |
if qa_config.TestEnabled("instance-add-drbd-disk"): |
498 |
snode = qa_config.AcquireNode() |
499 |
try:
|
500 |
qa_cluster.TestSetExclStorCluster(False)
|
501 |
instance = qa_instance.TestInstanceAddWithDrbdDisk([node, snode]) |
502 |
try:
|
503 |
qa_cluster.TestSetExclStorCluster(True)
|
504 |
exp_err = [constants.CV_EINSTANCEUNSUITABLENODE] |
505 |
qa_cluster.AssertClusterVerify(fail=True, errors=exp_err)
|
506 |
qa_instance.TestInstanceRemove(instance) |
507 |
finally:
|
508 |
instance.Release() |
509 |
finally:
|
510 |
snode.Release() |
511 |
qa_cluster.TestSetExclStorCluster(old_es) |
512 |
finally:
|
513 |
node.Release() |
514 |
|
515 |
|
516 |
def _BuildSpecDict(par, mn, st, mx): |
517 |
return {par: {"min": mn, "std": st, "max": mx}} |
518 |
|
519 |
|
520 |
def TestIPolicyPlainInstance(): |
521 |
"""Test instance policy interaction with instances"""
|
522 |
params = ["mem-size", "cpu-count", "disk-count", "disk-size", "nic-count"] |
523 |
if not qa_config.IsTemplateSupported(constants.DT_PLAIN): |
524 |
print "Template %s not supported" % constants.DT_PLAIN |
525 |
return
|
526 |
|
527 |
# This test assumes that the group policy is empty
|
528 |
(_, old_specs) = qa_cluster.TestClusterSetISpecs({}) |
529 |
node = qa_config.AcquireNode() |
530 |
try:
|
531 |
# Log of policy changes, list of tuples: (change, policy_violated)
|
532 |
history = [] |
533 |
instance = qa_instance.TestInstanceAddWithPlainDisk([node]) |
534 |
try:
|
535 |
policyerror = [constants.CV_EINSTANCEPOLICY] |
536 |
for par in params: |
537 |
qa_cluster.AssertClusterVerify() |
538 |
(iminval, imaxval) = qa_instance.GetInstanceSpec(instance.name, par) |
539 |
# Some specs must be multiple of 4
|
540 |
new_spec = _BuildSpecDict(par, imaxval + 4, imaxval + 4, imaxval + 4) |
541 |
history.append((new_spec, True))
|
542 |
qa_cluster.TestClusterSetISpecs(new_spec) |
543 |
qa_cluster.AssertClusterVerify(warnings=policyerror) |
544 |
if iminval > 0: |
545 |
# Some specs must be multiple of 4
|
546 |
if iminval >= 4: |
547 |
upper = iminval - 4
|
548 |
else:
|
549 |
upper = iminval - 1
|
550 |
new_spec = _BuildSpecDict(par, 0, upper, upper)
|
551 |
history.append((new_spec, True))
|
552 |
qa_cluster.TestClusterSetISpecs(new_spec) |
553 |
qa_cluster.AssertClusterVerify(warnings=policyerror) |
554 |
qa_cluster.TestClusterSetISpecs(old_specs) |
555 |
history.append((old_specs, False))
|
556 |
qa_instance.TestInstanceRemove(instance) |
557 |
finally:
|
558 |
instance.Release() |
559 |
|
560 |
# Now we replay the same policy changes, and we expect that the instance
|
561 |
# cannot be created for the cases where we had a policy violation above
|
562 |
for (change, failed) in history: |
563 |
qa_cluster.TestClusterSetISpecs(change) |
564 |
if failed:
|
565 |
qa_instance.TestInstanceAddWithPlainDisk([node], fail=True)
|
566 |
# Instance creation with no policy violation has been tested already
|
567 |
finally:
|
568 |
node.Release() |
569 |
|
570 |
|
571 |
def RunInstanceTests(): |
572 |
"""Create and exercise instances."""
|
573 |
instance_tests = [ |
574 |
("instance-add-plain-disk", constants.DT_PLAIN,
|
575 |
qa_instance.TestInstanceAddWithPlainDisk, 1),
|
576 |
("instance-add-drbd-disk", constants.DT_DRBD8,
|
577 |
qa_instance.TestInstanceAddWithDrbdDisk, 2),
|
578 |
("instance-add-diskless", constants.DT_DISKLESS,
|
579 |
qa_instance.TestInstanceAddDiskless, 1),
|
580 |
("instance-add-file", constants.DT_FILE,
|
581 |
qa_instance.TestInstanceAddFile, 1),
|
582 |
] |
583 |
|
584 |
for (test_name, templ, create_fun, num_nodes) in instance_tests: |
585 |
if (qa_config.TestEnabled(test_name) and |
586 |
qa_config.IsTemplateSupported(templ)): |
587 |
inodes = qa_config.AcquireManyNodes(num_nodes) |
588 |
try:
|
589 |
instance = RunTest(create_fun, inodes) |
590 |
try:
|
591 |
RunTestIf("cluster-epo", qa_cluster.TestClusterEpo)
|
592 |
RunDaemonTests(instance) |
593 |
for node in inodes: |
594 |
RunTestIf("haskell-confd", qa_node.TestNodeListDrbd, node)
|
595 |
if len(inodes) > 1: |
596 |
RunTestIf("group-rwops", qa_group.TestAssignNodesIncludingSplit,
|
597 |
constants.INITIAL_NODE_GROUP_NAME, |
598 |
inodes[0].primary, inodes[1].primary) |
599 |
if qa_config.TestEnabled("instance-convert-disk"): |
600 |
RunTest(qa_instance.TestInstanceShutdown, instance) |
601 |
RunTest(qa_instance.TestInstanceConvertDiskToPlain, |
602 |
instance, inodes) |
603 |
RunTest(qa_instance.TestInstanceStartup, instance) |
604 |
RunCommonInstanceTests(instance) |
605 |
if qa_config.TestEnabled("instance-modify-primary"): |
606 |
othernode = qa_config.AcquireNode() |
607 |
RunTest(qa_instance.TestInstanceModifyPrimaryAndBack, |
608 |
instance, inodes[0], othernode)
|
609 |
othernode.Release() |
610 |
RunGroupListTests() |
611 |
RunExportImportTests(instance, inodes) |
612 |
RunHardwareFailureTests(instance, inodes) |
613 |
RunRepairDiskSizes() |
614 |
RunTest(qa_instance.TestInstanceRemove, instance) |
615 |
finally:
|
616 |
instance.Release() |
617 |
del instance
|
618 |
finally:
|
619 |
qa_config.ReleaseManyNodes(inodes) |
620 |
qa_cluster.AssertClusterVerify() |
621 |
|
622 |
|
623 |
def RunQa(): |
624 |
"""Main QA body.
|
625 |
|
626 |
"""
|
627 |
rapi_user = "ganeti-qa"
|
628 |
rapi_secret = utils.GenerateSecret() |
629 |
|
630 |
RunEnvTests() |
631 |
SetupCluster(rapi_user, rapi_secret) |
632 |
|
633 |
# Load RAPI certificate
|
634 |
qa_rapi.Setup(rapi_user, rapi_secret) |
635 |
|
636 |
RunClusterTests() |
637 |
RunOsTests() |
638 |
|
639 |
RunTestIf("tags", qa_tags.TestClusterTags)
|
640 |
|
641 |
RunCommonNodeTests() |
642 |
RunGroupListTests() |
643 |
RunGroupRwTests() |
644 |
RunNetworkTests() |
645 |
|
646 |
# The master shouldn't be readded or put offline; "delay" needs a non-master
|
647 |
# node to test
|
648 |
pnode = qa_config.AcquireNode(exclude=qa_config.GetMasterNode()) |
649 |
try:
|
650 |
RunTestIf("node-readd", qa_node.TestNodeReadd, pnode)
|
651 |
RunTestIf("node-modify", qa_node.TestNodeModify, pnode)
|
652 |
RunTestIf("delay", qa_cluster.TestDelay, pnode)
|
653 |
finally:
|
654 |
pnode.Release() |
655 |
|
656 |
# Make sure the cluster is clean before running instance tests
|
657 |
qa_cluster.AssertClusterVerify() |
658 |
|
659 |
pnode = qa_config.AcquireNode() |
660 |
try:
|
661 |
RunTestIf("tags", qa_tags.TestNodeTags, pnode)
|
662 |
|
663 |
if qa_rapi.Enabled():
|
664 |
RunTest(qa_rapi.TestNode, pnode) |
665 |
|
666 |
if qa_config.TestEnabled("instance-add-plain-disk"): |
667 |
for use_client in [True, False]: |
668 |
rapi_instance = RunTest(qa_rapi.TestRapiInstanceAdd, pnode, |
669 |
use_client) |
670 |
try:
|
671 |
if qa_config.TestEnabled("instance-plain-rapi-common-tests"): |
672 |
RunCommonInstanceTests(rapi_instance) |
673 |
RunTest(qa_rapi.TestRapiInstanceRemove, rapi_instance, use_client) |
674 |
finally:
|
675 |
rapi_instance.Release() |
676 |
del rapi_instance
|
677 |
|
678 |
finally:
|
679 |
pnode.Release() |
680 |
|
681 |
config_list = [ |
682 |
("default-instance-tests", lambda: None, lambda _: None), |
683 |
("exclusive-storage-instance-tests",
|
684 |
lambda: qa_cluster.TestSetExclStorCluster(True), |
685 |
qa_cluster.TestSetExclStorCluster), |
686 |
] |
687 |
for (conf_name, setup_conf_f, restore_conf_f) in config_list: |
688 |
if qa_config.TestEnabled(conf_name):
|
689 |
oldconf = setup_conf_f() |
690 |
RunInstanceTests() |
691 |
restore_conf_f(oldconf) |
692 |
|
693 |
pnode = qa_config.AcquireNode() |
694 |
try:
|
695 |
if qa_config.TestEnabled(["instance-add-plain-disk", "instance-export"]): |
696 |
for shutdown in [False, True]: |
697 |
instance = RunTest(qa_instance.TestInstanceAddWithPlainDisk, [pnode]) |
698 |
try:
|
699 |
expnode = qa_config.AcquireNode(exclude=pnode) |
700 |
try:
|
701 |
if shutdown:
|
702 |
# Stop instance before exporting and removing it
|
703 |
RunTest(qa_instance.TestInstanceShutdown, instance) |
704 |
RunTest(qa_instance.TestInstanceExportWithRemove, instance, expnode) |
705 |
RunTest(qa_instance.TestBackupList, expnode) |
706 |
finally:
|
707 |
expnode.Release() |
708 |
finally:
|
709 |
instance.Release() |
710 |
del expnode
|
711 |
del instance
|
712 |
qa_cluster.AssertClusterVerify() |
713 |
|
714 |
finally:
|
715 |
pnode.Release() |
716 |
|
717 |
RunExclusiveStorageTests() |
718 |
RunTestIf(["cluster-instance-policy", "instance-add-plain-disk"], |
719 |
TestIPolicyPlainInstance) |
720 |
|
721 |
# Test removing instance with offline drbd secondary
|
722 |
if qa_config.TestEnabled(["instance-remove-drbd-offline", |
723 |
"instance-add-drbd-disk"]):
|
724 |
# Make sure the master is not put offline
|
725 |
snode = qa_config.AcquireNode(exclude=qa_config.GetMasterNode()) |
726 |
try:
|
727 |
pnode = qa_config.AcquireNode(exclude=snode) |
728 |
try:
|
729 |
instance = qa_instance.TestInstanceAddWithDrbdDisk([pnode, snode]) |
730 |
set_offline = lambda node: qa_node.MakeNodeOffline(node, "yes") |
731 |
set_online = lambda node: qa_node.MakeNodeOffline(node, "no") |
732 |
RunTest(qa_instance.TestRemoveInstanceOfflineNode, instance, snode, |
733 |
set_offline, set_online) |
734 |
finally:
|
735 |
pnode.Release() |
736 |
finally:
|
737 |
snode.Release() |
738 |
qa_cluster.AssertClusterVerify() |
739 |
|
740 |
RunTestIf("create-cluster", qa_node.TestNodeRemoveAll)
|
741 |
|
742 |
RunTestIf("cluster-destroy", qa_cluster.TestClusterDestroy)
|
743 |
|
744 |
|
745 |
@UsesRapiClient
|
746 |
def main(): |
747 |
"""Main program.
|
748 |
|
749 |
"""
|
750 |
parser = optparse.OptionParser(usage="%prog [options] <config-file>")
|
751 |
parser.add_option("--yes-do-it", dest="yes_do_it", |
752 |
action="store_true",
|
753 |
help="Really execute the tests")
|
754 |
(opts, args) = parser.parse_args() |
755 |
|
756 |
if len(args) == 1: |
757 |
(config_file, ) = args |
758 |
else:
|
759 |
parser.error("Wrong number of arguments.")
|
760 |
|
761 |
if not opts.yes_do_it: |
762 |
print ("Executing this script irreversibly destroys any Ganeti\n" |
763 |
"configuration on all nodes involved. If you really want\n"
|
764 |
"to start testing, supply the --yes-do-it option.")
|
765 |
sys.exit(1)
|
766 |
|
767 |
qa_config.Load(config_file) |
768 |
|
769 |
primary = qa_config.GetMasterNode().primary |
770 |
qa_utils.StartMultiplexer(primary) |
771 |
print ("SSH command for primary node: %s" % |
772 |
utils.ShellQuoteArgs(qa_utils.GetSSHCommand(primary, "")))
|
773 |
print ("SSH command for other nodes: %s" % |
774 |
utils.ShellQuoteArgs(qa_utils.GetSSHCommand("NODE", ""))) |
775 |
try:
|
776 |
RunQa() |
777 |
finally:
|
778 |
qa_utils.CloseMultiplexers() |
779 |
|
780 |
if __name__ == "__main__": |
781 |
main() |