Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 1 | # Copyright (c) 2011 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 | """Helper class for interacting with the Dev Server.""" |
| 6 | |
| 7 | import cherrypy |
| 8 | import distutils.version |
| 9 | import errno |
| 10 | import os |
| 11 | import shutil |
Chris Sosa | ea148d9 | 2012-03-06 16:22:04 -0800 | [diff] [blame] | 12 | import subprocess |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 13 | |
| 14 | |
Chris Sosa | ea148d9 | 2012-03-06 16:22:04 -0800 | [diff] [blame] | 15 | GSUTIL_ATTEMPTS = 5 |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 16 | AU_BASE = 'au' |
| 17 | NTON_DIR_SUFFIX = '_nton' |
| 18 | MTON_DIR_SUFFIX = '_mton' |
| 19 | ROOT_UPDATE = 'update.gz' |
| 20 | STATEFUL_UPDATE = 'stateful.tgz' |
| 21 | TEST_IMAGE = 'chromiumos_test_image.bin' |
| 22 | AUTOTEST_PACKAGE = 'autotest.tar.bz2' |
| 23 | DEV_BUILD_PREFIX = 'dev' |
| 24 | |
| 25 | |
| 26 | class DevServerUtilError(Exception): |
| 27 | """Exception classes used by this module.""" |
| 28 | pass |
| 29 | |
| 30 | |
| 31 | def ParsePayloadList(payload_list): |
| 32 | """Parse and return the full/delta payload URLs. |
| 33 | |
| 34 | Args: |
| 35 | payload_list: A list of Google Storage URLs. |
| 36 | |
| 37 | Returns: |
| 38 | Tuple of 3 payloads URLs: (full, nton, mton). |
| 39 | |
| 40 | Raises: |
| 41 | DevServerUtilError: If payloads missing or invalid. |
| 42 | """ |
| 43 | full_payload_url = None |
| 44 | mton_payload_url = None |
| 45 | nton_payload_url = None |
| 46 | for payload in payload_list: |
| 47 | if '_full_' in payload: |
| 48 | full_payload_url = payload |
| 49 | elif '_delta_' in payload: |
| 50 | # e.g. chromeos_{from_version}_{to_version}_x86-generic_delta_dev.bin |
| 51 | from_version, to_version = payload.rsplit('/', 1)[1].split('_')[1:3] |
| 52 | if from_version == to_version: |
| 53 | nton_payload_url = payload |
| 54 | else: |
| 55 | mton_payload_url = payload |
| 56 | |
| 57 | if not full_payload_url or not nton_payload_url or not mton_payload_url: |
| 58 | raise DevServerUtilError( |
| 59 | 'Payloads are missing or have unexpected name formats.', payload_list) |
| 60 | |
| 61 | return full_payload_url, nton_payload_url, mton_payload_url |
| 62 | |
| 63 | |
| 64 | def DownloadBuildFromGS(staging_dir, archive_url, build): |
| 65 | """Downloads the specified build from Google Storage into a temp directory. |
| 66 | |
| 67 | The archive is expected to contain stateful.tgz, autotest.tar.bz2, and three |
| 68 | payloads: full, N-1->N, and N->N. gsutil is used to download the file. |
| 69 | gsutil must be in the path and should have required credentials. |
| 70 | |
| 71 | Args: |
| 72 | staging_dir: Temp directory containing payloads and autotest packages. |
| 73 | archive_url: Google Storage path to the build directory. |
Frank Farzan | bcb571e | 2012-01-03 11:48:17 -0800 | [diff] [blame] | 74 | e.g. gs://chromeos-image-archive/x86-generic/R17-1208.0.0-a1-b338. |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 75 | build: Full build string to look for; e.g. R17-1208.0.0-a1-b338. |
| 76 | |
| 77 | Raises: |
| 78 | DevServerUtilError: If any steps in the process fail to complete. |
| 79 | """ |
Chris Sosa | ea148d9 | 2012-03-06 16:22:04 -0800 | [diff] [blame] | 80 | def GSUtilRun(cmd, err_msg): |
| 81 | """Runs a GSUTIL command up to GSUTIL_ATTEMPTS number of times. |
| 82 | |
| 83 | Raises: |
| 84 | subprocess.CalledProcessError if all attempt to run gsutil cmd fails. |
| 85 | """ |
| 86 | proc = None |
| 87 | for _attempt in range(GSUTIL_ATTEMPTS): |
| 88 | proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE) |
| 89 | stdout, _stderr = proc.communicate() |
| 90 | if proc.returncode == 0: |
| 91 | return stdout |
| 92 | else: |
| 93 | raise DevServerUtilError('%s GSUTIL cmd %s failed with return code %d' % ( |
| 94 | err_msg, cmd, proc.returncode)) |
| 95 | |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 96 | # Get a list of payloads from Google Storage. |
| 97 | cmd = 'gsutil ls %s/*.bin' % archive_url |
| 98 | msg = 'Failed to get a list of payloads.' |
Chris Sosa | ea148d9 | 2012-03-06 16:22:04 -0800 | [diff] [blame] | 99 | stdout = GSUtilRun(cmd, msg) |
Brian Harring | a99a3f6 | 2012-02-24 10:38:22 -0800 | [diff] [blame] | 100 | |
| 101 | payload_list = stdout.splitlines() |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 102 | full_payload_url, nton_payload_url, mton_payload_url = ( |
| 103 | ParsePayloadList(payload_list)) |
| 104 | |
| 105 | # Create temp directories for payloads. |
| 106 | nton_payload_dir = os.path.join(staging_dir, AU_BASE, build + NTON_DIR_SUFFIX) |
| 107 | os.makedirs(nton_payload_dir) |
| 108 | mton_payload_dir = os.path.join(staging_dir, AU_BASE, build + MTON_DIR_SUFFIX) |
| 109 | os.mkdir(mton_payload_dir) |
| 110 | |
| 111 | # Download build components into respective directories. |
| 112 | src = [full_payload_url, |
| 113 | nton_payload_url, |
| 114 | mton_payload_url, |
| 115 | archive_url + '/' + STATEFUL_UPDATE, |
| 116 | archive_url + '/' + AUTOTEST_PACKAGE] |
| 117 | dst = [os.path.join(staging_dir, ROOT_UPDATE), |
| 118 | os.path.join(nton_payload_dir, ROOT_UPDATE), |
| 119 | os.path.join(mton_payload_dir, ROOT_UPDATE), |
| 120 | staging_dir, |
| 121 | staging_dir] |
| 122 | for src, dest in zip(src, dst): |
| 123 | cmd = 'gsutil cp %s %s' % (src, dest) |
| 124 | msg = 'Failed to download "%s".' % src |
Chris Sosa | ea148d9 | 2012-03-06 16:22:04 -0800 | [diff] [blame] | 125 | GSUtilRun(cmd, msg) |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 126 | |
| 127 | |
| 128 | def InstallBuild(staging_dir, build_dir): |
| 129 | """Installs various build components from staging directory. |
| 130 | |
| 131 | Specifically, the following components are installed: |
| 132 | - update.gz |
| 133 | - stateful.tgz |
| 134 | - chromiumos_test_image.bin |
| 135 | - The entire contents of the au directory. Symlinks are generated for each |
| 136 | au payload as well. |
| 137 | - Contents of autotest-pkgs directory. |
| 138 | - Control files from autotest/server/{tests, site_tests} |
| 139 | |
| 140 | Args: |
| 141 | staging_dir: Temp directory containing payloads and autotest packages. |
| 142 | build_dir: Directory to install build components into. |
| 143 | """ |
| 144 | install_list = [ROOT_UPDATE, STATEFUL_UPDATE] |
| 145 | |
| 146 | # Create blank chromiumos_test_image.bin. Otherwise the Dev Server will |
| 147 | # try to rebuild it unnecessarily. |
| 148 | test_image = os.path.join(build_dir, TEST_IMAGE) |
| 149 | open(test_image, 'a').close() |
| 150 | |
| 151 | # Install AU payloads. |
| 152 | au_path = os.path.join(staging_dir, AU_BASE) |
| 153 | install_list.append(AU_BASE) |
| 154 | # For each AU payload, setup symlinks to the main payloads. |
| 155 | cwd = os.getcwd() |
| 156 | for au in os.listdir(au_path): |
| 157 | os.chdir(os.path.join(au_path, au)) |
| 158 | os.symlink(os.path.join(os.pardir, os.pardir, TEST_IMAGE), TEST_IMAGE) |
| 159 | os.symlink(os.path.join(os.pardir, os.pardir, STATEFUL_UPDATE), |
| 160 | STATEFUL_UPDATE) |
| 161 | os.chdir(cwd) |
| 162 | |
| 163 | for component in install_list: |
| 164 | shutil.move(os.path.join(staging_dir, component), build_dir) |
| 165 | |
Scott Zawalski | 4647ce6 | 2012-01-03 17:17:28 -0500 | [diff] [blame] | 166 | shutil.move(os.path.join(staging_dir, 'autotest'), |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 167 | os.path.join(build_dir, 'autotest')) |
| 168 | |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 169 | |
| 170 | def PrepareAutotestPkgs(staging_dir): |
| 171 | """Create autotest client packages inside staging_dir. |
| 172 | |
| 173 | Args: |
| 174 | staging_dir: Temp directory containing payloads and autotest packages. |
| 175 | |
| 176 | Raises: |
| 177 | DevServerUtilError: If any steps in the process fail to complete. |
| 178 | """ |
| 179 | cmd = ('tar xf %s --use-compress-prog=pbzip2 --directory=%s' % |
| 180 | (os.path.join(staging_dir, AUTOTEST_PACKAGE), staging_dir)) |
| 181 | msg = 'Failed to extract autotest.tar.bz2 ! Is pbzip2 installed?' |
| 182 | try: |
Brian Harring | a99a3f6 | 2012-02-24 10:38:22 -0800 | [diff] [blame] | 183 | subprocess.check_call(cmd, shell=True) |
| 184 | except subprocess.CalledProcessError, e: |
| 185 | raise DevServerUtilError('%s %s' % (msg, e)) |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 186 | |
Scott Zawalski | 4647ce6 | 2012-01-03 17:17:28 -0500 | [diff] [blame] | 187 | # Use the root of Autotest |
| 188 | autotest_pkgs_dir = os.path.join(staging_dir, 'autotest', 'packages') |
| 189 | if not os.path.exists(autotest_pkgs_dir): |
| 190 | os.makedirs(autotest_pkgs_dir) |
Chris Sosa | e152599 | 2012-03-12 16:55:56 -0700 | [diff] [blame] | 191 | |
| 192 | if not os.path.exists(os.path.join(autotest_pkgs_dir, 'packages.checksum')): |
| 193 | cmd_list = ['autotest/utils/packager.py', |
| 194 | 'upload', '--repository', autotest_pkgs_dir, '--all'] |
| 195 | msg = 'Failed to create autotest packages!' |
| 196 | try: |
| 197 | subprocess.check_call(' '.join(cmd_list), cwd=staging_dir, shell=True) |
| 198 | except subprocess.CalledProcessError, e: |
| 199 | raise DevServerUtilError('%s %s' % (msg, e)) |
| 200 | else: |
| 201 | cherrypy.log('Using pre-generated packages from autotest', 'DEVSERVER_UTIL') |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 202 | |
| 203 | |
| 204 | def SafeSandboxAccess(static_dir, path): |
| 205 | """Verify that the path is in static_dir. |
| 206 | |
| 207 | Args: |
| 208 | static_dir: Directory where builds are served from. |
| 209 | path: Path to verify. |
| 210 | |
| 211 | Returns: |
| 212 | True if path is in static_dir, False otherwise |
| 213 | """ |
| 214 | static_dir = os.path.realpath(static_dir) |
| 215 | path = os.path.realpath(path) |
| 216 | return (path.startswith(static_dir) and path != static_dir) |
| 217 | |
| 218 | |
| 219 | def AcquireLock(static_dir, tag): |
| 220 | """Acquires a lock for a given tag. |
| 221 | |
| 222 | Creates a directory for the specified tag, telling other |
| 223 | components the resource/task represented by the tag is unavailable. |
| 224 | |
| 225 | Args: |
| 226 | static_dir: Directory where builds are served from. |
| 227 | tag: Unique resource/task identifier. Use '/' for nested tags. |
| 228 | |
| 229 | Returns: |
| 230 | Path to the created directory or None if creation failed. |
| 231 | |
| 232 | Raises: |
| 233 | DevServerUtilError: If lock can't be acquired. |
| 234 | """ |
| 235 | build_dir = os.path.join(static_dir, tag) |
| 236 | if not SafeSandboxAccess(static_dir, build_dir): |
| 237 | raise DevServerUtilError('Invaid tag "%s".' % tag) |
| 238 | |
| 239 | try: |
| 240 | os.makedirs(build_dir) |
| 241 | except OSError, e: |
| 242 | if e.errno == errno.EEXIST: |
| 243 | raise DevServerUtilError(str(e)) |
| 244 | else: |
| 245 | raise |
| 246 | |
| 247 | return build_dir |
| 248 | |
| 249 | |
| 250 | def ReleaseLock(static_dir, tag): |
| 251 | """Releases the lock for a given tag. Removes lock directory content. |
| 252 | |
| 253 | Args: |
| 254 | static_dir: Directory where builds are served from. |
| 255 | tag: Unique resource/task identifier. Use '/' for nested tags. |
| 256 | |
| 257 | Raises: |
| 258 | DevServerUtilError: If lock can't be released. |
| 259 | """ |
| 260 | build_dir = os.path.join(static_dir, tag) |
| 261 | if not SafeSandboxAccess(static_dir, build_dir): |
| 262 | raise DevServerUtilError('Invaid tag "%s".' % tag) |
| 263 | |
| 264 | shutil.rmtree(build_dir) |
| 265 | |
| 266 | |
| 267 | def FindMatchingBoards(static_dir, board): |
| 268 | """Returns a list of boards given a partial board name. |
| 269 | |
| 270 | Args: |
| 271 | static_dir: Directory where builds are served from. |
| 272 | board: Partial board name for this build; e.g. x86-generic. |
| 273 | |
| 274 | Returns: |
| 275 | Returns a list of boards given a partial board. |
| 276 | """ |
| 277 | return [brd for brd in os.listdir(static_dir) if board in brd] |
| 278 | |
| 279 | |
| 280 | def FindMatchingBuilds(static_dir, board, build): |
| 281 | """Returns a list of matching builds given a board and partial build. |
| 282 | |
| 283 | Args: |
| 284 | static_dir: Directory where builds are served from. |
| 285 | board: Partial board name for this build; e.g. x86-generic-release. |
| 286 | build: Partial build string to look for; e.g. R17-1234. |
| 287 | |
| 288 | Returns: |
| 289 | Returns a list of (board, build) tuples given a partial board and build. |
| 290 | """ |
| 291 | matches = [] |
| 292 | for brd in FindMatchingBoards(static_dir, board): |
| 293 | a = [(brd, bld) for bld in |
| 294 | os.listdir(os.path.join(static_dir, brd)) if build in bld] |
| 295 | matches.extend(a) |
| 296 | return matches |
| 297 | |
| 298 | |
| 299 | def GetLatestBuildVersion(static_dir, board): |
| 300 | """Retrieves the latest build version for a given board. |
| 301 | |
| 302 | Args: |
| 303 | static_dir: Directory where builds are served from. |
| 304 | board: Board name for this build; e.g. x86-generic-release. |
| 305 | |
| 306 | Returns: |
| 307 | Full build string; e.g. R17-1234.0.0-a1-b983. |
| 308 | """ |
| 309 | builds = [distutils.version.LooseVersion(build) for build in |
| 310 | os.listdir(os.path.join(static_dir, board))] |
| 311 | return str(max(builds)) |
| 312 | |
| 313 | |
| 314 | def FindBuild(static_dir, board, build): |
| 315 | """Given partial build and board ids, figure out the appropriate build. |
| 316 | |
| 317 | Args: |
| 318 | static_dir: Directory where builds are served from. |
| 319 | board: Partial board name for this build; e.g. x86-generic. |
| 320 | build: Partial build string to look for; e.g. R17-1234 or "latest" to |
| 321 | return the latest build for for most newest board. |
| 322 | |
| 323 | Returns: |
| 324 | Tuple of (board, build): |
| 325 | board: Fully qualified board name; e.g. x86-generic-release |
| 326 | build: Fully qualified build string; e.g. R17-1234.0.0-a1-b983 |
| 327 | |
| 328 | Raises: |
| 329 | DevServerUtilError: If no boards, no builds, or too many builds |
| 330 | are matched. |
| 331 | """ |
| 332 | if build.lower() == 'latest': |
| 333 | boards = FindMatchingBoards(static_dir, board) |
| 334 | if not boards: |
| 335 | raise DevServerUtilError( |
| 336 | 'No boards matching %s could be found on the Dev Server.' % board) |
| 337 | |
| 338 | if len(boards) > 1: |
| 339 | raise DevServerUtilError( |
| 340 | 'The given board name is ambiguous. Disambiguate by using one of' |
| 341 | ' these instead: %s' % ', '.join(boards)) |
| 342 | |
| 343 | build = GetLatestBuildVersion(static_dir, board) |
| 344 | else: |
| 345 | builds = FindMatchingBuilds(static_dir, board, build) |
| 346 | if not builds: |
| 347 | raise DevServerUtilError( |
| 348 | 'No builds matching %s could be found for board %s.' % ( |
| 349 | build, board)) |
| 350 | |
| 351 | if len(builds) > 1: |
| 352 | raise DevServerUtilError( |
| 353 | 'The given build id is ambiguous. Disambiguate by using one of' |
| 354 | ' these instead: %s' % ', '.join([b[1] for b in builds])) |
| 355 | |
| 356 | board, build = builds[0] |
| 357 | |
| 358 | return board, build |
| 359 | |
| 360 | |
| 361 | def CloneBuild(static_dir, board, build, tag, force=False): |
| 362 | """Clone an official build into the developer sandbox. |
| 363 | |
| 364 | Developer sandbox directory must already exist. |
| 365 | |
| 366 | Args: |
| 367 | static_dir: Directory where builds are served from. |
| 368 | board: Fully qualified board name; e.g. x86-generic-release. |
| 369 | build: Fully qualified build string; e.g. R17-1234.0.0-a1-b983. |
| 370 | tag: Unique resource/task identifier. Use '/' for nested tags. |
| 371 | force: Force re-creation of build_dir even if it already exists. |
| 372 | |
| 373 | Returns: |
| 374 | The path to the new build. |
| 375 | """ |
| 376 | # Create the developer build directory. |
| 377 | dev_static_dir = os.path.join(static_dir, DEV_BUILD_PREFIX) |
| 378 | dev_build_dir = os.path.join(dev_static_dir, tag) |
| 379 | official_build_dir = os.path.join(static_dir, board, build) |
| 380 | cherrypy.log('Cloning %s -> %s' % (official_build_dir, dev_build_dir), |
| 381 | 'DEVSERVER_UTIL') |
| 382 | dev_build_exists = False |
| 383 | try: |
| 384 | AcquireLock(dev_static_dir, tag) |
| 385 | except DevServerUtilError: |
| 386 | dev_build_exists = True |
| 387 | if force: |
| 388 | dev_build_exists = False |
| 389 | ReleaseLock(dev_static_dir, tag) |
| 390 | AcquireLock(dev_static_dir, tag) |
| 391 | |
| 392 | # Make a copy of the official build, only take necessary files. |
| 393 | if not dev_build_exists: |
| 394 | copy_list = [TEST_IMAGE, ROOT_UPDATE, STATEFUL_UPDATE] |
| 395 | for f in copy_list: |
| 396 | shutil.copy(os.path.join(official_build_dir, f), dev_build_dir) |
| 397 | |
| 398 | return dev_build_dir |
| 399 | |
Scott Zawalski | 84a39c9 | 2012-01-13 15:12:42 -0500 | [diff] [blame] | 400 | |
| 401 | def GetControlFile(static_dir, build, control_path): |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 402 | """Attempts to pull the requested control file from the Dev Server. |
| 403 | |
| 404 | Args: |
| 405 | static_dir: Directory where builds are served from. |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 406 | build: Fully qualified build string; e.g. R17-1234.0.0-a1-b983. |
| 407 | control_path: Path to control file on Dev Server relative to Autotest root. |
| 408 | |
| 409 | Raises: |
| 410 | DevServerUtilError: If lock can't be acquired. |
| 411 | |
| 412 | Returns: |
| 413 | Content of the requested control file. |
| 414 | """ |
Scott Zawalski | 1572d15 | 2012-01-16 14:36:02 -0500 | [diff] [blame] | 415 | # Be forgiving if the user passes in the control_path with a leading / |
| 416 | control_path = control_path.lstrip('/') |
Scott Zawalski | 84a39c9 | 2012-01-13 15:12:42 -0500 | [diff] [blame] | 417 | control_path = os.path.join(static_dir, build, 'autotest', |
Scott Zawalski | 4647ce6 | 2012-01-03 17:17:28 -0500 | [diff] [blame] | 418 | control_path) |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 419 | if not SafeSandboxAccess(static_dir, control_path): |
| 420 | raise DevServerUtilError('Invaid control file "%s".' % control_path) |
| 421 | |
Scott Zawalski | 84a39c9 | 2012-01-13 15:12:42 -0500 | [diff] [blame] | 422 | if not os.path.exists(control_path): |
| 423 | # TODO(scottz): Come up with some sort of error mechanism. |
| 424 | # crosbug.com/25040 |
| 425 | return 'Unknown control path %s' % control_path |
| 426 | |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 427 | with open(control_path, 'r') as control_file: |
| 428 | return control_file.read() |
| 429 | |
| 430 | |
Scott Zawalski | 84a39c9 | 2012-01-13 15:12:42 -0500 | [diff] [blame] | 431 | def GetControlFileList(static_dir, build): |
Scott Zawalski | 4647ce6 | 2012-01-03 17:17:28 -0500 | [diff] [blame] | 432 | """List all control|control. files in the specified board/build path. |
| 433 | |
| 434 | Args: |
| 435 | static_dir: Directory where builds are served from. |
Scott Zawalski | 4647ce6 | 2012-01-03 17:17:28 -0500 | [diff] [blame] | 436 | build: Fully qualified build string; e.g. R17-1234.0.0-a1-b983. |
| 437 | |
| 438 | Raises: |
| 439 | DevServerUtilError: If path is outside of sandbox. |
| 440 | |
| 441 | Returns: |
| 442 | String of each file separated by a newline. |
| 443 | """ |
Scott Zawalski | 1572d15 | 2012-01-16 14:36:02 -0500 | [diff] [blame] | 444 | autotest_dir = os.path.join(static_dir, build, 'autotest/') |
Scott Zawalski | 4647ce6 | 2012-01-03 17:17:28 -0500 | [diff] [blame] | 445 | if not SafeSandboxAccess(static_dir, autotest_dir): |
| 446 | raise DevServerUtilError('Autotest dir not in sandbox "%s".' % autotest_dir) |
| 447 | |
| 448 | control_files = set() |
Scott Zawalski | 84a39c9 | 2012-01-13 15:12:42 -0500 | [diff] [blame] | 449 | if not os.path.exists(autotest_dir): |
| 450 | # TODO(scottz): Come up with some sort of error mechanism. |
| 451 | # crosbug.com/25040 |
| 452 | return 'Unknown build path %s' % autotest_dir |
| 453 | |
Scott Zawalski | 4647ce6 | 2012-01-03 17:17:28 -0500 | [diff] [blame] | 454 | for entry in os.walk(autotest_dir): |
| 455 | dir_path, _, files = entry |
| 456 | for file_entry in files: |
| 457 | if file_entry.startswith('control.') or file_entry == 'control': |
| 458 | control_files.add(os.path.join(dir_path, |
Chris Sosa | ea148d9 | 2012-03-06 16:22:04 -0800 | [diff] [blame] | 459 | file_entry).replace(autotest_dir, '')) |
Scott Zawalski | 4647ce6 | 2012-01-03 17:17:28 -0500 | [diff] [blame] | 460 | |
| 461 | return '\n'.join(control_files) |
| 462 | |
| 463 | |
Frank Farzan | 37761d1 | 2011-12-01 14:29:08 -0800 | [diff] [blame] | 464 | def ListAutoupdateTargets(static_dir, board, build): |
| 465 | """Returns a list of autoupdate test targets for the given board, build. |
| 466 | |
| 467 | Args: |
| 468 | static_dir: Directory where builds are served from. |
| 469 | board: Fully qualified board name; e.g. x86-generic-release. |
| 470 | build: Fully qualified build string; e.g. R17-1234.0.0-a1-b983. |
| 471 | |
| 472 | Returns: |
| 473 | List of autoupdate test targets; e.g. ['0.14.747.0-r2bf8859c-b2927_nton'] |
| 474 | """ |
| 475 | return os.listdir(os.path.join(static_dir, board, build, AU_BASE)) |