Statistics
| Branch: | Tag: | Revision:

root / qa / qa_instance.py @ 53a8da8e

History | View | Annotate | Download (14.3 kB)

1
#
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
"""Instance related QA tests.
23

24
"""
25

    
26
import re
27
import time
28

    
29
from ganeti import utils
30
from ganeti import constants
31

    
32
import qa_config
33
import qa_utils
34
import qa_error
35

    
36
from qa_utils import AssertEqual, AssertNotEqual, StartSSH
37

    
38

    
39
def _GetDiskStatePath(disk):
40
  return "/sys/block/%s/device/state" % disk
41

    
42

    
43
def _GetGenericAddParameters():
44
  params = ['-B', '%s=%s' % (constants.BE_MEMORY, qa_config.get('mem'))]
45
  for idx, size in enumerate(qa_config.get('disk')):
46
    params.extend(["--disk", "%s:size=%s" % (idx, size)])
47
  return params
48

    
49

    
50
def _DiskTest(node, disk_template):
51
  master = qa_config.GetMasterNode()
52

    
53
  instance = qa_config.AcquireInstance()
54
  try:
55
    cmd = (['gnt-instance', 'add',
56
            '--os-type=%s' % qa_config.get('os'),
57
            '--disk-template=%s' % disk_template,
58
            '--node=%s' % node] +
59
           _GetGenericAddParameters())
60
    cmd.append(instance['name'])
61

    
62
    AssertEqual(StartSSH(master['primary'],
63
                         utils.ShellQuoteArgs(cmd)).wait(), 0)
64
    return instance
65
  except:
66
    qa_config.ReleaseInstance(instance)
67
    raise
68

    
69

    
70
def TestInstanceAddWithPlainDisk(node):
71
  """gnt-instance add -t plain"""
72
  return _DiskTest(node['primary'], 'plain')
73

    
74

    
75
def TestInstanceAddWithDrbdDisk(node, node2):
76
  """gnt-instance add -t drbd"""
77
  return _DiskTest("%s:%s" % (node['primary'], node2['primary']),
78
                   'drbd')
79

    
80

    
81
def TestInstanceRemove(instance):
82
  """gnt-instance remove"""
83
  master = qa_config.GetMasterNode()
84

    
85
  cmd = ['gnt-instance', 'remove', '-f', instance['name']]
