nfstest.test_util (3) - Linux Manuals

nfstest.test_util: Test utilities module

NAME

nfstest.test_util - Test utilities module

DESCRIPTION

Provides a set of tools for testing either the NFS client or the NFS server, most of the functionality is focused mainly on testing the client. These tools include the following:


 - Process command line arguments
 - Provide functionality for PASS/FAIL
 - Provide test grouping functionality
 - Provide multiple client support
 - Logging mechanism
 - Debug info control
 - Mount/Unmount control
 - Create files/directories
 - Provide mechanism to start a packet trace
 - Provide mechanism to simulate a network partition
 - Support for pNFS testing

In order to use some of the functionality available, the user id in all the client hosts must have access to run commands as root using the 'sudo' command without the need for a password, this includes the host where the test is being executed. This is used to run commands like 'mount' and 'umount'. Furthermore, the user id must be able to ssh to remote hosts without the need for a password if test requires the use of multiple clients.

Network partition is simulated by the use of 'iptables', please be advised that after every test run the iptables is flushed and reset so any rules previously setup will be lost. Currently, there is no mechanism to restore the iptables rules to their original state.

CLASSES

class TestUtil(nfstest.nfs_util.NFSUtil)

TestUtil object

TestUtil() -> New server object

Usage:
    x = TestUtil()

    # Process command line options
    x.scan_options()

    # Start packet trace using tcpdump
    x.trace_start()

    # Mount volume
    x.mount()

    # Create file
    x.create_file()

    # Unmount volume
    x.umount()

    # Stop packet trace
    x.trace_stop()

    # Exit script
    x.exit()


Methods defined here:
---------------------

__del__(self)
Destructor

Gracefully stop the packet trace, cleanup files, unmount volume,
and reset network.

__init__(self, **kwargs)
Constructor

Initialize object's private data.

