# Copyright 2018 The Chromium OS Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. from autotest_lib.client.common_lib import error from autotest_lib.client.common_lib.cros import tpm_utils from autotest_lib.server import autotest from autotest_lib.server.cros.update_engine import update_engine_test class autoupdate_NonBlockingOOBEUpdate(update_engine_test.UpdateEngineTest): """Try a non-forced autoupdate during OOBE.""" version = 1 _NON_CRITICAL_ERROR = 'finished OmahaRequestAction with code ' \ 'ErrorCode::kNonCriticalUpdateInOOBE' def cleanup(self): self._host.run('rm %s' % self._CUSTOM_LSB_RELEASE, ignore_status=True) super(autoupdate_NonBlockingOOBEUpdate, self).cleanup() def run_once(self, full_payload=True, job_repo_url=None): """ Trys an autoupdate during ChromeOS OOBE without a deadline. @param full_payload: True for a full payload. False for delta. @param job_repo_url: Used for debugging locally. This is used to figure out the current build and the devserver to use. The test will read this from a host argument when run in the lab. """ tpm_utils.ClearTPMOwnerRequest(self._host) self._host.run('ls /home/chronos/.oobe_completed', ignore_status=True) # veyron_rialto is a medical device with a different OOBE that auto # completes so this test is not valid on that device. if 'veyron_rialto' in self._host.get_board(): raise error.TestNAError('Rialto has a custom OOBE. Skipping test.') update_url = self.get_update_url_for_test(job_repo_url, full_payload=full_payload, critical_update=False) # Call client test to start the OOBE update. client_at = autotest.Autotest(self._host) client_at.run_test('autoupdate_StartOOBEUpdate', image_url=update_url, full_payload=full_payload, critical_update=False) # Ensure that the update failed as expected. err_str = 'Update did not fail with kNonCriticalUpdateInOOBE' self._check_update_engine_log_for_entry(self._NON_CRITICAL_ERROR, raise_error=True, err_str=err_str)