blob: 658ca193425ed20063b1aed90c2249dff22093e7 [file] [log] [blame]
#!/usr/bin/python
#
# 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.
"""Test battery communication.
The test uses cros.factory.device.power to get battery design capacity.
"""
import logging
import unittest
import factory_common # pylint: disable=unused-import
from cros.factory.device import device_utils
from cros.factory.utils.arg_utils import Arg
class BoardBatteryTest(unittest.TestCase):
"""Tests board battery communication."""
ARGS = [
Arg('design_capacity_range', tuple,
'Expected battery design capacity range in mAh.',
default=(1000, 10000)),
]
def setUp(self):
self.dut = device_utils.CreateDUTInterface()
def runTest(self):
lower, upper = self.args.design_capacity_range
capacity = self.dut.power.GetBatteryDesignCapacity()
logging.info('Get battery design capacity: %d', capacity)
self.assertTrue(
lower <= capacity <= upper,
'Battery design capacity %d out of range: %s' % (
capacity, str(self.args.design_capacity_range)))