blob: 4cdd2ef3ecd964363072d2c56fae5031d79036d6 [file] [log] [blame]
Chris Masoned6f38c82012-02-22 14:53:42 -08001#!/usr/bin/python
2#
3# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7"""Tool for enumerating the tests in a given suite.
8
9Given an autotest root directory and a suite name (e.g., bvt, regression), this
10tool will print out the name of each test in that suite, one per line.
11
12Example:
13$ ./site_utils/suite_enumerator.py -a /usr/local/autotest bvt 2>/dev/null
Chris Masonea7dbfbc2014-02-06 14:24:22 -080014login_LoginSuccess
Chris Masoned6f38c82012-02-22 14:53:42 -080015logging_CrashSender
16login_BadAuthentication
17
18This is intended for use only with Chrome OS test suits that leverage the
19dynamic suite infrastructure in server/cros/dynamic_suite.py.
20"""
21
J. Richard Barnette6b355f12014-07-22 17:35:37 -070022import logging
Dan Shi11d36bc2013-02-25 16:23:02 -080023import optparse, os, sys
J. Richard Barnette6b355f12014-07-22 17:35:37 -070024
25# Silence messages relating to imports of missing, unneeded
26# modules.
27logging.basicConfig(level=logging.INFO)
28
Chris Masoned6f38c82012-02-22 14:53:42 -080029import common
Chris Sosaaccb5ce2012-08-30 17:29:15 -070030from autotest_lib.client.common_lib.cros import dev_server
Chris Masone44e4d6c2012-08-15 14:25:53 -070031from autotest_lib.server.cros.dynamic_suite.suite import Suite
Chris Masoned6f38c82012-02-22 14:53:42 -080032
33def parse_options():
Dan Shi11d36bc2013-02-25 16:23:02 -080034 """Parse command line for arguments including autotest directory, suite
35 name, if to list stable tests only, and if to list all available suites.
36 """
Chris Masoned6f38c82012-02-22 14:53:42 -080037 usage = "usage: %prog [options] suite_name"
38 parser = optparse.OptionParser(usage=usage)
39 parser.add_option('-a', '--autotest_dir', dest='autotest_dir',
40 default=os.path.abspath(
J. Richard Barnette6b355f12014-07-22 17:35:37 -070041 os.path.join(os.path.dirname(__file__),
42 os.pardir)),
Chris Masoned6f38c82012-02-22 14:53:42 -080043 help='Directory under which to search for tests.'\
44 ' (e.g. /usr/local/autotest)')
Zdenek Behan849db052012-02-29 19:16:28 +010045 parser.add_option('-l', '--listall',
46 action='store_true', default=False,
47 help='Print a listing of all suites. Ignores all args.')
Chris Masoned6f38c82012-02-22 14:53:42 -080048 options, args = parser.parse_args()
49 return parser, options, args
50
51
52def main():
Dan Shi11d36bc2013-02-25 16:23:02 -080053 """Entry point to run the suite enumerator command."""
Chris Masoned6f38c82012-02-22 14:53:42 -080054 parser, options, args = parse_options()
Zdenek Behan849db052012-02-29 19:16:28 +010055 if options.listall:
56 if args:
57 print 'Cannot use suite_name with --listall'
58 parser.print_help()
59 elif not args or len(args) != 1:
Chris Masoned6f38c82012-02-22 14:53:42 -080060 parser.print_help()
61 return
62
Chris Masone44e4d6c2012-08-15 14:25:53 -070063 fs_getter = Suite.create_fs_getter(options.autotest_dir)
Chris Sosaaccb5ce2012-08-30 17:29:15 -070064 devserver = dev_server.ImageServer('')
Zdenek Behan849db052012-02-29 19:16:28 +010065 if options.listall:
Chris Sosaaccb5ce2012-08-30 17:29:15 -070066 for suite in Suite.list_all_suites('', devserver, fs_getter):
Zdenek Behan849db052012-02-29 19:16:28 +010067 print suite
68 return
69
Alex Millera0913072013-06-12 10:01:51 -070070 suite = Suite.create_from_name(args[0], '', '', devserver, fs_getter)
Yusuf Mohsinally610911d2012-11-08 15:59:43 -080071 # If in test list, print firmware_FAFTSetup before other tests
72 # NOTE: the test.name value can be *different* from the directory
73 # name that appears in test.path
74 PRETEST_LIST = ['firmware_FAFTSetup',]
75 for test in filter(lambda test: test.name in \
76 PRETEST_LIST, suite.stable_tests()):
77 print test.path
78 for test in filter(lambda test: test.name not in \
79 PRETEST_LIST, suite.stable_tests()):
Chris Masonee8a4eff2012-02-28 16:33:43 -080080 print test.path
J. Richard Barnette6b355f12014-07-22 17:35:37 -070081
Dan Shi11d36bc2013-02-25 16:23:02 -080082 # Check if test_suites/control.suite_name exists.
J. Richard Barnette6b355f12014-07-22 17:35:37 -070083 control_path = os.path.join(options.autotest_dir, 'test_suites',
84 'control.' + args[0])
85 if not os.path.exists(control_path):
86 print >> sys.stderr, ('Warning! control file is missing: %s' %
87 control_path)
Chris Masoned6f38c82012-02-22 14:53:42 -080088
89
90if __name__ == "__main__":
91 sys.exit(main())