blob: 1536e95651755c506bbea85380c4e2efb30648ac [file] [log] [blame]
Jörg Krause66a7a242017-03-06 21:07:11 +01001#!/usr/bin/env python2
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 Glassa25ebed2017-11-12 21:52:24 -070012import glob
Simon Glassbf7fd502016-11-25 20:15:51 -070013import os
14import sys
15import traceback
16import unittest
17
18# Bring in the patman and dtoc libraries
19our_path = os.path.dirname(os.path.realpath(__file__))
Simon Glass7feccfd2017-06-20 21:28:49 -060020for dirname in ['../patman', '../dtoc', '..']:
21 sys.path.insert(0, os.path.join(our_path, dirname))
Simon Glassbf7fd502016-11-25 20:15:51 -070022
Simon Glassb4360202017-05-27 07:38:22 -060023# Bring in the libfdt module
Masahiro Yamada15b97f52017-10-17 13:42:43 +090024sys.path.insert(0, 'scripts/dtc/pylibfdt')
Simon Glassb4360202017-05-27 07:38:22 -060025
Simon Glassbf7fd502016-11-25 20:15:51 -070026import cmdline
27import command
28import control
Simon Glassff1fd6c2018-07-06 10:27:23 -060029import test_util
Simon Glassbf7fd502016-11-25 20:15:51 -070030
Simon Glass084059a2018-06-01 09:38:18 -060031def RunTests(debug, args):
32 """Run the functional tests and any embedded doctests
33
34 Args:
35 debug: True to enable debugging, which shows a full stack trace on error
36 args: List of positional args provided to binman. This can hold a test
37 name to execute (as in 'binman -t testSections', for example)
38 """
Simon Glassb50e5612017-11-13 18:54:54 -070039 import elf_test
Simon Glassbf7fd502016-11-25 20:15:51 -070040 import entry_test
41 import fdt_test
Simon Glass680e3312017-11-12 21:52:08 -070042 import ftest
Simon Glass19790632017-11-13 18:55:01 -070043 import image_test
Simon Glassbf7fd502016-11-25 20:15:51 -070044 import test
45 import doctest
46
47 result = unittest.TestResult()
48 for module in []:
49 suite = doctest.DocTestSuite(module)
50 suite.run(result)
51
52 sys.argv = [sys.argv[0]]
Simon Glass7fe91732017-11-13 18:55:00 -070053 if debug:
54 sys.argv.append('-D')
Simon Glass934cdcf2017-11-12 21:52:21 -070055
56 # Run the entry tests first ,since these need to be the first to import the
57 # 'entry' module.
Simon Glass084059a2018-06-01 09:38:18 -060058 test_name = args and args[0] or None
Simon Glass2cd01282018-07-06 10:27:18 -060059 for module in (entry_test.TestEntry, ftest.TestFunctional, fdt_test.TestFdt,
60 elf_test.TestElf, image_test.TestImage):
Simon Glass084059a2018-06-01 09:38:18 -060061 if test_name:
62 try:
Simon Glass2cd01282018-07-06 10:27:18 -060063 suite = unittest.TestLoader().loadTestsFromName(test_name, module)
Simon Glass084059a2018-06-01 09:38:18 -060064 except AttributeError:
65 continue
66 else:
67 suite = unittest.TestLoader().loadTestsFromTestCase(module)
Simon Glassbf7fd502016-11-25 20:15:51 -070068 suite.run(result)
69
70 print result
71 for test, err in result.errors:
72 print test.id(), err
73 for test, err in result.failures:
Simon Glass9677faa2017-11-12 21:52:29 -070074 print err, result.failures
75 if result.errors or result.failures:
76 print 'binman tests FAILED'
77 return 1
78 return 0
Simon Glassbf7fd502016-11-25 20:15:51 -070079
Simon Glassfd8d1f72018-07-17 13:25:36 -060080def GetEntryModules(include_testing=True):
81 """Get a set of entry class implementations
82
83 Returns:
84 Set of paths to entry class filenames
85 """
86 glob_list = glob.glob(os.path.join(our_path, 'etype/*.py'))
87 return set([os.path.splitext(os.path.basename(item))[0]
88 for item in glob_list
89 if include_testing or '_testing' not in item])
90
Simon Glassbf7fd502016-11-25 20:15:51 -070091def RunTestCoverage():
92 """Run the tests and check that we get 100% coverage"""
Simon Glassfd8d1f72018-07-17 13:25:36 -060093 glob_list = GetEntryModules(False)
Tom Rini16d836c2018-07-06 10:27:14 -060094 all_set = set([os.path.splitext(os.path.basename(item))[0]
95 for item in glob_list if '_testing' not in item])
Simon Glassff1fd6c2018-07-06 10:27:23 -060096 test_util.RunTestCoverage('tools/binman/binman.py', None,
97 ['*test*', '*binman.py', 'tools/patman/*', 'tools/dtoc/*'],
98 options.build_dir, all_set)
Simon Glassbf7fd502016-11-25 20:15:51 -070099
100def RunBinman(options, args):
101 """Main entry point to binman once arguments are parsed
102
103 Args:
104 options: Command-line options
105 args: Non-option arguments
106 """
107 ret_code = 0
108
109 # For testing: This enables full exception traces.
110 #options.debug = True
111
112 if not options.debug:
113 sys.tracebacklimit = 0
114
115 if options.test:
Simon Glass084059a2018-06-01 09:38:18 -0600116 ret_code = RunTests(options.debug, args[1:])
Simon Glassbf7fd502016-11-25 20:15:51 -0700117
118 elif options.test_coverage:
119 RunTestCoverage()
120
Simon Glassfd8d1f72018-07-17 13:25:36 -0600121 elif options.entry_docs:
122 control.WriteEntryDocs(GetEntryModules())
Simon Glassbf7fd502016-11-25 20:15:51 -0700123
124 else:
125 try:
126 ret_code = control.Binman(options, args)
127 except Exception as e:
128 print 'binman: %s' % e
129 if options.debug:
130 print
131 traceback.print_exc()
132 ret_code = 1
133 return ret_code
134
135
136if __name__ == "__main__":
137 (options, args) = cmdline.ParseArgs(sys.argv)
138 ret_code = RunBinman(options, args)
139 sys.exit(ret_code)