Statistics
| Branch: | Tag: | Revision:

root / qa / ganeti-qa.py @ bc696589

History | View | Annotate | Download (11.6 kB)

1
#!/usr/bin/python
2
#
3

    
4
# Copyright (C) 2007 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
import sys
27
import datetime
28
import optparse
29

    
30
import qa_cluster
31
import qa_config
32
import qa_daemon
33
import qa_env
34
import qa_instance
35
import qa_node
36
import qa_os
37
import qa_rapi
38
import qa_tags
39
import qa_utils
40

    
41
from ganeti import utils
42
from ganeti import rapi
43

    
44
import ganeti.rapi.client
45

    
46

    
47
def RunTest(fn, *args):
48
  """Runs a test after printing a header.
49

50
  """
51
  if fn.__doc__:
52
    desc = fn.__doc__.splitlines()[0].strip()
53
  else:
54
    desc = '%r' % fn
55

    
56
  now = str(datetime.datetime.now())
57

    
58
  print
59
  print '---', now, ('-' * (55 - len(now)))
60
  print desc
61
  print '-' * 60
62

    
63
  return fn(*args)
64

    
65

    
66
def RunEnvTests():
67
  """Run several environment tests.
68

69
  """
70
  if not qa_config.TestEnabled('env'):
71
    return
72

    
73
  RunTest(qa_env.TestSshConnection)
74
  RunTest(qa_env.TestIcmpPing)
75
  RunTest(qa_env.TestGanetiCommands)
76

    
77

    
78
def SetupCluster(rapi_user, rapi_secret):
79
  """Initializes the cluster.
80

81
  @param rapi_user: Login user for RAPI
82
  @param rapi_secret: Login secret for RAPI
83

84
  """
85
  if qa_config.TestEnabled('create-cluster'):
86
    RunTest(qa_cluster.TestClusterInit, rapi_user, rapi_secret)
87
    RunTest(qa_node.TestNodeAddAll)
88
  else:
89
    # consider the nodes are already there
90
    qa_node.MarkNodeAddedAll()
91
  if qa_config.TestEnabled('node-info'):
92
    RunTest(qa_node.TestNodeInfo)
93

    
94

    
95
def RunClusterTests():
96
  """Runs tests related to gnt-cluster.
97

98
  """
99
  if qa_config.TestEnabled("cluster-renew-crypto"):
100
    RunTest(qa_cluster.TestClusterRenewCrypto)
101

    
102
  if qa_config.TestEnabled('cluster-verify'):
103
    RunTest(qa_cluster.TestClusterVerify)
104

    
105
  if qa_config.TestEnabled('cluster-reserved-lvs'):
106
    RunTest(qa_cluster.TestClusterReservedLvs)
107

    
108
  if qa_config.TestEnabled('cluster-rename'):
109
    RunTest(qa_cluster.TestClusterRename)
110

    
111
  if qa_config.TestEnabled('cluster-info'):
112
    RunTest(qa_cluster.TestClusterVersion)
113
    RunTest(qa_cluster.TestClusterInfo)
114
    RunTest(qa_cluster.TestClusterGetmaster)
115

    
116
  if qa_config.TestEnabled('cluster-copyfile'):
117
    RunTest(qa_cluster.TestClusterCopyfile)
118

    
119
  if qa_config.TestEnabled('cluster-command'):
120
    RunTest(qa_cluster.TestClusterCommand)
121

    
122
  if qa_config.TestEnabled('cluster-burnin'):
123
    RunTest(qa_cluster.TestClusterBurnin)
124

    
125
  if qa_config.TestEnabled('cluster-master-failover'):
126
    RunTest(qa_cluster.TestClusterMasterFailover)
127

    
128
  if qa_rapi.Enabled():
129
    RunTest(qa_rapi.TestVersion)
130
    RunTest(qa_rapi.TestEmptyCluster)
131

    
132

    
133
def RunOsTests():
134
  """Runs all tests related to gnt-os.
135

136
  """
