def ArchiveHWQual(): """Build and archive the HWQual images.""" # TODO(petermayo): This logic needs to be exported from the BuildTargets # stage rather than copied/re-evaluated here. # TODO(mtennant): Make this autotest_built concept into a run param. autotest_built = ( self._run.options.tests and config['upload_hw_test_artifacts']) if config['hwqual'] and autotest_built: # Build the full autotest tarball for hwqual image. We don't upload it, # as it's fairly large and only needed by the hwqual tarball. logging.info('Archiving full autotest tarball locally ...') logging.info('Running commands.BuildFullAutotestTarball') tarball = commands.BuildFullAutotestTarball( self._build_root, self._current_board, image_dir) self.board_runattrs.SetParallel('autotest_tarball_generated', True) logging.info('Running commands.ArchiveFile') commands.ArchiveFile(tarball, archive_path) # Build hwqual image and upload to Google Storage. hwqual_name = 'chromeos-hwqual-%s-%s' % (board, self.version) logging.info('Running commands.ArchiveHWQual') filename = commands.ArchiveHWQual(buildroot, hwqual_name, archive_path, image_dir) self._release_upload_queue.put([filename]) else: self.board_runattrs.SetParallel('autotest_tarball_generated', True)
def testBuildFullAutotestTarball(self): """Tests that our call to generate the full autotest tarball is correct.""" with mock.patch.object(commands, 'BuildTarball') as m: m.return_value.returncode = 0 commands.BuildFullAutotestTarball(self._buildroot, self._board, self._tarball_dir) m.assert_called_once_with(self._buildroot, ['autotest'], os.path.join(self._tarball_dir, 'autotest.tar.bz2'), cwd=self._cwd, error_code_ok=True)