QA, burnin: allow selection of reboot types
authorIustin Pop <iustin@google.com>
Tue, 6 Jul 2010 16:52:41 +0000 (18:52 +0200)
committerIustin Pop <iustin@google.com>
Wed, 7 Jul 2010 08:04:38 +0000 (10:04 +0200)
After some more investigation, only the soft reboot type fails for Xen
3.4 (due to the reboot/uptime time counter). As such, it's better to
allow selective testing, since we do want to test in general these
opcodes/the command line script.

Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Luca Bigliardi <shammash@google.com>

qa/qa-sample.json
qa/qa_cluster.py
qa/qa_instance.py
tools/burnin

index f60c596..ab76bbe 100644 (file)
@@ -96,7 +96,8 @@
     "burnin-in-parallel": false,
     "burnin-check-instances": false,
     "burnin-rename": "xen-test-rename",
-    "burnin-reboot": true
+    "burnin-reboot": true,
+    "reboot-types": ["soft", "hard", "full"]
   },
 
   "# vim: set syntax=javascript :": null
index 8b53a09..e2a672e 100644 (file)
@@ -232,6 +232,7 @@ def TestClusterBurnin():
   check_inst = options.get('burnin-check-instances', False)
   do_rename = options.get('burnin-rename', '')
   do_reboot = options.get('burnin-reboot', True)
+  reboot_types = options.get("reboot-types", constants.REBOOT_TYPES)
 
   # Get as many instances as we need
   instances = []
@@ -263,6 +264,8 @@ def TestClusterBurnin():
         cmd.append('--rename=%s' % do_rename)
       if not do_reboot:
         cmd.append('--no-reboot')
+      else:
+        cmd.append('--reboot-types=%s' % ",".join(reboot_types))
       cmd += [inst['name'] for inst in instances]
       AssertEqual(StartSSH(master['primary'],
                            utils.ShellQuoteArgs(cmd)).wait(), 0)
index 72b69de..2f18add 100644 (file)
@@ -111,9 +111,11 @@ def TestInstanceReboot(instance):
   """gnt-instance reboot"""
   master = qa_config.GetMasterNode()
 
-  for reboottype in ["soft", "hard", "full"]:
-    cmd = ['gnt-instance', 'reboot', '--type=%s' % reboottype,
-           instance['name']]
+  options = qa_config.get('options', {})
+  reboot_types = options.get("reboot-types", constants.REBOOT_TYPES)
+
+  for rtype in reboot_types:
+    cmd = ['gnt-instance', 'reboot', '--type=%s' % rtype, instance['name']]
     AssertEqual(StartSSH(master['primary'],
                          utils.ShellQuoteArgs(cmd)).wait(), 0)
 
index 17e5850..4a0f567 100755 (executable)
@@ -157,6 +157,8 @@ OPTIONS = [
   cli.cli_option("--no-reboot", dest="do_reboot",
                  help="Skip instance reboot", action="store_false",
                  default=True),
+  cli.cli_option("--reboot-types", dest="reboot_types",
+                 help="Specify the reboot types", default=None),
   cli.cli_option("--no-activate-disks", dest="do_activate_disks",
                  help="Skip disk activation/deactivation",
                  action="store_false", default=True),
@@ -482,6 +484,14 @@ class Burner(object):
     if options.hypervisor:
       self.hypervisor, self.hvp = options.hypervisor
 
+    if options.reboot_types is None:
+      options.reboot_types = constants.REBOOT_TYPES
+    else:
+      options.reboot_types = options.reboot_types.split(",")
+      rt_diff = set(options.reboot_types).difference(constants.REBOOT_TYPES)
+      if rt_diff:
+        Err("Invalid reboot types specified: %s" % utils.CommaJoin(rt_diff))
+
     socket.setdefaulttimeout(options.net_timeout)
 
   def GetState(self):
@@ -815,7 +825,7 @@ class Burner(object):
     for instance in self.instances:
       Log("instance %s", instance, indent=1)
       ops = []
-      for reboot_type in constants.REBOOT_TYPES:
+      for reboot_type in self.opts.reboot_types:
         op = opcodes.OpRebootInstance(instance_name=instance,
                                       reboot_type=reboot_type,
                                       ignore_secondaries=False)