137
  if not qa_config.TestEnabled('os'):
138
    return
139

    
140
  RunTest(qa_os.TestOsList)
141
  RunTest(qa_os.TestOsDiagnose)
142
  RunTest(qa_os.TestOsValid)
143
  RunTest(qa_os.TestOsInvalid)
144
  RunTest(qa_os.TestOsPartiallyValid)
145
  RunTest(qa_os.TestOsModifyValid)
146
  RunTest(qa_os.TestOsModifyInvalid)
147

    
148

    
149
def RunCommonInstanceTests(instance):
150
  """Runs a few tests that are common to all disk types.
151

152
  """
153
  if qa_config.TestEnabled('instance-shutdown'):
154
    RunTest(qa_instance.TestInstanceShutdown, instance)
155
    RunTest(qa_instance.TestInstanceStartup, instance)
156

    
157
  if qa_config.TestEnabled('instance-list'):
158
    RunTest(qa_instance.TestInstanceList)
159

    
160
  if qa_config.TestEnabled('instance-info'):
161
    RunTest(qa_instance.TestInstanceInfo, instance)
162

    
163
  if qa_config.TestEnabled('instance-modify'):
164
    RunTest(qa_instance.TestInstanceModify, instance)
165

    
166
  if qa_config.TestEnabled('instance-console'):
167
    RunTest(qa_instance.TestInstanceConsole, instance)
168

    
169
  if qa_config.TestEnabled('instance-reinstall'):
170
    RunTest(qa_instance.TestInstanceShutdown, instance)
171
    RunTest(qa_instance.TestInstanceReinstall, instance)
172
    RunTest(qa_instance.TestInstanceStartup, instance)
173

    
174
  if qa_config.TestEnabled('instance-reboot'):
175
    RunTest(qa_instance.TestInstanceReboot, instance)
176

    
177
  if qa_config.TestEnabled('instance-rename'):
178
    rename_target = qa_config.get("rename", None)
179
    if rename_target is None:
180
      print qa_utils.FormatError("Can rename instance, 'rename' entry is"
181
                                 " missing from configuration")
182
    else:
183
      RunTest(qa_instance.TestInstanceShutdown, instance)
184
      RunTest(qa_instance.TestInstanceRename, instance, rename_target)
185
      if qa_rapi.Enabled():
186
        RunTest(qa_rapi.TestRapiInstanceRename, instance, rename_target)
187
      RunTest(qa_instance.TestInstanceStartup, instance)
188

    
189
  if qa_config.TestEnabled('tags'):
190
    RunTest(qa_tags.TestInstanceTags, instance)
191

    
192
  if qa_config.TestEnabled('node-volumes'):
193
    RunTest(qa_node.TestNodeVolumes)
194

    
195
  if qa_config.TestEnabled("node-storage"):
196
    RunTest(qa_node.TestNodeStorage)
197

    
198
  if qa_rapi.Enabled():
199
    RunTest(qa_rapi.TestInstance, instance)
200

    
201

    
202
def RunExportImportTests(instance, pnode):
203
  """Tries to export and import the instance.
204

205
  """
206
  if qa_config.TestEnabled('instance-export'):
207
    RunTest(qa_instance.TestInstanceExportNoTarget, instance)
208

    
209
    expnode = qa_config.AcquireNode(exclude=pnode)
210
    try:
211
      name = RunTest(qa_instance.TestInstanceExport, instance, expnode)
212

    
213
      RunTest(qa_instance.TestBackupList, expnode)
214

    
215
      if qa_config.TestEnabled('instance-import'):
216
        newinst = qa_config.AcquireInstance()
217
        try:
218
          RunTest(qa_instance.TestInstanceImport, pnode, newinst,
219
                  expnode, name)
220
          RunTest(qa_instance.TestInstanceRemove, newinst)
221
        finally:
222
          qa_config.ReleaseInstance(newinst)
