Statistics
| Branch: | Tag: | Revision:

root / qa / qa_instance.py @ 18337ca9

History | View | Annotate | Download (13.8 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 TestInstanceList():
213
  """gnt-instance list"""
214
  master = qa_config.GetMasterNode()
215

    
216
  cmd = ['gnt-instance', 'list']
217
  AssertEqual(StartSSH(master['primary'],
218
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
219

    
220

    
221
def TestInstanceConsole(instance):
222
  """gnt-instance console"""
223
  master = qa_config.GetMasterNode()
224

    
225
  cmd = ['gnt-instance', 'console', '--show-cmd', instance['name']]
226
  AssertEqual(StartSSH(master['primary'],
227
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
228

    
229

    
230
def TestReplaceDisks(instance, pnode, snode, othernode):
231
  """gnt-instance replace-disks"""
232
  master = qa_config.GetMasterNode()
233

    
234
  def buildcmd(args):
235
    cmd = ['gnt-instance', 'replace-disks']
236
    cmd.extend(args)
237
    cmd.append(instance["name"])
238
    return cmd
239

    
240
  cmd = buildcmd(["-p"])
241
  AssertEqual(StartSSH(master['primary'],
242
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
243

    
244
  cmd = buildcmd(["-s"])
245
  AssertEqual(StartSSH(master['primary'],
246
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
247

    
248
  cmd = buildcmd(["--new-secondary=%s" % othernode["primary"]])
249
  AssertEqual(StartSSH(master['primary'],
250
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
251

    
252
  # Restore
253
  cmd = buildcmd(["--new-secondary=%s" % snode["primary"]])
254
  AssertEqual(StartSSH(master['primary'],
255
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
256

    
257

    
258
def TestInstanceExport(instance, node):
259
  """gnt-backup export"""
260
  master = qa_config.GetMasterNode()
261

    
262
  cmd = ['gnt-backup', 'export', '-n', node['primary'], instance['name']]
263
  AssertEqual(StartSSH(master['primary'],
264
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
265

    
266
  return qa_utils.ResolveInstanceName(instance)
267

    
268

    
269
def TestInstanceImport(node, newinst, expnode, name):
270
  """gnt-backup import"""
271
  master = qa_config.GetMasterNode()
272

    
273
  cmd = (['gnt-backup', 'import',
274
          '--disk-template=plain',
275
          '--no-ip-check',
276
          '--src-node=%s' % expnode['primary'],
277
          '--src-dir=%s/%s' % (constants.EXPORT_DIR, name),
278
          '--node=%s' % node['primary']] +
279
         _GetGenericAddParameters())
280
  cmd.append(newinst['name'])
281
  AssertEqual(StartSSH(master['primary'],
282
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
283

    
284

    
285
def TestBackupList(expnode):
286
  """gnt-backup list"""
287
  master = qa_config.GetMasterNode()
288

    
289
  cmd = ['gnt-backup', 'list', '--node=%s' % expnode['primary']]
290
  AssertEqual(StartSSH(master['primary'],
291
                       utils.ShellQuoteArgs(cmd)).wait(), 0)
292

    
293

    
294
def _TestInstanceDiskFailure(instance, node, node2, onmaster):
295
  """Testing disk failure."""
296
  master = qa_config.GetMasterNode()
297
  sq = utils.ShellQuoteArgs
298

    
299
  instance_full = qa_utils.ResolveInstanceName(instance)
300
  node_full = qa_utils.ResolveNodeName(node)
301
  node2_full = qa_utils.ResolveNodeName(node2)
302

    
303
  print qa_utils.FormatInfo("Getting physical disk names")
304
  cmd = ['gnt-node', 'volumes', '--separator=|', '--no-headers',
305
         '--output=node,phys,instance',
306
         node['primary'], node2['primary']]
307
  output = qa_utils.GetCommandOutput(master['primary'], sq(cmd))
308

    
309
  # Get physical disk names
310
  re_disk = re.compile(r'^/dev/([a-z]+)\d+$')
311
  node2disk = {}
312
  for line in output.splitlines():
313
    (node_name, phys, inst) = line.split('|')
314
    if inst == instance_full:
315
      if node_name not in node2disk:
316
        node2disk[node_name] = []
317

    
318
      m = re_disk.match(phys)
319
      if not m:
320
        raise qa_error.Error("Unknown disk name format: %s" % disk)
321

    
322
      name = m.group(1)
323
      if name not in node2disk[node_name]:
324
        node2disk[node_name].append(name)
325

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

    
330
  print qa_utils.FormatInfo("Checking whether nodes have ability to stop"
331
                            " disks")
332
  for node_name, disks in node2disk.iteritems():
333
    cmds = []
334
    for disk in disks:
335
      cmds.append(sq(["test", "-f", _GetDiskStatePath(disk)]))
336
    AssertEqual(StartSSH(node_name, ' && '.join(cmds)).wait(), 0)
337

    
338
  print qa_utils.FormatInfo("Getting device paths")
339
  cmd = ['gnt-instance', 'activate-disks', instance['name']]
340
  output = qa_utils.GetCommandOutput(master['primary'], sq(cmd))
341
  devpath = []
342
  for line in output.splitlines():
343
    (_, _, tmpdevpath) = line.split(':')
344
    devpath.append(tmpdevpath)
345
  print devpath
346

    
347
  print qa_utils.FormatInfo("Getting drbd device paths")
348
  cmd = ['gnt-instance', 'info', instance['name']]
349
  output = qa_utils.GetCommandOutput(master['primary'], sq(cmd))
350
  pattern = (r'\s+-\s+sd[a-z]+,\s+type:\s+drbd8?,\s+.*$'
351
             r'\s+primary:\s+(/dev/drbd\d+)\s+')
352
  drbddevs = re.findall(pattern, output, re.M)
353
  print drbddevs
354

    
355
  halted_disks = []
356
  try:
357
    print qa_utils.FormatInfo("Deactivating disks")
358
    cmds = []
359
    for name in node2disk[[node2_full, node_full][int(onmaster)]]:
360
      halted_disks.append(name)
361
      cmds.append(sq(["echo", "offline"]) + " >%s" % _GetDiskStatePath(name))
362
    AssertEqual(StartSSH([node2, node][int(onmaster)]['primary'],
363
                         ' && '.join(cmds)).wait(), 0)
364

    
365
    print qa_utils.FormatInfo("Write to disks and give some time to notice"
366
                              " to notice the problem")
367
    cmds = []
368
    for disk in devpath:
369
      cmds.append(sq(["dd", "count=1", "bs=512", "conv=notrunc",
370
                      "if=%s" % disk, "of=%s" % disk]))
371
    for _ in (0, 1, 2):
372
      AssertEqual(StartSSH(node['primary'], ' && '.join(cmds)).wait(), 0)
373
      time.sleep(3)
374

    
375
    print qa_utils.FormatInfo("Debugging info")
376
    for name in drbddevs:
377
      cmd = ['drbdsetup', name, 'show']
378
      AssertEqual(StartSSH(node['primary'], sq(cmd)).wait(), 0)
379

    
380
    cmd = ['gnt-instance', 'info', instance['name']]
381
    AssertEqual(StartSSH(master['primary'], sq(cmd)).wait(), 0)
382

    
383
  finally:
384
    print qa_utils.FormatInfo("Activating disks again")
385
    cmds = []
386
    for name in halted_disks:
387
      cmds.append(sq(["echo", "running"]) + " >%s" % _GetDiskStatePath(name))
388
    AssertEqual(StartSSH([node2, node][int(onmaster)]['primary'],
389
                         '; '.join(cmds)).wait(), 0)
390

    
391
  if onmaster:
392
    for name in drbddevs:
393
      cmd = ['drbdsetup', name, 'detach']
394
      AssertEqual(StartSSH(node['primary'], sq(cmd)).wait(), 0)
395
  else:
396
    for name in drbddevs:
397
      cmd = ['drbdsetup', name, 'disconnect']
398
      AssertEqual(StartSSH(node2['primary'], sq(cmd)).wait(), 0)
399

    
400
  # TODO
401
  #cmd = ['vgs']
402
  #AssertEqual(StartSSH([node2, node][int(onmaster)]['primary'],
403
  #                     sq(cmd)).wait(), 0)
404

    
405
  print qa_utils.FormatInfo("Making sure disks are up again")
406
  cmd = ['gnt-instance', 'replace-disks', instance['name']]
407
  AssertEqual(StartSSH(master['primary'], sq(cmd)).wait(), 0)
408

    
409
  print qa_utils.FormatInfo("Restarting instance")
410
  cmd = ['gnt-instance', 'shutdown', instance['name']]
411
  AssertEqual(StartSSH(master['primary'], sq(cmd)).wait(), 0)
412

    
413
  cmd = ['gnt-instance', 'startup', instance['name']]
414
  AssertEqual(StartSSH(master['primary'], sq(cmd)).wait(), 0)
415

    
416
  cmd = ['gnt-cluster', 'verify']
417
  AssertEqual(StartSSH(master['primary'], sq(cmd)).wait(), 0)
418

    
419

    
420
def TestInstanceMasterDiskFailure(instance, node, node2):
421
  """Testing disk failure on master node."""
422
  print qa_utils.FormatError("Disk failure on primary node cannot be"
423
                             " tested due to potential crashes.")
424
  # The following can cause crashes, thus it's disabled until fixed
425
  #return _TestInstanceDiskFailure(instance, node, node2, True)
426

    
427

    
428
def TestInstanceSecondaryDiskFailure(instance, node, node2):
429
  """Testing disk failure on secondary node."""
430
  return _TestInstanceDiskFailure(instance, node, node2, False)