Statistics
| Branch: | Tag: | Revision:

root / qa / ganeti-qa.py @ c99200a3

History | View | Annotate | Download (20.9 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_node
41
import qa_os
42
import qa_job
43
import qa_rapi
44
import qa_tags
45
import qa_utils
46

    
47
from ganeti import utils
48
from ganeti import rapi # pylint: disable=W0611
49
from ganeti import constants
50

    
51
import ganeti.rapi.client # pylint: disable=W0611
52
from ganeti.rapi.client import UsesRapiClient
53

    
54

    
55
def _FormatHeader(line, end=72):
56
  """Fill a line up to the end column.
57

58
  """
59
  line = "---- " + line + " "
60
  line += "-" * (end - len(line))
61
  line = line.rstrip()
62
  return line
63

    
64

    
65
def _DescriptionOf(fn):
66
  """Computes the description of an item.
67

68
  """
69
  if fn.__doc__:
70
    desc = fn.__doc__.splitlines()[0].strip()
71
  else:
72
    desc = "%r" % fn
73

    
74
  return desc.rstrip(".")
75

    
76

    
77
def RunTest(fn, *args, **kwargs):
78
  """Runs a test after printing a header.
79

80
  """
81

    
82
  tstart = datetime.datetime.now()
83

    
84
  desc = _DescriptionOf(fn)
85

    
86
  print
87
  print _FormatHeader("%s start %s" % (tstart, desc))
88

    
89
  try:
90
    retval = fn(*args, **kwargs)
91
    return retval
92
  finally:
93
    tstop = datetime.datetime.now()
94
    tdelta = tstop - tstart
95
    print _FormatHeader("%s time=%s %s" % (tstop, tdelta, desc))
96

    
97

    
98
def RunTestIf(testnames, fn, *args, **kwargs):
99
  """Runs a test conditionally.
100

101
  @param testnames: either a single test name in the configuration
102
      file, or a list of testnames (which will be AND-ed together)
103

104
  """
105
  if qa_config.TestEnabled(testnames):
106
    RunTest(fn, *args, **kwargs)
107
  else:
108
    tstart = datetime.datetime.now()
109
    desc = _DescriptionOf(fn)
110
    print _FormatHeader("%s skipping %s, test(s) %s disabled" %
111
                        (tstart, desc, testnames))
112

    
113

    
114
def RunEnvTests():
115
  """Run several environment tests.
116

117
  """
118
  RunTestIf("env", qa_env.TestSshConnection)
119
  RunTestIf("env", qa_env.TestIcmpPing)
120
  RunTestIf("env", qa_env.TestGanetiCommands)
121

    
122

    
123
def SetupCluster(rapi_user, rapi_secret):
124
  """Initializes the cluster.
125

126
  @param rapi_user: Login user for RAPI
127
  @param rapi_secret: Login secret for RAPI
128

129
  """
130
  RunTestIf("create-cluster", qa_cluster.TestClusterInit,
131
            rapi_user, rapi_secret)
132
  if not qa_config.TestEnabled("create-cluster"):
133
    # If the cluster is already in place, we assume that exclusive-storage is
134
    # already set according to the configuration
135
    qa_config.SetExclusiveStorage(qa_config.get("exclusive-storage", False))
136

    
137
  # Test on empty cluster
138
  RunTestIf("node-list", qa_node.TestNodeList)
139
  RunTestIf("instance-list", qa_instance.TestInstanceList)
140
  RunTestIf("job-list", qa_job.TestJobList)
141

    
142
  RunTestIf("create-cluster", qa_node.TestNodeAddAll)
143
  if not qa_config.TestEnabled("create-cluster"):
144
    # consider the nodes are already there
145
    qa_node.MarkNodeAddedAll()
146

    
147
  RunTestIf("test-jobqueue", qa_cluster.TestJobqueue)
148

    
149
  # enable the watcher (unconditionally)
150
  RunTest(qa_daemon.TestResumeWatcher)
151

    
152
  RunTestIf("node-list", qa_node.TestNodeList)
153

    
154
  # Test listing fields
155
  RunTestIf("node-list", qa_node.TestNodeListFields)
156
  RunTestIf("instance-list", qa_instance.TestInstanceListFields)
157
  RunTestIf("job-list", qa_job.TestJobListFields)
158
  RunTestIf("instance-export", qa_instance.TestBackupListFields)
159

    
160
  RunTestIf("node-info", qa_node.TestNodeInfo)
161

    
162

    
163
def RunClusterTests():
164
  """Runs tests related to gnt-cluster.
165

166
  """
167
  for test, fn in [
168
    ("create-cluster", qa_cluster.TestClusterInitDisk),
169
    ("cluster-renew-crypto", qa_cluster.TestClusterRenewCrypto),
170
    ("cluster-verify", qa_cluster.TestClusterVerify),
171
    ("cluster-reserved-lvs", qa_cluster.TestClusterReservedLvs),
172
    # TODO: add more cluster modify tests
173
    ("cluster-modify", qa_cluster.TestClusterModifyEmpty),
174
    ("cluster-modify", qa_cluster.TestClusterModifyBe),
175
    ("cluster-modify", qa_cluster.TestClusterModifyDisk),
176
    ("cluster-rename", qa_cluster.TestClusterRename),
177
    ("cluster-info", qa_cluster.TestClusterVersion),
178
    ("cluster-info", qa_cluster.TestClusterInfo),
179
    ("cluster-info", qa_cluster.TestClusterGetmaster),
180
    ("cluster-redist-conf", qa_cluster.TestClusterRedistConf),
181
    ("cluster-copyfile", qa_cluster.TestClusterCopyfile),
182
    ("cluster-command", qa_cluster.TestClusterCommand),
183
    ("cluster-burnin", qa_cluster.TestClusterBurnin),
184
    ("cluster-master-failover", qa_cluster.TestClusterMasterFailover),
185
    ("cluster-master-failover",
186
     qa_cluster.TestClusterMasterFailoverWithDrainedQueue),
187
    ("cluster-oob", qa_cluster.TestClusterOob),
188
    ("rapi", qa_rapi.TestVersion),
189
    ("rapi", qa_rapi.TestEmptyCluster),
190
    ("rapi", qa_rapi.TestRapiQuery),
191
    ]:
192
    RunTestIf(test, fn)
193

    
194

    
195
def RunRepairDiskSizes():
196
  """Run the repair disk-sizes test.
197

198
  """
199
  RunTestIf("cluster-repair-disk-sizes", qa_cluster.TestClusterRepairDiskSizes)
200

    
201

    
202
def RunOsTests():
203
  """Runs all tests related to gnt-os.
204

205
  """
206
  if qa_config.TestEnabled("rapi"):
207
    rapi_getos = qa_rapi.GetOperatingSystems
208
  else:
209
    rapi_getos = None
210

    
211
  for fn in [
212
    qa_os.TestOsList,
213
    qa_os.TestOsDiagnose,
214
    ]:
215
    RunTestIf("os", fn)
216

    
217
  for fn in [
218
    qa_os.TestOsValid,
219
    qa_os.TestOsInvalid,
220
    qa_os.TestOsPartiallyValid,
221
    ]:
222
    RunTestIf("os", fn, rapi_getos)
223

    
224
  for fn in [
225
    qa_os.TestOsModifyValid,
226
    qa_os.TestOsModifyInvalid,
227
    qa_os.TestOsStatesNonExisting,
228
    ]:
229
    RunTestIf("os", fn)
230

    
231

    
232
def RunCommonInstanceTests(instance):
233
  """Runs a few tests that are common to all disk types.
234

235
  """
236
  RunTestIf("instance-shutdown", qa_instance.TestInstanceShutdown, instance)
237
  RunTestIf(["instance-shutdown", "instance-console", "rapi"],
238
            qa_rapi.TestRapiStoppedInstanceConsole, instance)
239
  RunTestIf(["instance-shutdown", "instance-modify"],
240
            qa_instance.TestInstanceStoppedModify, instance)
241
  RunTestIf("instance-shutdown", qa_instance.TestInstanceStartup, instance)
242

    
243
  # Test shutdown/start via RAPI
244
  RunTestIf(["instance-shutdown", "rapi"],
245
            qa_rapi.TestRapiInstanceShutdown, instance)
246
  RunTestIf(["instance-shutdown", "rapi"],
247
            qa_rapi.TestRapiInstanceStartup, instance)
248

    
249
  RunTestIf("instance-list", qa_instance.TestInstanceList)
250

    
251
  RunTestIf("instance-info", qa_instance.TestInstanceInfo, instance)
252

    
253
  RunTestIf("instance-modify", qa_instance.TestInstanceModify, instance)
254
  RunTestIf(["instance-modify", "rapi"],
255
            qa_rapi.TestRapiInstanceModify, instance)
256

    
257
  RunTestIf("instance-console", qa_instance.TestInstanceConsole, instance)
258
  RunTestIf(["instance-console", "rapi"],
259
            qa_rapi.TestRapiInstanceConsole, instance)
260

    
261
  DOWN_TESTS = qa_config.Either([
262
    "instance-reinstall",
263
    "instance-rename",
264
    "instance-grow-disk",
265
    ])
266

    
267
  # shutdown instance for any 'down' tests
268
  RunTestIf(DOWN_TESTS, qa_instance.TestInstanceShutdown, instance)
269

    
270
  # now run the 'down' state tests
271
  RunTestIf("instance-reinstall", qa_instance.TestInstanceReinstall, instance)
272
  RunTestIf(["instance-reinstall", "rapi"],
273
            qa_rapi.TestRapiInstanceReinstall, instance)
274

    
275
  if qa_config.TestEnabled("instance-rename"):
276
    tgt_instance = qa_config.AcquireInstance()
277
    try:
278
      rename_source = instance["name"]
279
      rename_target = tgt_instance["name"]
280
      # perform instance rename to the same name
281
      RunTest(qa_instance.TestInstanceRenameAndBack,
282
              rename_source, rename_source)
283
      RunTestIf("rapi", qa_rapi.TestRapiInstanceRenameAndBack,
284
                rename_source, rename_source)
285
      if rename_target is not None:
286
        # perform instance rename to a different name, if we have one configured
287
        RunTest(qa_instance.TestInstanceRenameAndBack,
288
                rename_source, rename_target)
289
        RunTestIf("rapi", qa_rapi.TestRapiInstanceRenameAndBack,
290
                  rename_source, rename_target)
291
    finally:
292
      qa_config.ReleaseInstance(tgt_instance)
293

    
294
  RunTestIf(["instance-grow-disk"], qa_instance.TestInstanceGrowDisk, instance)
295

    
296
  # and now start the instance again
297
  RunTestIf(DOWN_TESTS, qa_instance.TestInstanceStartup, instance)
298

    
299
  RunTestIf("instance-reboot", qa_instance.TestInstanceReboot, instance)
300

    
301
  RunTestIf("tags", qa_tags.TestInstanceTags, instance)
302

    
303
  RunTestIf("cluster-verify", qa_cluster.TestClusterVerify)
304

    
305
  RunTestIf("rapi", qa_rapi.TestInstance, instance)
306

    
307
  # Lists instances, too
308
  RunTestIf("node-list", qa_node.TestNodeList)
309

    
310
  # Some jobs have been run, let's test listing them
311
  RunTestIf("job-list", qa_job.TestJobList)
312

    
313

    
314
def RunCommonNodeTests():
315
  """Run a few common node tests.
316

317
  """
318
  RunTestIf("node-volumes", qa_node.TestNodeVolumes)
319
  RunTestIf("node-storage", qa_node.TestNodeStorage)
320
  RunTestIf("node-oob", qa_node.TestOutOfBand)
321

    
322

    
323
def RunGroupListTests():
324
  """Run tests for listing node groups.
325

326
  """
327
  RunTestIf("group-list", qa_group.TestGroupList)
328
  RunTestIf("group-list", qa_group.TestGroupListFields)
329

    
330

    
331
def RunGroupRwTests():
332
  """Run tests for adding/removing/renaming groups.
333

334
  """
335
  RunTestIf("group-rwops", qa_group.TestGroupAddRemoveRename)
336
  RunTestIf("group-rwops", qa_group.TestGroupAddWithOptions)
337
  RunTestIf("group-rwops", qa_group.TestGroupModify)
338
  RunTestIf(["group-rwops", "rapi"], qa_rapi.TestRapiNodeGroups)
339
  RunTestIf(["group-rwops", "tags"], qa_tags.TestGroupTags,
340
            qa_group.GetDefaultGroup())
341

    
342

    
343
def RunExportImportTests(instance, inodes):
344
  """Tries to export and import the instance.
345

346
  @type inodes: list of nodes
347
  @param inodes: current nodes of the instance
348

349
  """
350
  if qa_config.TestEnabled("instance-export"):
351
    RunTest(qa_instance.TestInstanceExportNoTarget, instance)
352

    
353
    pnode = inodes[0]
354
    expnode = qa_config.AcquireNode(exclude=pnode)
355
    try:
356
      name = RunTest(qa_instance.TestInstanceExport, instance, expnode)
357

    
358
      RunTest(qa_instance.TestBackupList, expnode)
359

    
360
      if qa_config.TestEnabled("instance-import"):
361
        newinst = qa_config.AcquireInstance()
362
        try:
363
          RunTest(qa_instance.TestInstanceImport, newinst, pnode,
364
                  expnode, name)
365
          # Check if starting the instance works
366
          RunTest(qa_instance.TestInstanceStartup, newinst)
367
          RunTest(qa_instance.TestInstanceRemove, newinst)
368
        finally:
369
          qa_config.ReleaseInstance(newinst)
370
    finally:
371
      qa_config.ReleaseNode(expnode)
372

    
373
  if qa_config.TestEnabled(["rapi", "inter-cluster-instance-move"]):
374
    newinst = qa_config.AcquireInstance()
375
    try:
376
      tnode = qa_config.AcquireNode(exclude=inodes)
377
      try:
378
        RunTest(qa_rapi.TestInterClusterInstanceMove, instance, newinst,
379
                inodes, tnode)
380
      finally:
381
        qa_config.ReleaseNode(tnode)
382
    finally:
383
      qa_config.ReleaseInstance(newinst)
384

    
385

    
386
def RunDaemonTests(instance):
387
  """Test the ganeti-watcher script.
388

389
  """
390
  RunTest(qa_daemon.TestPauseWatcher)
391

    
392
  RunTestIf("instance-automatic-restart",
393
            qa_daemon.TestInstanceAutomaticRestart, instance)
394
  RunTestIf("instance-consecutive-failures",
395
            qa_daemon.TestInstanceConsecutiveFailures, instance)
396

    
397
  RunTest(qa_daemon.TestResumeWatcher)
398

    
399

    
400
def RunSingleHomedHardwareFailureTests(instance, pnode):
401
  """Test hardware failure recovery for single-homed instances.
402

403
  """
404
  if qa_config.TestEnabled("instance-recreate-disks"):
405
    othernode = qa_config.AcquireNode(exclude=[pnode])
406
    try:
407
      RunTest(qa_instance.TestRecreateDisks,
408
              instance, pnode, None, [othernode])
409
    finally:
410
      qa_config.ReleaseNode(othernode)
411

    
412

    
413
def RunHardwareFailureTests(instance, inodes):
414
  """Test cluster internal hardware failure recovery.
415

416
  """
417
  RunTestIf("instance-failover", qa_instance.TestInstanceFailover, instance)
418
  RunTestIf(["instance-failover", "rapi"],
419
            qa_rapi.TestRapiInstanceFailover, instance)
420

    
421
  RunTestIf("instance-migrate", qa_instance.TestInstanceMigrate, instance)
422
  RunTestIf(["instance-migrate", "rapi"],
423
            qa_rapi.TestRapiInstanceMigrate, instance)
424

    
425
  if qa_config.TestEnabled("instance-replace-disks"):
426
    # We just need alternative secondary nodes, hence "- 1"
427
    othernodes = qa_config.AcquireManyNodes(len(inodes) - 1, exclude=inodes)
428
    try:
429
      RunTestIf("rapi", qa_rapi.TestRapiInstanceReplaceDisks, instance)
430
      RunTest(qa_instance.TestReplaceDisks,
431
              instance, inodes, othernodes)
432
    finally:
433
      qa_config.ReleaseManyNodes(othernodes)
434
    del othernodes
435

    
436
  if qa_config.TestEnabled("instance-recreate-disks"):
437
    try:
438
      acquirednodes = qa_config.AcquireManyNodes(len(inodes), exclude=inodes)
439
      othernodes = acquirednodes
440
    except qa_error.OutOfNodesError:
441
      if len(inodes) > 1:
442
        # If the cluster is not big enough, let's reuse some of the nodes, but
443
        # with different roles. In this way, we can test a DRBD instance even on
444
        # a 3-node cluster.
445
        acquirednodes = [qa_config.AcquireNode(exclude=inodes)]
446
        othernodes = acquirednodes + inodes[:-1]
447
      else:
448
        raise
449
    try:
450
      RunTest(qa_instance.TestRecreateDisks,
451
              instance, inodes, othernodes)
452
    finally:
453
      qa_config.ReleaseManyNodes(acquirednodes)
454

    
455
  if len(inodes) >= 2:
456
    RunTestIf("node-evacuate", qa_node.TestNodeEvacuate, inodes[0], inodes[1])
457
    RunTestIf("node-failover", qa_node.TestNodeFailover, inodes[0], inodes[1])
458

    
459

    
460
def RunExclusiveStorageTests():
461
  """Test exclusive storage."""
462
  if not qa_config.TestEnabled("cluster-exclusive-storage"):
463
    return
464

    
465
  node = qa_config.AcquireNode()
466
  try:
467
    old_es = qa_cluster.TestSetExclStorCluster(False)
468
    qa_cluster.TestExclStorSingleNode(node)
469

    
470
    qa_cluster.TestSetExclStorCluster(True)
471
    qa_cluster.TestExclStorSharedPv(node)
472

    
473
    if qa_config.TestEnabled("instance-add-plain-disk"):
474
      # Make sure that the cluster doesn't have any pre-existing problem
475
      qa_cluster.AssertClusterVerify()
476
      instance1 = qa_instance.TestInstanceAddWithPlainDisk([node])
477
      instance2 = qa_instance.TestInstanceAddWithPlainDisk([node])
478
      # cluster-verify checks that disks are allocated correctly
479
      qa_cluster.AssertClusterVerify()
480
      qa_instance.TestInstanceRemove(instance1)
481
      qa_instance.TestInstanceRemove(instance2)
482
    if qa_config.TestEnabled("instance-add-drbd-disk"):
483
      snode = qa_config.AcquireNode()
484
      try:
485
        qa_cluster.TestSetExclStorCluster(False)
486
        instance = qa_instance.TestInstanceAddWithDrbdDisk([node, snode])
487
        qa_cluster.TestSetExclStorCluster(True)
488
        exp_err = [constants.CV_EINSTANCEUNSUITABLENODE]
489
        qa_cluster.AssertClusterVerify(fail=True, errors=exp_err)
490
        qa_instance.TestInstanceRemove(instance)
491
      finally:
492
        qa_config.ReleaseNode(snode)
493
    qa_cluster.TestSetExclStorCluster(old_es)
494
  finally:
495
    qa_config.ReleaseNode(node)
496

    
497

    
498
def RunQa():
499
  """Main QA body.
500

501
  """
502
  rapi_user = "ganeti-qa"
503
  rapi_secret = utils.GenerateSecret()
504

    
505
  RunEnvTests()
506
  SetupCluster(rapi_user, rapi_secret)
507

    
508
  # Load RAPI certificate
509
  qa_rapi.Setup(rapi_user, rapi_secret)
510

    
511
  RunClusterTests()
512
  RunOsTests()
513

    
514
  RunTestIf("tags", qa_tags.TestClusterTags)
515

    
516
  RunCommonNodeTests()
517
  RunGroupListTests()
518
  RunGroupRwTests()
519

    
520
  # The master shouldn't be readded or put offline; "delay" needs a non-master
521
  # node to test
522
  pnode = qa_config.AcquireNode(exclude=qa_config.GetMasterNode())
523
  try:
524
    RunTestIf("node-readd", qa_node.TestNodeReadd, pnode)
525
    RunTestIf("node-modify", qa_node.TestNodeModify, pnode)
526
    RunTestIf("delay", qa_cluster.TestDelay, pnode)
527
  finally:
528
    qa_config.ReleaseNode(pnode)
529

    
530
  pnode = qa_config.AcquireNode()
531
  try:
532
    RunTestIf("tags", qa_tags.TestNodeTags, pnode)
533

    
534
    if qa_rapi.Enabled():
535
      RunTest(qa_rapi.TestNode, pnode)
536

    
537
      if qa_config.TestEnabled("instance-add-plain-disk"):
538
        for use_client in [True, False]:
539
          rapi_instance = RunTest(qa_rapi.TestRapiInstanceAdd, pnode,
540
                                  use_client)
541
          if qa_config.TestEnabled("instance-plain-rapi-common-tests"):
542
            RunCommonInstanceTests(rapi_instance)
543
          RunTest(qa_rapi.TestRapiInstanceRemove, rapi_instance, use_client)
544
          del rapi_instance
545

    
546
    if qa_config.TestEnabled("instance-add-plain-disk"):
547
      instance = RunTest(qa_instance.TestInstanceAddWithPlainDisk, [pnode])
548
      RunCommonInstanceTests(instance)
549
      RunGroupListTests()
550
      RunTestIf("cluster-epo", qa_cluster.TestClusterEpo)
551
      RunExportImportTests(instance, [pnode])
552
      RunDaemonTests(instance)
553
      RunRepairDiskSizes()
554
      RunSingleHomedHardwareFailureTests(instance, pnode)
555
      RunTest(qa_instance.TestInstanceRemove, instance)
556
      del instance
557

    
558
    multinode_tests = [
559
      ("instance-add-drbd-disk",
560
       qa_instance.TestInstanceAddWithDrbdDisk),
561
    ]
562

    
563
    for name, func in multinode_tests:
564
      if qa_config.TestEnabled(name):
565
        snode = qa_config.AcquireNode(exclude=pnode)
566
        try:
567
          instance = RunTest(func, [pnode, snode])
568
          RunTestIf("haskell-confd", qa_node.TestNodeListDrbd, pnode)
569
          RunTestIf("haskell-confd", qa_node.TestNodeListDrbd, snode)
570
          RunCommonInstanceTests(instance)
571
          RunGroupListTests()
572
          RunTestIf("group-rwops", qa_group.TestAssignNodesIncludingSplit,
573
                    constants.INITIAL_NODE_GROUP_NAME,
574
                    pnode["primary"], snode["primary"])
575
          if qa_config.TestEnabled("instance-convert-disk"):
576
            RunTest(qa_instance.TestInstanceShutdown, instance)
577
            RunTest(qa_instance.TestInstanceConvertDiskToPlain, instance,
578
                    [pnode, snode])
579
            RunTest(qa_instance.TestInstanceStartup, instance)
580
          RunExportImportTests(instance, [pnode, snode])
581
          RunHardwareFailureTests(instance, [pnode, snode])
582
          RunRepairDiskSizes()
583
          RunTest(qa_instance.TestInstanceRemove, instance)
584
          del instance
585
        finally:
586
          qa_config.ReleaseNode(snode)
587

    
588
  finally:
589
    qa_config.ReleaseNode(pnode)
590

    
591
  # Test removing instance with offline drbd secondary
592
  if qa_config.TestEnabled("instance-remove-drbd-offline"):
593
    # Make sure the master is not put offline
594
    snode = qa_config.AcquireNode(exclude=qa_config.GetMasterNode())
595
    try:
596
      pnode = qa_config.AcquireNode(exclude=snode)
597
      try:
598
        instance = qa_instance.TestInstanceAddWithDrbdDisk([pnode, snode])
599
        qa_node.MakeNodeOffline(snode, "yes")
600
        try:
601
          RunTest(qa_instance.TestInstanceRemove, instance)
602
        finally:
603
          qa_node.MakeNodeOffline(snode, "no")
604
      finally:
605
        qa_config.ReleaseNode(pnode)
606
    finally:
607
      qa_config.ReleaseNode(snode)
608

    
609
  pnode = qa_config.AcquireNode()
610
  try:
611
    if qa_config.TestEnabled(["instance-add-plain-disk", "instance-export"]):
612
      for shutdown in [False, True]:
613
        instance = RunTest(qa_instance.TestInstanceAddWithPlainDisk, [pnode])
614
        expnode = qa_config.AcquireNode(exclude=pnode)
615
        try:
616
          if shutdown:
617
            # Stop instance before exporting and removing it
618
            RunTest(qa_instance.TestInstanceShutdown, instance)
619
          RunTest(qa_instance.TestInstanceExportWithRemove, instance, expnode)
620
          RunTest(qa_instance.TestBackupList, expnode)
621
        finally:
622
          qa_config.ReleaseNode(expnode)
623
        del expnode
624
        del instance
625

    
626
  finally:
627
    qa_config.ReleaseNode(pnode)
628

    
629
  RunExclusiveStorageTests()
630

    
631
  RunTestIf("create-cluster", qa_node.TestNodeRemoveAll)
632

    
633
  RunTestIf("cluster-destroy", qa_cluster.TestClusterDestroy)
634

    
635

    
636
@UsesRapiClient
637
def main():
638
  """Main program.
639

640
  """
641
  parser = optparse.OptionParser(usage="%prog [options] <config-file>")
642
  parser.add_option("--yes-do-it", dest="yes_do_it",
643
                    action="store_true",
644
                    help="Really execute the tests")
645
  (qa_config.options, args) = parser.parse_args()
646

    
647
  if len(args) == 1:
648
    (config_file, ) = args
649
  else:
650
    parser.error("Wrong number of arguments.")
651

    
652
  if not qa_config.options.yes_do_it:
653
    print ("Executing this script irreversibly destroys any Ganeti\n"
654
           "configuration on all nodes involved. If you really want\n"
655
           "to start testing, supply the --yes-do-it option.")
656
    sys.exit(1)
657

    
658
  qa_config.Load(config_file)
659

    
660
  primary = qa_config.GetMasterNode()["primary"]
661
  qa_utils.StartMultiplexer(primary)
662
  print ("SSH command for primary node: %s" %
663
         utils.ShellQuoteArgs(qa_utils.GetSSHCommand(primary, "")))
664
  print ("SSH command for other nodes: %s" %
665
         utils.ShellQuoteArgs(qa_utils.GetSSHCommand("NODE", "")))
666
  try:
667
    RunQa()
668
  finally:
669
    qa_utils.CloseMultiplexers()
670

    
671
if __name__ == "__main__":
672
  main()