223
    finally:
224
      qa_config.ReleaseNode(expnode)
225

    
226
  if (qa_rapi.Enabled() and
227
      qa_config.TestEnabled("inter-cluster-instance-move")):
228
    newinst = qa_config.AcquireInstance()
229
    try:
230
      pnode2 = qa_config.AcquireNode(exclude=pnode)
231
      try:
232
        RunTest(qa_rapi.TestInterClusterInstanceMove, instance, newinst,
233
                pnode2, pnode)
234
      finally:
235
        qa_config.ReleaseNode(pnode2)
236
    finally:
237
      qa_config.ReleaseInstance(newinst)
238

    
239

    
240
def RunDaemonTests(instance, pnode):
241
  """Test the ganeti-watcher script.
242

243
  """
244
  automatic_restart = \
245
    qa_config.TestEnabled('instance-automatic-restart')
246
  consecutive_failures = \
247
    qa_config.TestEnabled('instance-consecutive-failures')
248

    
249
  if automatic_restart or consecutive_failures:
250
    qa_daemon.PrintCronWarning()
251

    
252
    if automatic_restart:
253
      RunTest(qa_daemon.TestInstanceAutomaticRestart, pnode, instance)
254

    
255
    if consecutive_failures:
256
      RunTest(qa_daemon.TestInstanceConsecutiveFailures, pnode, instance)
257

    
258

    
259
def RunHardwareFailureTests(instance, pnode, snode):
260
  """Test cluster internal hardware failure recovery.
261

262
  """
263
  if qa_config.TestEnabled('instance-failover'):
264
    RunTest(qa_instance.TestInstanceFailover, instance)
265

    
266
  if qa_config.TestEnabled("instance-migrate"):
267
    RunTest(qa_instance.TestInstanceMigrate, instance)
268

    
269
    if qa_rapi.Enabled():
270
      RunTest(qa_rapi.TestRapiInstanceMigrate, instance)
271

    
272
  if qa_config.TestEnabled('instance-replace-disks'):
273
    othernode = qa_config.AcquireNode(exclude=[pnode, snode])
274
    try:
275
      RunTest(qa_instance.TestReplaceDisks,
276
              instance, pnode, snode, othernode)
277
    finally:
278
      qa_config.ReleaseNode(othernode)
279

    
280
  if qa_config.TestEnabled('node-evacuate'):
281
    RunTest(qa_node.TestNodeEvacuate, pnode, snode)
282

    
283
  if qa_config.TestEnabled('node-failover'):
284
    RunTest(qa_node.TestNodeFailover, pnode, snode)
285

    
286
  if qa_config.TestEnabled('instance-disk-failure'):
287
    RunTest(qa_instance.TestInstanceMasterDiskFailure,
288
            instance, pnode, snode)
289
    RunTest(qa_instance.TestInstanceSecondaryDiskFailure,
290
            instance, pnode, snode)
291

    
292

    
293
@rapi.client.UsesRapiClient
294
def main():
295
  """Main program.
296

297
  """
298
  parser = optparse.OptionParser(usage="%prog [options] <config-file>")
299
  parser.add_option('--yes-do-it', dest='yes_do_it',
300
      action="store_true",
301
      help="Really execute the tests")
302
  (qa_config.options, args) = parser.parse_args()
303

    
304
  if len(args) == 1:
305
    (config_file, ) = args
306
  else:
307
    parser.error("Wrong number of arguments.")
308

    
309
  if not qa_config.options.yes_do_it:
310
    print ("Executing this script irreversibly destroys any Ganeti\n"
311
           "configuration on all nodes involved. If you really want\n"
312
           "to start testing, supply the --yes-do-it option.")
313
    sys.exit(1)
314

    
315
  qa_config.Load(config_file)
316

    
317
  rapi_user = "ganeti-qa"
318
  rapi_secret = utils.GenerateSecret()
319

    
320
  RunEnvTests()
