1# Copyright 2017 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 5AUTHOR = "mruthven" 6NAME = "firmware_Cr50Update.post_install" 7PURPOSE = "Verify Cr50 update" 8ATTRIBUTES = "suite:faft_cr50_experimental" 9TIME = "SHORT" 10TEST_TYPE = "server" 11DEPENDENCIES = "servo_state:WORKING" 12PY_VERSION = 3 13 14DOC = """ 15This test verifies Cr50 update works or recovery from erased nvmem. 16 17To test postinstall cr50 update script set test to "post_install" or use 18firmware_Cr50Update.post_install. To test the startup script leave the test arg 19blank 20 21The test will rollback to the oldest Cr50 image and then verify each update to 22the next newest image runs successfully. If testing post install, the test will 23update using cr50-update.sh. If testing the startup script the updates will be 24run with cr50-update.conf after reboot.. 25 26The old release needs to have a version lower than the release image. The 27release image needs to have a version lower than the dev image. The dev image 28has to be newer than all of the images including the original cr50 image on 29the dut to be able to guarantee that the original state can be restored. 30 31If no_release path or old_release_path are given, the test will use 32old_release_ver and release_ver to fetch the images from gs://. 33 34If a valid path is given the version will be ignored. For example 35release_path='/tmp/cr50.bin.prod' or release_ver='0.0.23/ZZAF:ffffffff:7f00' 36could be used. The test will attempt to get the cr50 image from 37/tmp/cr50.bin.prod first. If that doesn't exist then it will download the 38version .23 image stored in google cloud storage. The version string needs to 39contain the epoch, major, and minor versions separated by '.' and the image 40board id. The image board id is optional. The tests can be run against all 41versions since '0.0.13'. 42 43If cr50_dbg_image_path is not specified, then the test will get the cr50 44devids and attempt to get the debug image from gs://. 45 46After the test is complete the original Cr50 image will be reflashed onto the 47device. 48 49@param iterations: the number of iterations to run 50@param cr50_dbg_image_path: the location of the DBG image. Must be built with 51 CR50_DEV=1 52@param release_path: the location of the release image 53@param release_ver: RW and BID version string used to fetch the image from gs 54@param old_release_path: the location of the old release image. 55@param old_release_ver: RW version string used to fetch the image from gs 56@param test: string representing the update type. use "post_install" if the test 57 should verify the cr50-update.sh post install script. Anything else 58 the test will run using the cr50-update.conf startup script. 59""" 60 61from autotest_lib.client.common_lib import error 62from autotest_lib.server import utils 63 64if 'args_dict' not in locals(): 65 args_dict = {} 66 67args_dict.update(utils.args_to_dict(args)) 68servo_args = hosts.CrosHost.get_servo_arguments(args_dict) 69 70iterations = int(args_dict.get("iterations", 1)) 71old_release_path = args_dict.get("old_release_path", "") 72old_release_ver = args_dict.get("old_release_ver", "") 73release_path = args_dict.get("release_path", "") 74release_ver = args_dict.get("release_ver", "") 75 76def run(machine): 77 host = hosts.create_host(machine, servo_args=servo_args) 78 79 job.run_test("firmware_Cr50Update", host=host, cmdline_args=args, 80 release_path=release_path, release_ver=release_ver, 81 old_release_path=old_release_path, 82 old_release_ver=old_release_ver, test="post_install", 83 iterations=iterations, full_args=args_dict) 84 85parallel_simple(run, machines) 86