blob: 8736938d119f9dc4ee1449e8ea17f304d733b5a3 [file] [log] [blame]
Simon Glass38856012019-10-31 07:43:05 -06001#!/usr/bin/env python3
Tom Rini83d290c2018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glassbf7fd502016-11-25 20:15:51 -07003
4# Copyright (c) 2016 Google, Inc
5# Written by Simon Glass <sjg@chromium.org>
6#
Simon Glassbf7fd502016-11-25 20:15:51 -07007# Creates binary images from input files controlled by a description
8#
9
10"""See README for more information"""
11
Simon Glass86679ce2019-07-08 13:18:36 -060012from distutils.sysconfig import get_python_lib
Simon Glassa25ebed2017-11-12 21:52:24 -070013import glob
Simon Glassbf7fd502016-11-25 20:15:51 -070014import os
Simon Glass86679ce2019-07-08 13:18:36 -060015import site
Simon Glassbf7fd502016-11-25 20:15:51 -070016import sys
17import traceback
18import unittest
19
Simon Glass53cd5d92019-07-08 14:25:29 -060020# Bring in the patman and dtoc libraries (but don't override the first path
21# in PYTHONPATH)
Simon Glassbf7fd502016-11-25 20:15:51 -070022our_path = os.path.dirname(os.path.realpath(__file__))
Simon Glass16287932020-04-17 18:09:03 -060023for dirname in ['../patman', '../dtoc', '../concurrencytest', '..']:
24 sys.path.insert(2, os.path.realpath(os.path.join(our_path, dirname)))
Simon Glassbf7fd502016-11-25 20:15:51 -070025
Simon Glassb4360202017-05-27 07:38:22 -060026# Bring in the libfdt module
Simon Glass53cd5d92019-07-08 14:25:29 -060027sys.path.insert(2, 'scripts/dtc/pylibfdt')
28sys.path.insert(2, os.path.join(our_path,
Simon Glassed59e002018-10-01 21:12:40 -060029 '../../build-sandbox_spl/scripts/dtc/pylibfdt'))
Simon Glassb4360202017-05-27 07:38:22 -060030
Simon Glass86679ce2019-07-08 13:18:36 -060031# When running under python-coverage on Ubuntu 16.04, the dist-packages
32# directories are dropped from the python path. Add them in so that we can find
33# the elffile module. We could use site.getsitepackages() here but unfortunately
34# that is not available in a virtualenv.
35sys.path.append(get_python_lib())
36
Simon Glass16287932020-04-17 18:09:03 -060037from binman import cmdline
38from binman import control
Simon Glassff1fd6c2018-07-06 10:27:23 -060039import test_util
Simon Glassbf7fd502016-11-25 20:15:51 -070040
Simon Glass8acce602019-07-08 13:18:50 -060041def RunTests(debug, verbosity, processes, test_preserve_dirs, args, toolpath):
Simon Glass084059a2018-06-01 09:38:18 -060042 """Run the functional tests and any embedded doctests
43
44 Args:
45 debug: True to enable debugging, which shows a full stack trace on error
Simon Glassee0c9a72019-07-08 13:18:48 -060046 verbosity: Verbosity level to use
Simon Glassd5164a72019-07-08 13:18:49 -060047 test_preserve_dirs: True to preserve the input directory used by tests
48 so that it can be examined afterwards (only useful for debugging
49 tests). If a single test is selected (in args[0]) it also preserves
50 the output directory for this test. Both directories are displayed
51 on the command line.
52 processes: Number of processes to use to run tests (None=same as #CPUs)
Simon Glass084059a2018-06-01 09:38:18 -060053 args: List of positional args provided to binman. This can hold a test
Simon Glass53cd5d92019-07-08 14:25:29 -060054 name to execute (as in 'binman test testSections', for example)
Simon Glass8acce602019-07-08 13:18:50 -060055 toolpath: List of paths to use for tools
Simon Glass084059a2018-06-01 09:38:18 -060056 """
Simon Glass16287932020-04-17 18:09:03 -060057 from binman import cbfs_util_test
58 from binman import elf_test
59 from binman import entry_test
60 from binman import fdt_test
61 from binman import ftest
62 from binman import image_test
63 from binman import test
Simon Glassbf7fd502016-11-25 20:15:51 -070064 import doctest
65
66 result = unittest.TestResult()
Simon Glassce0dc2e2020-04-17 18:09:01 -060067 test_name = args and args[0] or None
Simon Glass934cdcf2017-11-12 21:52:21 -070068
69 # Run the entry tests first ,since these need to be the first to import the
70 # 'entry' module.
Simon Glassce0dc2e2020-04-17 18:09:01 -060071 test_util.RunTestSuites(
72 result, debug, verbosity, test_preserve_dirs, processes, test_name,
73 toolpath,
74 [entry_test.TestEntry, ftest.TestFunctional, fdt_test.TestFdt,
75 elf_test.TestElf, image_test.TestImage, cbfs_util_test.TestCbfs])
Simon Glassbf7fd502016-11-25 20:15:51 -070076
Simon Glassce0dc2e2020-04-17 18:09:01 -060077 return test_util.ReportResult('binman', test_name, result)
Simon Glassbf7fd502016-11-25 20:15:51 -070078
Simon Glassfd8d1f72018-07-17 13:25:36 -060079def GetEntryModules(include_testing=True):
80 """Get a set of entry class implementations
81
82 Returns:
83 Set of paths to entry class filenames
84 """
85 glob_list = glob.glob(os.path.join(our_path, 'etype/*.py'))
86 return set([os.path.splitext(os.path.basename(item))[0]
87 for item in glob_list
88 if include_testing or '_testing' not in item])
89
Simon Glassbf7fd502016-11-25 20:15:51 -070090def RunTestCoverage():
91 """Run the tests and check that we get 100% coverage"""
Simon Glassfd8d1f72018-07-17 13:25:36 -060092 glob_list = GetEntryModules(False)
Tom Rini16d836c2018-07-06 10:27:14 -060093 all_set = set([os.path.splitext(os.path.basename(item))[0]
94 for item in glob_list if '_testing' not in item])
Simon Glassc07ab6e2020-04-17 18:08:58 -060095 test_util.RunTestCoverage('tools/binman/binman', None,
96 ['*test*', '*main.py', 'tools/patman/*', 'tools/dtoc/*'],
Simon Glass53cd5d92019-07-08 14:25:29 -060097 args.build_dir, all_set)
Simon Glassbf7fd502016-11-25 20:15:51 -070098
Simon Glass53cd5d92019-07-08 14:25:29 -060099def RunBinman(args):
Simon Glassbf7fd502016-11-25 20:15:51 -0700100 """Main entry point to binman once arguments are parsed
101
102 Args:
Simon Glass53cd5d92019-07-08 14:25:29 -0600103 args: Command line arguments Namespace object
Simon Glassbf7fd502016-11-25 20:15:51 -0700104 """
105 ret_code = 0
106
Simon Glass53cd5d92019-07-08 14:25:29 -0600107 if not args.debug:
Simon Glassbf7fd502016-11-25 20:15:51 -0700108 sys.tracebacklimit = 0
109
Simon Glass53cd5d92019-07-08 14:25:29 -0600110 if args.cmd == 'test':
111 if args.test_coverage:
112 RunTestCoverage()
113 else:
114 ret_code = RunTests(args.debug, args.verbosity, args.processes,
115 args.test_preserve_dirs, args.tests,
116 args.toolpath)
Simon Glassbf7fd502016-11-25 20:15:51 -0700117
Simon Glass53cd5d92019-07-08 14:25:29 -0600118 elif args.cmd == 'entry-docs':
Simon Glassfd8d1f72018-07-17 13:25:36 -0600119 control.WriteEntryDocs(GetEntryModules())
Simon Glassbf7fd502016-11-25 20:15:51 -0700120
121 else:
122 try:
Simon Glass53cd5d92019-07-08 14:25:29 -0600123 ret_code = control.Binman(args)
Simon Glassbf7fd502016-11-25 20:15:51 -0700124 except Exception as e:
Simon Glass2ca84682019-05-14 15:53:37 -0600125 print('binman: %s' % e)
Simon Glass53cd5d92019-07-08 14:25:29 -0600126 if args.debug:
Simon Glass2ca84682019-05-14 15:53:37 -0600127 print()
Simon Glassbf7fd502016-11-25 20:15:51 -0700128 traceback.print_exc()
129 ret_code = 1
130 return ret_code
131
132
133if __name__ == "__main__":
Simon Glass53cd5d92019-07-08 14:25:29 -0600134 args = cmdline.ParseArgs(sys.argv[1:])
135
136 ret_code = RunBinman(args)
Simon Glassbf7fd502016-11-25 20:15:51 -0700137 sys.exit(ret_code)