blob: 944fd5d7ba309d74a85f75ca3270ac51a7f080b6 [file] [log] [blame]
Jörg Krausecd6d46e2017-03-06 21:07:11 +01001#!/usr/bin/env python2
Tom Rini10e47792018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glass2574ef62016-11-25 20:15:51 -07003
4# Copyright (c) 2016 Google, Inc
5# Written by Simon Glass <sjg@chromium.org>
6#
Simon Glass2574ef62016-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 Glass2c3cf452017-11-12 21:52:24 -070012import glob
Simon Glass2574ef62016-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 Glassdde3e712017-06-20 21:28:49 -060020for dirname in ['../patman', '../dtoc', '..']:
21 sys.path.insert(0, os.path.join(our_path, dirname))
Simon Glass2574ef62016-11-25 20:15:51 -070022
Simon Glass55901ff2017-05-27 07:38:22 -060023# Bring in the libfdt module
Masahiro Yamada47ae5392017-10-17 13:42:43 +090024sys.path.insert(0, 'scripts/dtc/pylibfdt')
Simon Glass55901ff2017-05-27 07:38:22 -060025
Simon Glass2574ef62016-11-25 20:15:51 -070026import cmdline
27import command
28import control
29
Simon Glass5666f9a2018-06-01 09:38:18 -060030def RunTests(debug, args):
31 """Run the functional tests and any embedded doctests
32
33 Args:
34 debug: True to enable debugging, which shows a full stack trace on error
35 args: List of positional args provided to binman. This can hold a test
36 name to execute (as in 'binman -t testSections', for example)
37 """
Simon Glass24ad3652017-11-13 18:54:54 -070038 import elf_test
Simon Glass2574ef62016-11-25 20:15:51 -070039 import entry_test
40 import fdt_test
Simon Glass076e63b2017-11-12 21:52:08 -070041 import ftest
Simon Glass4ca8e042017-11-13 18:55:01 -070042 import image_test
Simon Glass2574ef62016-11-25 20:15:51 -070043 import test
44 import doctest
45
46 result = unittest.TestResult()
47 for module in []:
48 suite = doctest.DocTestSuite(module)
49 suite.run(result)
50
51 sys.argv = [sys.argv[0]]
Simon Glass075a45c2017-11-13 18:55:00 -070052 if debug:
53 sys.argv.append('-D')
Simon Glass8f521362017-11-12 21:52:21 -070054
55 # Run the entry tests first ,since these need to be the first to import the
56 # 'entry' module.
57 suite = unittest.TestLoader().loadTestsFromTestCase(entry_test.TestEntry)
58 suite.run(result)
Simon Glass5666f9a2018-06-01 09:38:18 -060059 test_name = args and args[0] or None
Simon Glass4ca8e042017-11-13 18:55:01 -070060 for module in (ftest.TestFunctional, fdt_test.TestFdt, elf_test.TestElf,
61 image_test.TestImage):
Simon Glass5666f9a2018-06-01 09:38:18 -060062 if test_name:
63 try:
64 suite = unittest.TestLoader().loadTestsFromName(args[0], module)
65 except AttributeError:
66 continue
67 else:
68 suite = unittest.TestLoader().loadTestsFromTestCase(module)
Simon Glass2574ef62016-11-25 20:15:51 -070069 suite.run(result)
70
71 print result
72 for test, err in result.errors:
73 print test.id(), err
74 for test, err in result.failures:
Simon Glass9ba021c2017-11-12 21:52:29 -070075 print err, result.failures
76 if result.errors or result.failures:
77 print 'binman tests FAILED'
78 return 1
79 return 0
Simon Glass2574ef62016-11-25 20:15:51 -070080
81def RunTestCoverage():
82 """Run the tests and check that we get 100% coverage"""
83 # This uses the build output from sandbox_spl to get _libfdt.so
Tom Rinic2a849d2018-07-06 10:27:14 -060084 cmd = ('PYTHONPATH=$PYTHONPATH:%s/sandbox_spl/tools python-coverage run '
Simon Glass2574ef62016-11-25 20:15:51 -070085 '--include "tools/binman/*.py" --omit "*test*,*binman.py" '
86 'tools/binman/binman.py -t' % options.build_dir)
87 os.system(cmd)
Tom Rinic2a849d2018-07-06 10:27:14 -060088 stdout = command.Output('python-coverage', 'report')
Simon Glass2c3cf452017-11-12 21:52:24 -070089 lines = stdout.splitlines()
90
91 test_set= set([os.path.basename(line.split()[0])
92 for line in lines if '/etype/' in line])
93 glob_list = glob.glob(os.path.join(our_path, 'etype/*.py'))
Tom Rinic2a849d2018-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 Glass2c3cf452017-11-12 21:52:24 -070096 missing_list = all_set
97 missing_list.difference_update(test_set)
Simon Glass2c3cf452017-11-12 21:52:24 -070098 coverage = lines[-1].split(' ')[-1]
99 ok = True
100 if missing_list:
101 print 'Missing tests for %s' % (', '.join(missing_list))
Tom Rinic2a849d2018-07-06 10:27:14 -0600102 print stdout
Simon Glass2c3cf452017-11-12 21:52:24 -0700103 ok = False
Simon Glass2574ef62016-11-25 20:15:51 -0700104 if coverage != '100%':
105 print stdout
106 print "Type 'coverage html' to get a report in htmlcov/index.html"
Simon Glass2c3cf452017-11-12 21:52:24 -0700107 print 'Coverage error: %s, but should be 100%%' % coverage
108 ok = False
109 if not ok:
110 raise ValueError('Test coverage failure')
Simon Glass2574ef62016-11-25 20:15:51 -0700111
112def RunBinman(options, args):
113 """Main entry point to binman once arguments are parsed
114
115 Args:
116 options: Command-line options
117 args: Non-option arguments
118 """
119 ret_code = 0
120
121 # For testing: This enables full exception traces.
122 #options.debug = True
123
124 if not options.debug:
125 sys.tracebacklimit = 0
126
127 if options.test:
Simon Glass5666f9a2018-06-01 09:38:18 -0600128 ret_code = RunTests(options.debug, args[1:])
Simon Glass2574ef62016-11-25 20:15:51 -0700129
130 elif options.test_coverage:
131 RunTestCoverage()
132
133 elif options.full_help:
134 pager = os.getenv('PAGER')
135 if not pager:
136 pager = 'more'
137 fname = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),
138 'README')
139 command.Run(pager, fname)
140
141 else:
142 try:
143 ret_code = control.Binman(options, args)
144 except Exception as e:
145 print 'binman: %s' % e
146 if options.debug:
147 print
148 traceback.print_exc()
149 ret_code = 1
150 return ret_code
151
152
153if __name__ == "__main__":
154 (options, args) = cmdline.ParseArgs(sys.argv)
155 ret_code = RunBinman(options, args)
156 sys.exit(ret_code)