Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 1 | # Copyright (c) 2013 The Chromium OS Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 6 | import abc |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 7 | import logging |
| 8 | |
| 9 | import common |
| 10 | from autotest_lib.frontend.afe.json_rpc import proxy |
| 11 | from autotest_lib.server import frontend |
Fang Deng | af30e7c | 2014-11-15 13:57:03 -0800 | [diff] [blame] | 12 | from autotest_lib.server.cros import provision_actionables as actionables |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 13 | |
| 14 | |
| 15 | ### Constants for label prefixes |
| 16 | CROS_VERSION_PREFIX = 'cros-version' |
Fang Deng | dbc8632 | 2013-08-09 16:17:30 -0700 | [diff] [blame] | 17 | FW_VERSION_PREFIX = 'fw-version' |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 18 | |
| 19 | |
| 20 | ### Helpers to convert value to label |
| 21 | def cros_version_to_label(image): |
| 22 | """ |
| 23 | Returns the proper label name for a ChromeOS build of |image|. |
| 24 | |
| 25 | @param image: A string of the form 'lumpy-release/R28-3993.0.0' |
| 26 | @returns: A string that is the appropriate label name. |
| 27 | |
| 28 | """ |
| 29 | return CROS_VERSION_PREFIX + ':' + image |
| 30 | |
| 31 | |
Dan Shi | 9cb0eec | 2014-06-03 09:04:50 -0700 | [diff] [blame] | 32 | def fw_version_to_label(image): |
| 33 | """ |
| 34 | Returns the proper label name for a firmware build of |image|. |
| 35 | |
| 36 | @param image: A string of the form 'lumpy-release/R28-3993.0.0' |
| 37 | @returns: A string that is the appropriate label name. |
| 38 | |
| 39 | """ |
| 40 | return FW_VERSION_PREFIX + ':' + image |
| 41 | |
| 42 | |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 43 | class _SpecialTaskAction(object): |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 44 | """ |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 45 | Base class to give a template for mapping labels to tests. |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 46 | """ |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 47 | |
| 48 | __metaclass__ = abc.ABCMeta |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 49 | |
| 50 | |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 51 | # One cannot do |
| 52 | # @abc.abstractproperty |
| 53 | # _actions = {} |
| 54 | # so this is the next best thing |
| 55 | @abc.abstractproperty |
| 56 | def _actions(self): |
| 57 | """A dictionary mapping labels to test names.""" |
| 58 | pass |
| 59 | |
| 60 | |
| 61 | @abc.abstractproperty |
| 62 | def name(self): |
| 63 | """The name of this special task to be used in output.""" |
| 64 | pass |
| 65 | |
| 66 | |
| 67 | @classmethod |
| 68 | def acts_on(cls, label): |
| 69 | """ |
| 70 | Returns True if the label is a label that we recognize as something we |
| 71 | know how to act on, given our _actions. |
| 72 | |
| 73 | @param label: The label as a string. |
| 74 | @returns: True if there exists a test to run for this label. |
| 75 | |
| 76 | """ |
| 77 | return label.split(':')[0] in cls._actions |
| 78 | |
| 79 | |
| 80 | @classmethod |
| 81 | def test_for(cls, label): |
| 82 | """ |
| 83 | Returns the test associated with the given (string) label name. |
| 84 | |
| 85 | @param label: The label for which the action is being requested. |
| 86 | @returns: The string name of the test that should be run. |
| 87 | @raises KeyError: If the name was not recognized as one we care about. |
| 88 | |
| 89 | """ |
| 90 | return cls._actions[label] |
| 91 | |
| 92 | |
Alex Miller | aa77200 | 2014-04-10 17:51:21 -0700 | [diff] [blame] | 93 | @classmethod |
| 94 | def partition(cls, labels): |
| 95 | """ |
| 96 | Filter a list of labels into two sets: those labels that we know how to |
| 97 | act on and those that we don't know how to act on. |
| 98 | |
| 99 | @param labels: A list of strings of labels. |
| 100 | @returns: A tuple where the first element is a set of unactionable |
| 101 | labels, and the second element is a set of the actionable |
| 102 | labels. |
| 103 | """ |
| 104 | capabilities = set() |
| 105 | configurations = set() |
| 106 | |
| 107 | for label in labels: |
| 108 | if cls.acts_on(label): |
| 109 | configurations.add(label) |
| 110 | else: |
| 111 | capabilities.add(label) |
| 112 | |
| 113 | return capabilities, configurations |
| 114 | |
| 115 | |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 116 | class Verify(_SpecialTaskAction): |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 117 | """ |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 118 | Tests to verify that the DUT is in a sane, known good state that we can run |
| 119 | tests on. Failure to verify leads to running Repair. |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 120 | """ |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 121 | |
| 122 | _actions = { |
Fang Deng | af30e7c | 2014-11-15 13:57:03 -0800 | [diff] [blame] | 123 | 'modem_repair': actionables.TestActionable('cellular_StaleModemReboot'), |
Dan Shi | d2b82f3 | 2014-10-24 13:39:19 -0700 | [diff] [blame] | 124 | # TODO(crbug.com/404421): set rpm action to power_RPMTest after the RPM |
| 125 | # is stable in lab (destiny). The power_RPMTest failure led to reset job |
| 126 | # failure and that left dut in Repair Failed. Since the test will fail |
| 127 | # anyway due to the destiny lab issue, and test retry will retry the |
| 128 | # test in another DUT. |
| 129 | # This change temporarily disable the RPM check in reset job. |
| 130 | # Another way to do this is to remove rpm dependency from tests' control |
| 131 | # file. That will involve changes on multiple control files. This one |
| 132 | # line change here is a simple temporary fix. |
Fang Deng | af30e7c | 2014-11-15 13:57:03 -0800 | [diff] [blame] | 133 | 'rpm': actionables.TestActionable('dummy_PassServer'), |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | name = 'verify' |
| 137 | |
| 138 | |
| 139 | class Provision(_SpecialTaskAction): |
| 140 | """ |
| 141 | Provisioning runs to change the configuration of the DUT from one state to |
| 142 | another. It will only be run on verified DUTs. |
| 143 | """ |
| 144 | |
| 145 | # TODO(milleral): http://crbug.com/249555 |
| 146 | # Create some way to discover and register provisioning tests so that we |
| 147 | # don't need to hand-maintain a list of all of them. |
| 148 | _actions = { |
Fang Deng | af30e7c | 2014-11-15 13:57:03 -0800 | [diff] [blame] | 149 | CROS_VERSION_PREFIX: actionables.TestActionable('provision_AutoUpdate'), |
| 150 | FW_VERSION_PREFIX: actionables.TestActionable( |
| 151 | 'provision_FirmwareUpdate'), |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | name = 'provision' |
| 155 | |
| 156 | |
| 157 | class Cleanup(_SpecialTaskAction): |
| 158 | """ |
| 159 | Cleanup runs after a test fails to try and remove artifacts of tests and |
| 160 | ensure the DUT will be in a sane state for the next test run. |
| 161 | """ |
| 162 | |
| 163 | _actions = { |
Fang Deng | af30e7c | 2014-11-15 13:57:03 -0800 | [diff] [blame] | 164 | 'cleanup-reboot': actionables.RebootActionable(), |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | name = 'cleanup' |
| 168 | |
| 169 | |
| 170 | class Repair(_SpecialTaskAction): |
| 171 | """ |
| 172 | Repair runs when one of the other special tasks fails. It should be able |
| 173 | to take a component of the DUT that's in an unknown state and restore it to |
| 174 | a good state. |
| 175 | """ |
| 176 | |
| 177 | _actions = { |
| 178 | } |
| 179 | |
| 180 | name = 'repair' |
| 181 | |
| 182 | |
Alex Miller | 1968edf | 2014-02-27 18:11:36 -0800 | [diff] [blame] | 183 | |
Alex Miller | aa77200 | 2014-04-10 17:51:21 -0700 | [diff] [blame] | 184 | # TODO(milleral): crbug.com/364273 |
| 185 | # Label doesn't really mean label in this context. We're putting things into |
| 186 | # DEPENDENCIES that really aren't DEPENDENCIES, and we should probably stop |
| 187 | # doing that. |
| 188 | def is_for_special_action(label): |
| 189 | """ |
| 190 | If any special task handles the label specially, then we're using the label |
| 191 | to communicate that we want an action, and not as an actual dependency that |
| 192 | the test has. |
| 193 | |
| 194 | @param label: A string label name. |
| 195 | @return True if any special task handles this label specially, |
| 196 | False if no special task handles this label. |
| 197 | """ |
| 198 | return (Verify.acts_on(label) or |
| 199 | Provision.acts_on(label) or |
| 200 | Cleanup.acts_on(label) or |
| 201 | Repair.acts_on(label)) |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 202 | |
| 203 | |
| 204 | def filter_labels(labels): |
| 205 | """ |
| 206 | Filter a list of labels into two sets: those labels that we know how to |
| 207 | change and those that we don't. For the ones we know how to change, split |
| 208 | them apart into the name of configuration type and its value. |
| 209 | |
| 210 | @param labels: A list of strings of labels. |
| 211 | @returns: A tuple where the first element is a set of unprovisionable |
| 212 | labels, and the second element is a set of the provisionable |
| 213 | labels. |
| 214 | |
| 215 | >>> filter_labels(['bluetooth', 'cros-version:lumpy-release/R28-3993.0.0']) |
| 216 | (set(['bluetooth']), set(['cros-version:lumpy-release/R28-3993.0.0'])) |
| 217 | |
| 218 | """ |
Alex Miller | aa77200 | 2014-04-10 17:51:21 -0700 | [diff] [blame] | 219 | return Provision.partition(labels) |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 220 | |
| 221 | |
| 222 | def split_labels(labels): |
| 223 | """ |
| 224 | Split a list of labels into a dict mapping name to value. All labels must |
| 225 | be provisionable labels, or else a ValueError |
| 226 | |
| 227 | @param labels: list of strings of label names |
| 228 | @returns: A dict of where the key is the configuration name, and the value |
| 229 | is the configuration value. |
| 230 | @raises: ValueError if a label is not a provisionable label. |
| 231 | |
| 232 | >>> split_labels(['cros-version:lumpy-release/R28-3993.0.0']) |
| 233 | {'cros-version': 'lumpy-release/R28-3993.0.0'} |
| 234 | >>> split_labels(['bluetooth']) |
| 235 | Traceback (most recent call last): |
| 236 | ... |
| 237 | ValueError: Unprovisionable label bluetooth |
| 238 | |
| 239 | """ |
| 240 | configurations = dict() |
| 241 | |
| 242 | for label in labels: |
Alex Miller | aa77200 | 2014-04-10 17:51:21 -0700 | [diff] [blame] | 243 | if Provision.acts_on(label): |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 244 | name, value = label.split(':', 1) |
| 245 | configurations[name] = value |
| 246 | else: |
| 247 | raise ValueError('Unprovisionable label %s' % label) |
| 248 | |
| 249 | return configurations |
| 250 | |
| 251 | |
Alex Miller | 2229c9c | 2013-08-27 15:20:39 -0700 | [diff] [blame] | 252 | def join(provision_type, provision_value): |
| 253 | """ |
| 254 | Combine the provision type and value into the label name. |
| 255 | |
| 256 | @param provision_type: One of the constants that are the label prefixes. |
| 257 | @param provision_value: A string of the value for this provision type. |
| 258 | @returns: A string that is the label name for this (type, value) pair. |
| 259 | |
| 260 | >>> join(CROS_VERSION_PREFIX, 'lumpy-release/R27-3773.0.0') |
| 261 | 'cros-version:lumpy-release/R27-3773.0.0' |
| 262 | |
| 263 | """ |
| 264 | return '%s:%s' % (provision_type, provision_value) |
| 265 | |
| 266 | |
Alex Miller | 667b5f2 | 2014-02-28 15:33:39 -0800 | [diff] [blame] | 267 | class SpecialTaskActionException(Exception): |
| 268 | """ |
| 269 | Exception raised when a special task fails to successfully run a test that |
| 270 | is required. |
| 271 | |
| 272 | This is also a literally meaningless exception. It's always just discarded. |
| 273 | """ |
| 274 | |
| 275 | |
| 276 | def run_special_task_actions(job, host, labels, task): |
| 277 | """ |
| 278 | Iterate through all `label`s and run any tests on `host` that `task` has |
| 279 | corresponding to the passed in labels. |
| 280 | |
| 281 | Emits status lines for each run test, and INFO lines for each skipped label. |
| 282 | |
| 283 | @param job: A job object from a control file. |
| 284 | @param host: The host to run actions on. |
| 285 | @param labels: The list of job labels to work on. |
| 286 | @param task: An instance of _SpecialTaskAction. |
| 287 | @returns: None |
| 288 | @raises: SpecialTaskActionException if a test fails. |
| 289 | |
| 290 | """ |
| 291 | capabilities, configuration = filter_labels(labels) |
| 292 | |
| 293 | for label in capabilities: |
| 294 | if task.acts_on(label): |
Fang Deng | af30e7c | 2014-11-15 13:57:03 -0800 | [diff] [blame] | 295 | action_item = task.test_for(label) |
| 296 | success = action_item.execute(job=job, host=host) |
Alex Miller | 667b5f2 | 2014-02-28 15:33:39 -0800 | [diff] [blame] | 297 | if not success: |
| 298 | raise SpecialTaskActionException() |
| 299 | else: |
| 300 | job.record('INFO', None, task.name, |
| 301 | "Can't %s label '%s'." % (task.name, label)) |
| 302 | |
| 303 | for name, value in split_labels(configuration).items(): |
| 304 | if task.acts_on(name): |
Fang Deng | af30e7c | 2014-11-15 13:57:03 -0800 | [diff] [blame] | 305 | action_item = task.test_for(name) |
| 306 | success = action_item.execute(job=job, host=host, value=value) |
Alex Miller | 667b5f2 | 2014-02-28 15:33:39 -0800 | [diff] [blame] | 307 | if not success: |
| 308 | raise SpecialTaskActionException() |
| 309 | else: |
| 310 | job.record('INFO', None, task.name, |
| 311 | "Can't %s label '%s:%s'." % (task.name, name, value)) |
| 312 | |
| 313 | |
Alex Miller | 2229c9c | 2013-08-27 15:20:39 -0700 | [diff] [blame] | 314 | # This has been copied out of dynamic_suite's reimager.py, which no longer |
| 315 | # exists. I'd prefer if this would go away by doing http://crbug.com/249424, |
| 316 | # so that labels are just automatically made when we try to add them to a host. |
Alex Miller | 0516e4c | 2013-06-03 18:07:48 -0700 | [diff] [blame] | 317 | def ensure_label_exists(name): |
| 318 | """ |
| 319 | Ensure that a label called |name| exists in the autotest DB. |
| 320 | |
| 321 | @param name: the label to check for/create. |
| 322 | @raises ValidationError: There was an error in the response that was |
| 323 | not because the label already existed. |
| 324 | |
| 325 | """ |
| 326 | afe = frontend.AFE() |
| 327 | try: |
| 328 | afe.create_label(name=name) |
| 329 | except proxy.ValidationError as ve: |
| 330 | if ('name' in ve.problem_keys and |
| 331 | 'This value must be unique' in ve.problem_keys['name']): |
| 332 | logging.debug('Version label %s already exists', name) |
| 333 | else: |
| 334 | raise ve |