321
  SetupCluster(rapi_user, rapi_secret)
322

    
323
  # Load RAPI certificate
324
  qa_rapi.Setup(rapi_user, rapi_secret)
325

    
326
  RunClusterTests()
327
  RunOsTests()
328

    
329
  if qa_config.TestEnabled('tags'):
330
    RunTest(qa_tags.TestClusterTags)
331

    
332
  if qa_config.TestEnabled('node-readd'):
333
    master = qa_config.GetMasterNode()
334
    pnode = qa_config.AcquireNode(exclude=master)
335
    try:
336
      RunTest(qa_node.TestNodeReadd, pnode)
337
    finally:
338
      qa_config.ReleaseNode(pnode)
339

    
340
  pnode = qa_config.AcquireNode()
341
  try:
342
    if qa_config.TestEnabled('tags'):
343
      RunTest(qa_tags.TestNodeTags, pnode)
344

    
345
    if qa_rapi.Enabled():
346
      RunTest(qa_rapi.TestNode, pnode)
347

    
348
      if qa_config.TestEnabled("instance-add-plain-disk"):
349
        for use_client in [True, False]:
350
          rapi_instance = RunTest(qa_rapi.TestRapiInstanceAdd, pnode,
351
                                  use_client)
352
          RunCommonInstanceTests(rapi_instance)
353
          RunTest(qa_rapi.TestRapiInstanceRemove, rapi_instance, use_client)
354
          del rapi_instance
355

    
356
    if qa_config.TestEnabled('instance-add-plain-disk'):
357
      instance = RunTest(qa_instance.TestInstanceAddWithPlainDisk, pnode)
358
      RunCommonInstanceTests(instance)
359
      RunExportImportTests(instance, pnode)
360
      RunDaemonTests(instance, pnode)
361
      RunTest(qa_instance.TestInstanceRemove, instance)
362
      del instance
363

    
364
    multinode_tests = [
365
      ('instance-add-drbd-disk',
366
       qa_instance.TestInstanceAddWithDrbdDisk),
367
    ]
368

    
369
    for name, func in multinode_tests:
370
      if qa_config.TestEnabled(name):
371
        snode = qa_config.AcquireNode(exclude=pnode)
372
        try:
373
          instance = RunTest(func, pnode, snode)
374
          RunCommonInstanceTests(instance)
375
          if qa_config.TestEnabled('instance-convert-disk'):
376
            RunTest(qa_instance.TestInstanceShutdown, instance)
377
            RunTest(qa_instance.TestInstanceConvertDisk, instance, snode)
378
            RunTest(qa_instance.TestInstanceStartup, instance)
379
          RunExportImportTests(instance, pnode)
380
          RunHardwareFailureTests(instance, pnode, snode)
381
          RunTest(qa_instance.TestInstanceRemove, instance)
382
          del instance
383
        finally:
384
          qa_config.ReleaseNode(snode)
385

    
386
    if (qa_config.TestEnabled('instance-add-plain-disk') and
387
        qa_config.TestEnabled("instance-export")):
388
      instance = RunTest(qa_instance.TestInstanceAddWithPlainDisk, pnode)
389
      expnode = qa_config.AcquireNode(exclude=pnode)
390
      try:
391
        RunTest(qa_instance.TestInstanceExportWithRemove, instance, expnode)
392
        RunTest(qa_instance.TestBackupList, expnode)
393
      finally:
394
        qa_config.ReleaseNode(expnode)
395
      del expnode
396
      del instance
397

    
398
  finally:
399
    qa_config.ReleaseNode(pnode)
400

    
401
  if qa_config.TestEnabled('create-cluster'):
402
    RunTest(qa_node.TestNodeRemoveAll)
403

    
404
  if qa_config.TestEnabled('cluster-destroy'):
405
    RunTest(qa_cluster.TestClusterDestroy)
406

    
407

    
408
if __name__ == '__main__':
409
  main()