blob: ce7cf9de3ad0123f551cba730304c61a8c43163b [file] [log] [blame]
# Copyright (c) 2014 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.
import logging
import os
from autotest_lib.client.bin import utils, test
from autotest_lib.client.common_lib import error
ROOTFS_SIZE = 2 * 1024 * 1024 * 1024
class platform_PartitionCheck(test.test):
"""
Verify partition size is correct.
"""
version = 1
def isRemovable(self, device):
"""
Check if the block device is removable.
Args:
@param device: string, name of the block device.
Returns:
bool, True if device is removable.
"""
# Construct a pathname to 'removable' for this device
removable_file = os.path.join('/sys', 'block', device, 'removable')
return int(utils.read_one_line(removable_file)) == 1
def get_block_size(self, device):
"""
Check the block size of a block device.
Args:
@param device: string, name of the block device.
Returns:
int, size of block in bytes.
"""
# Construct a pathname to find the logic block size for this device
sysfs_path = os.path.join('/sys', 'block', device,
'queue', 'logical_block_size')
return int(utils.read_one_line(sysfs_path))
def get_partition_size(self, device, partition):
"""
Get the number of blocks in the partition.
Args:
@param device: string, name of the block device.
@param partition: string, partition name
Returns:
int, number of blocks
"""
part_file = os.path.join('/sys', 'block', device, partition, 'size')
part_blocks = int(utils.read_one_line(part_file))
return part_blocks
def run_once(self):
errors = []
mmcpath = '/sys/block/mmcblk0'
if os.path.exists(mmcpath) and (not self.isRemovable('mmcblk0')):
device = 'mmcblk0'
partitions = ['mmcblk0p3', 'mmcblk0p5']
else:
device = 'sda'
partitions = ['sda3', 'sda5']
block_size = self.get_block_size(device)
for p in partitions:
pblocks = self.get_partition_size(device, p)
psize = pblocks * block_size
if psize != ROOTFS_SIZE:
errmsg = ('%s is %d bytes, expected %d' %
(p, psize, ROOTFS_SIZE))
logging.warning(errmsg)
errors.append(errmsg)
# If self.error is not zero, there were errors.
if errors:
raise error.TestFail('There were %d partition errors: %s' %
(len(errors), ': '.join(errors)))