sid:
Test script ID [default: ''] This is used to have options targeted for a given ID without including these options in any other test script.
usage:
Usage string [default: '']
testnames:
List of test names [default: []] When this list is not empty, the --runtest option is enabled and test scripts should use the run_tests() method to run all the tests. Test script should have methods named as <testname>_test.
testgroups:
Dictionary of test groups where the key is the name of the test group and its value is a dictionary having the following keys: tests: A list of tests belonging to this test group desc: Description of the test group, this is displayed in the help if the name of the test group is also included in testnames tincl: Include a comma separated list of tests belonging to this test group to the description [default: False] wrap: Reformat the description so it fits in lines no more than the width given. The description is not formatted for a value of zero [default: 72]
Example: x = TestUtil(testnames=['basic', 'lock']) # The following methods should exist: x.basic_test() x.lock_test()
abspath(self, filename, dir=None) Return the absolute path for the given file name. cleanup(self) Clean up test environment. Remove any files created: test files, trace files. close_files(self) Close all files opened by open_files(). config(self, msg) Display config message and terminate test with an exit value of 2. create_dir(self, dir=None, mode=493) Create a directory under the given directory with the given mode. create_file(self, offset=0, size=None, dir=None, mode=None, **kwds) Create a file starting to write at given offset with total size of written data given by the size option.
offset:
File offset where data will be written to [default: 0]
size:
Total number of bytes to write [default: --filesize option]
dir:
Create file under this directory
mode:
File permissions [default: use default OS permissions]
pattern:
Data pattern to write to the file [default: data_pattern default]
ftype:
File type to create [default: FTYPE_FILE]
hole_list:
List of offsets where each hole is located [default: None]
hole_size:
Size of each hole [default: --wsize option]
Returns the file name created, the file name is also stored in the object attribute filename -- attribute absfile is also available as the absolute path of the file just created. File created is removed at cleanup.
data_pattern(self, offset, size, pattern=None) Return data pattern.
offset:
Starting offset of pattern
size:
Size of data to return
pattern:
Data pattern to return, default is of the form: hex_offset(0x%08X) abcdefghijklmnopqrst
delay_io(self, delay=None) Delay I/O by value given or the value given in --iodelay option. exit(self) Terminate script with an exit value of 0 when all tests passed and a value of 1 when there is at least one test failure. get_dirname(self, dir=None) Return a unique directory name under the given directory. get_filename(self, dir=None) Return a unique file name under the given directory. get_logname(self) Get next log file name. get_name(self) Get unique name for this instance. lock_files(self, lock_type=None, offset=0, length=0) Lock all files opened by open_files(). open_files(self, mode, create=True) Open files according to given mode, the file descriptors are saved internally to be used with write_files(), read_files() and close_files(). The number of files to open is controlled by the command line option '--nfiles'. The mode could be either 'r' or 'w' for opening files for reading or writing respectively. The open flags for mode 'r' is O_RDONLY while for mode 'w' is O_WRONLY|O_CREAT|O_SYNC. The O_SYNC is used to avoid the client buffering the written data. read_files(self) Read a block of data (size given by --rsize) from all files opened by open_files() for reading. run_tests(self, **kwargs) Run all test specified by the --runtest option.
testnames:
List of testnames to run [default: all tests given by --testnames]
All other arguments given are passed to the test methods.
scan_options(self) Process command line options. Process all the options in the file given by '--file', then the ones in the command line. This allows for command line options to over write options given in the file. Format of options file: # For options expecting a value <option_name> = <value> # For boolean (flag) options <option_name> Process options files and make sure not to process the same file twice, this is used for the case where HOMECFG and CWDCFG are the same, more specifically when environment variable HOME is not defined. Also, the precedence order is defined as follows: 1. options given in command line 2. options given in file specified by the -f|--file option 3. options given in file specified by ./.nfstest 4. options given in file specified by $HOME/.nfstest 5. options given in file specified by /etc/nfstest NOTE: Must use the long name of the option (--<option_name>) in the file. setup(self, nfiles=None) Set up test environment. Create nfiles number of files [default: --nfiles option] test(self, expr, msg, subtest=None, failmsg=None, terminate=False) Test expr and display message as PASS/FAIL, terminate execution if terminate option is True.
expr:
If expr is true, display as a PASS message, otherwise as a FAIL message
msg:
Message to display
subtest:
If given, append this string to the displayed message and mark this test as a member of the sub-group given by msg
failmsg:
If given, append this string to the displayed message when expr is false [default: None]
terminate:
Terminate execution if true and expr is false [default: False]
If tverbose=normal or level 1: Sub-group message is displayed as a PASS/FAIL message including the number of tests that passed and failed within the sub-group If tverbose=verbose or level 2: All tests messages are displayed
test_group(self, msg) Display heading message and start a test group. If tverbose=group or level 0: Group message is displayed as a PASS/FAIL message including the number of tests that passed and failed within this test group. If tverbose=normal|verbose or level 1|2: Group message is displayed as a heading messages for the tests belonging to this test group. test_info(self, msg) Display info message. test_options(self, name=None) Get options for the given test name. If the test name is not given it is determined by inspecting the stack to find which method is calling this method. testid_count(self, tid) Return the number of instances the testid has occurred. warning(self, msg) Display warning message. write_data(self, fd, offset=0, size=None, pattern=None) Write data to the file given by the file descriptor
fd:
File descriptor
offset:
File offset where data will be written to [default: 0]
size:
Total number of bytes to write [default: --filesize option]
pattern:
Data pattern to write to the file [default: data_pattern default]
write_files(self) Write a block of data (size given by --wsize) to all files opened by open_files() for writing. Static methods defined here: ---------------------------- get_list(value, hash, type=<type 'str'>) Return a list of elements from the comma separated string. Validate and translate these elements using the input dictionary 'hash' where every element in the string is the key of 'hash' and its value is appended to the returned list. str_list(value, type=<type 'str'>, sep=',') Return a list of <type> elements from the comma separated string.

BUGS

No known bugs.

AUTHOR

Jorge Mora (mora [at] netapp.com)