blob: e891a55621c241d40fbe5f71e29a8e03fad9e427 [file] [log] [blame]
# Copyright (c) 2012 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.
"""This module tests the cros image command."""
from __future__ import print_function
from chromite.cros.commands import cros_build
from chromite.cros.commands import init_unittest
from chromite.lib import cros_build_lib
from chromite.lib import cros_test_lib
from chromite.lib import parallel_unittest
from chromite.lib import partial_mock
from chromite.lib import project
class MockBuildCommand(init_unittest.MockCommand):
"""Mock out the build command."""
TARGET = 'chromite.cros.commands.cros_build.BuildCommand'
TARGET_CLASS = cros_build.BuildCommand
def Run(self, inst):
packages = cros_build.GetToolchainPackages()
self.PatchObject(cros_build, 'GetToolchainPackages', return_value=packages)
with parallel_unittest.ParallelMock():
init_unittest.MockCommand.Run(self, inst)
class BuildCommandTest(cros_test_lib.MockTempDirTestCase):
"""Test class for our BuildCommand class."""
def setUp(self):
p = project.Project(self.tempdir, initial_config={'name': 'foo'})
self.PatchObject(project, 'FindProjectByName', return_value=p)
def testSuccess(self):
"""Test that successful commands work."""
cmds = [['--host', 'power_manager'],
['--board=foo', 'power_manager'],
['--board=foo', '--debug', 'power_manager'],
['--board=foo', '--no-deps', 'power_manager'],
['--board=foo', '--no-chroot-update', 'power_manager']]
for cmd in cmds:
with MockBuildCommand(cmd) as build:
build.inst.Run()
if '--no-deps' not in cmd:
self.assertFalse(build.inst.chroot_update)
def testFailedDeps(self):
"""Test that failures are detected correctly."""
# pylint: disable=protected-access
args = ['--board=foo', 'power_manager']
with MockBuildCommand(args) as build:
cmd = partial_mock.In('--backtrack=0')
build.rc_mock.AddCmdResult(cmd=cmd, returncode=1, error='error\n')
ex = self.assertRaises2(cros_build_lib.RunCommandError, build.inst.Run)
self.assertTrue(cros_build.BuildCommand._BAD_DEPEND_MSG in ex.msg)
def testGetToolchainPackages(self):
"""Test GetToolchainPackages function without mocking."""
packages = cros_build.GetToolchainPackages()
self.assertTrue(packages)