86
  AssertEqual(StartSSH(master['primary'],
87
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
88

    
89
  qa_config.ReleaseInstance(instance)
90

    
91

    
92
def TestInstanceStartup(instance):
93
  """gnt-instance startup"""
94
  master = qa_config.GetMasterNode()
95

    
96
  cmd = ['gnt-instance', 'startup', instance['name']]
97
  AssertEqual(StartSSH(master['primary'],
98
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
99

    
100

    
101
def TestInstanceShutdown(instance):
102
  """gnt-instance shutdown"""
103
  master = qa_config.GetMasterNode()
104

    
105
  cmd = ['gnt-instance', 'shutdown', instance['name']]
106
  AssertEqual(StartSSH(master['primary'],
107
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
108

    
109

    
110
def TestInstanceReboot(instance):
111
  """gnt-instance reboot"""
112
  master = qa_config.GetMasterNode()
113

    
114
  for reboottype in ["soft", "hard", "full"]:
115
    cmd = ['gnt-instance', 'reboot', '--type=%s' % reboottype,
116
           instance['name']]
117
    AssertEqual(StartSSH(master['primary'],
118
                         utils.ShellQuoteArgs(cmd)).wait(), 0)
119

    
120

    
121
def TestInstanceReinstall(instance):
122
  """gnt-instance reinstall"""
123
  master = qa_config.GetMasterNode()
124

    
125
  cmd = ['gnt-instance', 'reinstall', '-f', instance['name']]
126
  AssertEqual(StartSSH(master['primary'],
127
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
128

    
129

    
130
def TestInstanceRename(instance):
131
  """gnt-instance rename"""
132
  master = qa_config.GetMasterNode()
133

    
134
  rename_source = instance['name']
135
  rename_target = qa_config.get('rename', None)
136
  if rename_target is None:
137
    print qa_utils.FormatError('"rename" entry is missing')
138
    return
139

    
140
  for name1, name2 in [(rename_source, rename_target),
141
                       (rename_target, rename_source)]:
142
    cmd = ['gnt-instance', 'rename', name1, name2]
143
    AssertEqual(StartSSH(master['primary'],
144
                         utils.ShellQuoteArgs(cmd)).wait(), 0)
145

    
146

    
147
def TestInstanceFailover(instance):
148
  """gnt-instance failover"""
149
  master = qa_config.GetMasterNode()
150

    
151
  cmd = ['gnt-instance', 'failover', '--force', instance['name']]
152
  AssertEqual(StartSSH(master['primary'],
153
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
154

    
155
  # ... and back
156
  cmd = ['gnt-instance', 'failover', '--force', instance['name']]
157
  AssertEqual(StartSSH(master['primary'],
158
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
159

    
160

    
161
def TestInstanceInfo(instance):
162
  """gnt-instance info"""
163
  master = qa_config.GetMasterNode()
164

    
165
  cmd = ['gnt-instance', 'info', instance['name']]
166
  AssertEqual(StartSSH(master['primary'],
167
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
168

    
169

    
170
def TestInstanceModify(instance):
171
  """gnt-instance modify"""
172
  master = qa_config.GetMasterNode()
173

    
174
  # Assume /sbin/init exists on all systems
175
  test_kernel = "/sbin/init"
176
  test_initrd = test_kernel
177

    
178
  orig_memory = qa_config.get('mem')
179
  orig_bridge = qa_config.get('bridge', 'xen-br0')
180
  args = [
181
    ["-B", "%s=128" % constants.BE_MEMORY],
182
    ["-B", "%s=%s" % (constants.BE_MEMORY, orig_memory)],
183
    ["-B", "%s=2" % constants.BE_VCPUS],
184
    ["-B", "%s=1" % constants.BE_VCPUS],
185
    ["-B", "%s=%s" % (constants.BE_VCPUS, constants.VALUE_DEFAULT)],
186

    
187
    ["-H", "%s=%s" % (constants.HV_KERNEL_PATH, test_kernel)],
188
    ["-H", "%s=%s" % (constants.HV_KERNEL_PATH, constants.VALUE_DEFAULT)],
189
    ["-H", "%s=%s" % (constants.HV_INITRD_PATH, test_initrd)],
190
    ["-H", "no_%s" % (constants.HV_INITRD_PATH, )],
191
    ["-H", "%s=%s" % (constants.HV_INITRD_PATH, constants.VALUE_DEFAULT)],
192

    
193
    # TODO: bridge tests
194
    #["--bridge", "xen-br1"],
195
    #["--bridge", orig_bridge],
196

    
197
    # TODO: Do these tests only with xen-hvm
198
    #["-H", "%s=acn" % constants.HV_BOOT_ORDER],
199
    #["-H", "%s=%s" % (constants.HV_BOOT_ORDER, constants.VALUE_DEFAULT)],
200
    ]
201
  for alist in args:
202
    cmd = ['gnt-instance', 'modify'] + alist + [instance['name']]
203
    AssertEqual(StartSSH(master['primary'],
204
                         utils.ShellQuoteArgs(cmd)).wait(), 0)
205

    
206
  # check no-modify
207
  cmd = ['gnt-instance', 'modify', instance['name']]
208
  AssertNotEqual(StartSSH(master['primary'],
209
                          utils.ShellQuoteArgs(cmd)).wait(), 0)
210

    
211

    
212
def TestInstanceConvertDisk(instance, snode):
213
  """gnt-instance modify -t"""
214
  master = qa_config.GetMasterNode()
215
  cmd = ['gnt-instance', 'modify', '-t', 'plain', instance['name']]
216
  AssertEqual(StartSSH(master['primary'],
217
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
218
  cmd = ['gnt-instance', 'modify', '-t', 'drbd', '-n', snode, instance['name']]
219
  AssertEqual(StartSSH(master['primary'],
220
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
221

    
222

    
223
def TestInstanceList():
224
  """gnt-instance list"""
225
  master = qa_config.GetMasterNode()
226

    
227
  cmd = ['gnt-instance', 'list']
228
  AssertEqual(StartSSH(master['primary'],
229
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
230

    
231

    
232
def TestInstanceConsole(instance):
233
  """gnt-instance console"""
234
  master = qa_config.GetMasterNode()
235

    
236
  cmd = ['gnt-instance', 'console', '--show-cmd', instance['name']]
237
  AssertEqual(StartSSH(master['primary'],
238
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
239

    
240

    
241
def TestReplaceDisks(instance, pnode, snode, othernode):
242
  """gnt-instance replace-disks"""
243
  master = qa_config.GetMasterNode()
244

    
245
  def buildcmd(args):
246
    cmd = ['gnt-instance', 'replace-disks']
247
    cmd.extend(args)
248
    cmd.append(instance["name"])
249
    return cmd
250

    
251
  cmd = buildcmd(["-p"])
252
  AssertEqual(StartSSH(master['primary'],
253
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
254

    
255
  cmd = buildcmd(["-s"])
256
  AssertEqual(StartSSH(master['primary'],
257
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
258

    
259
  cmd = buildcmd(["--new-secondary=%s" % othernode["primary"]])
260
  AssertEqual(StartSSH(master['primary'],
261
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
262

    
263
  # Restore
264
  cmd = buildcmd(["--new-secondary=%s" % snode["primary"]])
265
  AssertEqual(StartSSH(master['primary'],
266
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
267

    
268

    
269
def TestInstanceExport(instance, node):
270
  """gnt-backup export"""
271
  master = qa_config.GetMasterNode()
272

    
273
  cmd = ['gnt-backup', 'export', '-n', node['primary'], instance['name']]
274
  AssertEqual(StartSSH(master['primary'],
275
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
276

    
277
  return qa_utils.ResolveInstanceName(instance)
278

    
279

    
280
def TestInstanceImport(node, newinst, expnode, name):
281
  """gnt-backup import"""
282
  master = qa_config.GetMasterNode()
283

    
284
  cmd = (['gnt-backup', 'import',
285
          '--disk-template=plain',
286
          '--no-ip-check',
287
          '--net', '0:mac=generate',
288
          '--src-node=%s' % expnode['primary'],
289
          '--src-dir=%s/%s' % (constants.EXPORT_DIR, name),
290
          '--node=%s' % node['primary']] +
291
         _GetGenericAddParameters())
292
  cmd.append(newinst['name'])
293
  AssertEqual(StartSSH(master['primary'],
294
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
295

    
296

    
297
def TestBackupList(expnode):
298
  """gnt-backup list"""
299
  master = qa_config.GetMasterNode()
300

    
301
  cmd = ['gnt-backup', 'list', '--node=%s' % expnode['primary']]
302
  AssertEqual(StartSSH(master['primary'],
303
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
304

    
305

    
306
def _TestInstanceDiskFailure(instance, node, node2, onmaster):
307
  """Testing disk failure."""
308
  master = qa_config.GetMasterNode()
309
  sq = utils.ShellQuoteArgs
310

    
311
  instance_full = qa_utils.ResolveInstanceName(instance)
312
  node_full = qa_utils.ResolveNodeName(node)
313
  node2_full = qa_utils.ResolveNodeName(node2)
314

    
315
  print qa_utils.FormatInfo("Getting physical disk names")
316
  cmd = ['gnt-node', 'volumes', '--separator=|', '--no-headers',
317
         '--output=node,phys,instance',
318
         node['primary'], node2['primary']]
319
  output = qa_utils.GetCommandOutput(master['primary'], sq(cmd))
320

    
321
  # Get physical disk names
322
  re_disk = re.compile(r'^/dev/([a-z]+)\d+$')
323
  node2disk = {}
324
  for line in output.splitlines():
325
    (node_name, phys, inst) = line.split('|')
326
    if inst == instance_full:
327
      if node_name not in node2disk:
328
        node2disk[node_name] = []
329

    
330
      m = re_disk.match(phys)
331
      if not m:
332
        raise qa_error.Error("Unknown disk name format: %s" % disk)
333

    
334
      name = m.group(1)
335
      if name not in node2disk[node_name]:
336
        node2disk[node_name].append(name)
337

    
338
  if [node2_full, node_full][int(onmaster)] not in node2disk:
339
    raise qa_error.Error("Couldn't find physical disks used on"
340
                         " %s node" % ["secondary", "master"][int(onmaster)])
341

    
342
  print qa_utils.FormatInfo("Checking whether nodes have ability to stop"
343
                            " disks")
344
  for node_name, disks in node2disk.iteritems():
345
    cmds = []
346
    for disk in disks:
347
      cmds.append(sq(["test", "-f", _GetDiskStatePath(disk)]))
348
    AssertEqual(StartSSH(node_name, ' && '.join(cmds)).wait(), 0)
349

    
350
  print qa_utils.FormatInfo("Getting device paths")
351
  cmd = ['gnt-instance', 'activate-disks', instance['name']]
352
  output = qa_utils.GetCommandOutput(master['primary'], sq(cmd))
353
  devpath = []
354
  for line in output.splitlines():
355
    (_, _, tmpdevpath) = line.split(':')
356
    devpath.append(tmpdevpath)
357
  print devpath
358

    
359
  print qa_utils.FormatInfo("Getting drbd device paths")
360
  cmd = ['gnt-instance', 'info', instance['name']]
361
  output = qa_utils.GetCommandOutput(master['primary'], sq(cmd))
362
  pattern = (r'\s+-\s+sd[a-z]+,\s+type:\s+drbd8?,\s+.*$'
363
             r'\s+primary:\s+(/dev/drbd\d+)\s+')
364
  drbddevs = re.findall(pattern, output, re.M)
365
  print drbddevs
366

    
367
  halted_disks = []
368
  try:
369
    print qa_utils.FormatInfo("Deactivating disks")
370
    cmds = []
371
    for name in node2disk[[node2_full, node_full][int(onmaster)]]:
372
      halted_disks.append(name)
373
      cmds.append(sq(["echo", "offline"]) + " >%s" % _GetDiskStatePath(name))
374
    AssertEqual(StartSSH([node2, node][int(onmaster)]['primary'],
375
                         ' && '.join(cmds)).wait(), 0)
376

    
377
    print qa_utils.FormatInfo("Write to disks and give some time to notice"
378
                              " to notice the problem")
379
    cmds = []
380
    for disk in devpath:
381
      cmds.append(sq(["dd", "count=1", "bs=512", "conv=notrunc",
382
                      "if=%s" % disk, "of=%s" % disk]))
383
    for _ in (0, 1, 2):
384
      AssertEqual(StartSSH(node['primary'], ' && '.join(cmds)).wait(), 0)
385
      time.sleep(3)
386

    
387
    print qa_utils.FormatInfo("Debugging info")
388
    for name in drbddevs:
389
      cmd = ['drbdsetup', name, 'show']
390
      AssertEqual(StartSSH(node['primary'], sq(cmd)).wait(), 0)
391

    
392
    cmd = ['gnt-instance', 'info', instance['name']]
393
    AssertEqual(StartSSH(master['primary'], sq(cmd)).wait(), 0)
394

    
395
  finally:
396
    print qa_utils.FormatInfo("Activating disks again")
397
    cmds = []
398
    for name in halted_disks:
399
      cmds.append(sq(["echo", "running"]) + " >%s" % _GetDiskStatePath(name))
400
    AssertEqual(StartSSH([node2, node][int(onmaster)]['primary'],
401
                         '; '.join(cmds)).wait(), 0)
402

    
403
  if onmaster:
404
    for name in drbddevs:
405
      cmd = ['drbdsetup', name, 'detach']
406
      AssertEqual(StartSSH(node['primary'], sq(cmd)).wait(), 0)
407
  else:
408
    for name in drbddevs:
409
      cmd = ['drbdsetup', name, 'disconnect']
410
      AssertEqual(StartSSH(node2['primary'], sq(cmd)).wait(), 0)
411

    
412
  # TODO
413
  #cmd = ['vgs']
414
  #AssertEqual(StartSSH([node2, node][int(onmaster)]['primary'],
415
  #                     sq(cmd)).wait(), 0)
416

    
417
  print qa_utils.FormatInfo("Making sure disks are up again")
418
  cmd = ['gnt-instance', 'replace-disks', instance['name']]
419
  AssertEqual(StartSSH(master['primary'], sq(cmd)).wait(), 0)
420

    
421
  print qa_utils.FormatInfo("Restarting instance")
422
  cmd = ['gnt-instance', 'shutdown', instance['name']]
423
  AssertEqual(StartSSH(master['primary'], sq(cmd)).wait(), 0)
424

    
425
  cmd = ['gnt-instance', 'startup', instance['name']]
426
  AssertEqual(StartSSH(master['primary'], sq(cmd)).wait(), 0)
427

    
428
  cmd = ['gnt-cluster', 'verify']
429
  AssertEqual(StartSSH(master['primary'], sq(cmd)).wait(), 0)
430

    
431

    
432
def TestInstanceMasterDiskFailure(instance, node, node2):
433
  """Testing disk failure on master node."""
434
  print qa_utils.FormatError("Disk failure on primary node cannot be"
435
                             " tested due to potential crashes.")
436
  # The following can cause crashes, thus it's disabled until fixed
437
  #return _TestInstanceDiskFailure(instance, node, node2, True)
438

    
439

    
440
def TestInstanceSecondaryDiskFailure(instance, node, node2):
441
  """Testing disk failure on secondary node."""
442
  return _TestInstanceDiskFailure(instance, node, node2, False)