Statistics
| Branch: | Tag: | Revision:

root / qa / qa_instance.py @ 7f69aabb

History | View | Annotate | Download (14.2 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
          '--src-node=%s' % expnode['primary'],
288
          '--src-dir=%s/%s' % (constants.EXPORT_DIR, name),
289
          '--node=%s' % node['primary']] +
290
         _GetGenericAddParameters())
291
  cmd.append(newinst['name'])
292
  AssertEqual(StartSSH(master['primary'],
293
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
294

    
295

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

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

    
304

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    
430

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

    
438

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