Chris Sosa | 76e44b9 | 2013-01-31 20:11:38 | [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 | """Module contains a list of artifact name related constants and methods.""" |
| 6 | |
| 7 | ############ Artifact Names ############ |
| 8 | |
Chris Sosa | 6b0c617 | 2013-08-06 00:01:33 | [diff] [blame] | 9 | # Note these are the available 'artifacts' that are known to the devserver. If |
| 10 | # you just need to stage a file from gs directly, use the files api. See the |
| 11 | # stage documentation for more info. |
| 12 | |
Chris Sosa | 76e44b9 | 2013-01-31 20:11:38 | [diff] [blame] | 13 | #### Update payload names. #### |
| 14 | |
| 15 | # The name of artifact to stage a full update payload. |
| 16 | FULL_PAYLOAD = 'full_payload' |
| 17 | |
| 18 | # The name of the artifact to stage all delta payloads for a build. |
| 19 | DELTA_PAYLOADS = 'delta_payloads' |
| 20 | |
| 21 | # The payload containing stateful data not stored on the rootfs of the image. |
| 22 | STATEFUL_PAYLOAD = 'stateful' |
| 23 | |
| 24 | #### The following are the names of images to stages. #### |
| 25 | |
| 26 | # The base image i.e. the image without any test/developer enhancements. |
| 27 | BASE_IMAGE = 'base_image' |
| 28 | |
| 29 | # The recovery image - the image used to recover a chromiumos device. |
| 30 | RECOVERY_IMAGE = 'recovery_image' |
| 31 | |
| 32 | # The test image - the base image with both develolper and test enhancements. |
| 33 | TEST_IMAGE = 'test_image' |
| 34 | |
Chris Sosa | 7549080 | 2013-10-01 00:21:45 | [diff] [blame] | 35 | # The developer image - the base image with developer enhancements. |
| 36 | DEV_IMAGE = 'dev_image' |
| 37 | |
David Riley | 0655bab | 2017-11-02 17:44:26 | [diff] [blame] | 38 | # The name of artifact to stage a quick provision payload. |
| 39 | QUICK_PROVISION = 'quick_provision' |
| 40 | |
Chris Sosa | 76e44b9 | 2013-01-31 20:11:38 | [diff] [blame] | 41 | #### Autotest related packages. #### |
| 42 | |
| 43 | # Autotest -- the main autotest directory without the test_suites subdir. |
| 44 | AUTOTEST = 'autotest' |
| 45 | |
Simran Basi | ea0590d | 2014-10-29 18:31:26 | [diff] [blame] | 46 | # Control Files -- the autotest control files without the test_suites subdir. |
| 47 | CONTROL_FILES = 'control_files' |
| 48 | |
| 49 | # Autotest Packages-- the autotest packages subdirectory. |
| 50 | AUTOTEST_PACKAGES = 'autotest_packages' |
| 51 | |
Simran Basi | 6459bba | 2015-02-04 22:47:23 | [diff] [blame] | 52 | # Autotest Server Package. |
| 53 | AUTOTEST_SERVER_PACKAGE = 'autotest_server_package' |
| 54 | |
Chris Sosa | 76e44b9 | 2013-01-31 20:11:38 | [diff] [blame] | 55 | # Test Suites - just the test suites control files from the autotest directory. |
| 56 | TEST_SUITES = 'test_suites' |
| 57 | |
| 58 | # AU Suite - The control files for the autotest autoupdate suite. |
| 59 | AU_SUITE = 'au_suite' |
| 60 | |
Chris Sosa | 968a106 | 2013-08-03 00:42:50 | [diff] [blame] | 61 | # AU Suite - The control files for the paygen autoupdate suite (depends |
| 62 | # on channel defined in devserver_constants). |
| 63 | PAYGEN_AU_SUITE_TEMPLATE = 'paygen_au_%(channel)s_suite' |
Chris Sosa | 5d1b079 | 2013-07-31 17:54:52 | [diff] [blame] | 64 | |
Chris Sosa | 76e44b9 | 2013-01-31 20:11:38 | [diff] [blame] | 65 | #### Miscellaneous artifacts. #### |
| 66 | |
| 67 | # Firmware tarball. |
| 68 | FIRMWARE = 'firmware' |
| 69 | |
| 70 | # Tarball containing debug symbols for the given build. |
| 71 | SYMBOLS = 'symbols' |
| 72 | |
Dan Shi | 55d0f97 | 2016-10-04 18:45:00 | [diff] [blame] | 73 | # A compressed tarball containing only sym files of debug symbols for the |
| 74 | # given build. |
| 75 | SYMBOLS_ONLY = 'symbols_only' |
| 76 | |
beeps | c3d0f87 | 2013-08-01 04:50:40 | [diff] [blame] | 77 | # The factory test image. |
| 78 | FACTORY_IMAGE = 'factory_image' |
Chris Sosa | 76e44b9 | 2013-01-31 20:11:38 | [diff] [blame] | 79 | |
Mike Frysinger | a0e6a28 | 2016-09-01 21:29:08 | [diff] [blame] | 80 | # The factory shim image. |
| 81 | FACTORY_SHIM_IMAGE = 'factory_shim_image' |
| 82 | |
Justin Giorgi | b759052 | 2017-02-07 21:36:24 | [diff] [blame] | 83 | #### Libiota Artifacts. These are in the same namespace as the above. #### |
| 84 | |
| 85 | # Archive with test binaries for flashing to the DUT. |
| 86 | LIBIOTA_TEST_BINARIES = 'libiota_test_binaries' |
| 87 | |
| 88 | # Utilities required for managing the DUT. |
| 89 | LIBIOTA_BOARD_UTILS = 'libiota_board_utils' |
| 90 | |
Gabe Black | 3b56720 | 2015-09-23 21:07:59 | [diff] [blame] | 91 | #### Android artifacts. These are in a different namespace from the above. #### |
| 92 | |
| 93 | # Various android images stored in a zip file (including boot and system). |
| 94 | # For example, shamu-img-2284311.zip contains boot.img, cache.img, recovery.img, |
| 95 | # system.img and userdata.img. fastboot can use the zip file to update the dut |
| 96 | # in a single command. Therefore, devserver does not unzip the zip file to avoid |
| 97 | # unnecessary load on the devserver. |
| 98 | ANDROID_ZIP_IMAGES = 'zip_images' |
| 99 | |
| 100 | # Radio image. |
| 101 | ANDROID_RADIO_IMAGE = 'radio_image' |
| 102 | |
| 103 | # Bootloader image. |
| 104 | ANDROID_BOOTLOADER_IMAGE = 'bootloader_image' |
| 105 | |
| 106 | # fastboot, utility to flash image to Android device. |
| 107 | ANDROID_FASTBOOT = 'fastboot' |
| 108 | |
| 109 | # Test zip file for Android build, e.g., shamu-tests-2284311.zip |
| 110 | ANDROID_TEST_ZIP = 'test_zip' |
| 111 | |
Dan Shi | 74136ae | 2015-12-01 22:40:06 | [diff] [blame] | 112 | # Zip file of vendor partitions used by Brillo device. |
| 113 | ANDROID_VENDOR_PARTITION_ZIP = 'vendor_partitions' |
| 114 | |
Simran Basi | 05be721 | 2016-03-16 20:08:23 | [diff] [blame] | 115 | # Zip file of native tests used by Android devices. |
| 116 | ANDROID_NATIVETESTS_ZIP = 'nativetests' |
Ralph Nathan | 6c7fe5e | 2016-06-22 22:50:10 | [diff] [blame] | 117 | ANDROID_CONTINUOUS_NATIVE_TESTS_ZIP = 'continuous_native_tests' |
Justin Giorgi | bb32ac4 | 2016-08-04 17:34:35 | [diff] [blame] | 118 | ANDROID_CONTINUOUS_INSTRUMENTATION_TESTS_ZIP = ( |
| 119 | 'continuous_instrumentation_tests') |
Justin Giorgi | 4faa890 | 2016-08-20 02:54:30 | [diff] [blame] | 120 | ANDROID_CTS_ZIP = 'android-cts' |
Simran Basi | 05be721 | 2016-03-16 20:08:23 | [diff] [blame] | 121 | |
Justin Giorgi | 576c154 | 2016-06-24 15:24:20 | [diff] [blame] | 122 | # Zip file including all target files and images |
| 123 | ANDROID_TARGET_FILES_ZIP = 'target_files' |
| 124 | |
| 125 | # Zip file containing DTB for emulators |
| 126 | ANDROID_DTB_ZIP = 'dtb' |
| 127 | |
Chris Sosa | 76e44b9 | 2013-01-31 20:11:38 | [diff] [blame] | 128 | # In general, downloading one artifact usually indicates that the caller will |
| 129 | # want to download other artifacts later. The following map explicitly defines |
| 130 | # this relationship. Specifically: |
| 131 | # If X is requested, all items in Y should also get triggered for download. |
Dan Shi | 6c2b2a2 | 2016-03-04 23:52:19 | [diff] [blame] | 132 | CROS_REQUESTED_TO_OPTIONAL_MAP = { |
Simran Basi | 4243a86 | 2014-12-12 20:48:33 | [diff] [blame] | 133 | TEST_SUITES: [CONTROL_FILES, AUTOTEST_PACKAGES], |
Chris Sosa | 76e44b9 | 2013-01-31 20:11:38 | [diff] [blame] | 134 | } |
Dan Shi | 6c2b2a2 | 2016-03-04 23:52:19 | [diff] [blame] | 135 | # Launch Control builds do not support autotest package. |
| 136 | ANDROID_REQUESTED_TO_OPTIONAL_MAP = { |
| 137 | TEST_SUITES: [CONTROL_FILES], |
| 138 | } |
Dan Shi | 2f13686 | 2016-02-11 23:38:38 | [diff] [blame] | 139 | |
| 140 | # Map between the artifact name and the folder after it's unzipped. |
| 141 | ARTIFACT_UNZIP_FOLDER_MAP = { |
| 142 | ANDROID_TEST_ZIP: 'DATA', |
| 143 | } |