source: rtems-tools/tester/rt/coverage.py @ c1f2c32

5
Last change on this file since c1f2c32 was c1f2c32, checked in by Chris Johns <chrisj@…>, on 06/19/18 at 03:42:03

tester: Add line feeds to the coverage HTML report.

  • Property mode set to 100644
File size: 17.0 KB
RevLine 
[b762312]1#
2# RTEMS Tools Project (http://www.rtems.org/)
3# Copyright 2014 Krzysztof Miesowicz (krzysztof.miesowicz@gmail.com)
4# All rights reserved.
5#
6# This file is part of the RTEMS Tools package in 'rtems-tools'.
7#
8# Redistribution and use in source and binary forms, with or without
9# modification, are permitted provided that the following conditions are met:
10#
11# 1. Redistributions of source code must retain the above copyright notice,
12# this list of conditions and the following disclaimer.
13#
14# 2. Redistributions in binary form must reproduce the above copyright notice,
15# this list of conditions and the following disclaimer in the documentation
16# and/or other materials provided with the distribution.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28# POSSIBILITY OF SUCH DAMAGE.
29#
30
[5195eb7]31from __future__ import print_function
[b762312]32
[5195eb7]33import datetime
[b762312]34import shutil
35import os
[e341a65]36import sys
[b762312]37
38try:
39    import configparser
40except:
41    import ConfigParser as configparser
42
[5195eb7]43from rtemstoolkit import error
44from rtemstoolkit import path
45from rtemstoolkit import log
46from rtemstoolkit import execute
47from rtemstoolkit import macros
48
49
50from . import options
51
[b762312]52class summary:
53    def __init__(self, p_summary_dir):
54        self.summary_file_path = path.join(p_summary_dir, 'summary.txt')
55        self.index_file_path = path.join(p_summary_dir, 'index.html')
56        self.bytes_analyzed = 0
57        self.bytes_not_executed = 0
58        self.percentage_executed = 0.0
59        self.percentage_not_executed = 100.0
60        self.ranges_uncovered = 0
61        self.branches_uncovered = 0
62        self.branches_total = 0
63        self.branches_always_taken = 0
64        self.branches_never_taken = 0
65        self.percentage_branches_covered = 0.0
66        self.is_failure = False
67
68    def parse(self):
[5195eb7]69        if not path.exists(self.summary_file_path):
70            log.output('coverage: summary file %s does not exist!' % (self.summary_file_path))
[b762312]71            self.is_failure = True
72
[5195eb7]73        with open(self.summary_file_path, 'r') as summary_file:
[b762312]74           self.bytes_analyzed = self._get_next_with_colon(summary_file)
75           self.bytes_not_executed = self._get_next_with_colon(summary_file)
76           self.percentage_executed = self._get_next_with_colon(summary_file)
77           self.percentage_not_executed = self._get_next_with_colon(summary_file)
78           self.ranges_uncovered = self._get_next_with_colon(summary_file)
79           self.branches_total = self._get_next_with_colon(summary_file)
80           self.branches_uncovered = self._get_next_with_colon(summary_file)
81           self.branches_always_taken = self._get_next_without_colon(summary_file)
82           self.branches_never_taken = self._get_next_without_colon(summary_file)
83        if len(self.branches_uncovered) > 0 and len(self.branches_total) > 0:
84            self.percentage_branches_covered = \
[5195eb7]85                1.0 - (float(self.branches_uncovered) / float(self.branches_total))
[b762312]86        else:
87            self.percentage_branches_covered = 0.0
88        return
89
90    def _get_next_with_colon(self, summary_file):
91        line = summary_file.readline()
92        if ':' in line:
93            return line.split(':')[1].strip()
94        else:
95            return ''
96
97    def _get_next_without_colon(self, summary_file):
98        line = summary_file.readline()
99        return line.strip().split(' ')[0]
100
101class report_gen_html:
102    def __init__(self, p_symbol_sets_list, build_dir, rtdir, bsp):
103        self.symbol_sets_list = ['score']
104        self.build_dir = build_dir
[c1f2c32]105        self.partial_reports_files = list(['index.html', 'summary.txt'])
[b762312]106        self.number_of_columns = 1
107        self.covoar_src_path = path.join(rtdir, 'covoar')
108        self.bsp = bsp
109
110    def _find_partial_reports(self):
111        partial_reports = {}
112        for symbol_set in self.symbol_sets_list:
[c1f2c32]113            set_summary = summary(path.join(self.bsp + "-coverage",
114                                            symbol_set))
[b762312]115            set_summary.parse()
116            partial_reports[symbol_set] = set_summary
117        return partial_reports
118
119    def _prepare_head_section(self):
[c1f2c32]120        head_section = '<head>' + os.linesep
121        head_section += ' <title>RTEMS coverage report</title>' + os.linesep
122        head_section += ' <style type="text/css">' + os.linesep
123        head_section += '  progress[value] {' + os.linesep
124        head_section += '    -webkit-appearance: none;' + os.linesep
125        head_section += '    appearance: none;' + os.linesep
126        head_section += '    width: 150px;' + os.linesep
127        head_section += '    height: 15px;' + os.linesep
128        head_section += '  }' + os.linesep
129        head_section += ' </style>' + os.linesep
130        head_section += '</head>' + os.linesep
[b762312]131        return head_section
132
133    def _prepare_index_content(self, partial_reports):
[c1f2c32]134        header = "<h1> RTEMS coverage analysis report </h1>" + os.linesep
135        header += "<h3>Coverage reports by symbols sets:</h3>" + os.linesep
136        table = "<table>" + os.linesep
[b762312]137        table += self._header_row()
138        for symbol_set in partial_reports:
139            table += self._row(symbol_set, partial_reports[symbol_set])
140        table += "</table> </br>"
[5195eb7]141        timestamp = "Analysis performed on " + datetime.datetime.now().ctime()
[b762312]142        return "<body>\n" + header + table + timestamp + "\n</body>"
143
144    def _row(self, symbol_set, summary):
[c1f2c32]145        row = "<tr>" + os.linesep
146        row += "<td>" + symbol_set + "</td>" + os.linesep
[b762312]147        if summary.is_failure:
148            row += ' <td colspan="' + str(self.number_of_columns-1) \
[c1f2c32]149                        + '" style="background-color:red">FAILURE</td>' + os.linesep
[b762312]150        else:
[c1f2c32]151            row += ' <td>' + self._link(summary.index_file_path, 'Index') \
152                   + '</td>' + os.linesep
153            row += ' <td>' + self._link(summary.summary_file_path, 'Summary') \
154                   + '</td>' + os.linesep
155            row += ' <td>' + summary.bytes_analyzed + '</td>' + os.linesep
156            row += ' <td>' + summary.bytes_not_executed + '</td>' + os.linesep
157            row += ' <td>' + summary.ranges_uncovered + '</td>' + os.linesep
158            row += ' <td>' + summary.percentage_executed + '%</td>' + os.linesep
159            row += ' <td>' + summary.percentage_not_executed + '%</td>' + os.linesep
[b762312]160            row += ' <td><progress value="' + summary.percentage_executed \
[c1f2c32]161                    + '" max="100"></progress></td>' + os.linesep
162            row += ' <td>' + summary.branches_uncovered + '</td>' + os.linesep
163            row += ' <td>' + summary.branches_total + '</td>' + os.linesep
164            row += ' <td> {:.3%} </td>'.format(summary.percentage_branches_covered)
[5195eb7]165            spbc = 100 * summary.percentage_branches_covered
166            row += ' <td><progress value="{:.3}" max="100"></progress></td>'.format(spbc)
[c1f2c32]167            row += '</tr>' + os.linesep
[b762312]168        return row
169
170    def _header_row(self):
[c1f2c32]171        row = "<tr>" + os.linesep
172        row += " <th> Symbols set name </th>" + os.linesep
173        row += " <th> Index file </th>" + os.linesep
174        row += " <th> Summary file </th>" + os.linesep
175        row += " <th> Bytes analyzed </th>" + os.linesep
176        row += " <th> Bytes not executed </th>" + os.linesep
177        row += " <th> Uncovered ranges </th>" + os.linesep
178        row += " <th> Percentage covered </th>" + os.linesep
179        row += " <th> Percentage uncovered </th>" + os.linesep
180        row += " <th> Instruction coverage </th>" + os.linesep
181        row += " <th> Branches uncovered </th>" + os.linesep
182        row += " <th> Branches total </th>" + os.linesep
183        row += " <th> Branches covered percentage </th>" + os.linesep
184        row += " <th> Branches coverage </th>" + os.linesep
185        row += "</tr>"
[b762312]186        self.number_of_columns = row.count('<th>')
187        return row
188
189    def _link(self, address, text):
190        return '<a href="' + address + '">' + text + '</a>'
191
192    def _create_index_file(self, head_section, content):
[5195eb7]193        name = path.join(self.build_dir, self.bsp + "-report.html")
194        with open(name, 'w') as f:
[b762312]195            f.write(head_section)
196            f.write(content)
197
198    def generate(self):
199        partial_reports = self._find_partial_reports()
200        head_section = self._prepare_head_section()
201        index_content = self._prepare_index_content(partial_reports)
202        self._create_index_file(head_section,index_content)
203
204    def add_covoar_src_path(self):
205        table_js_path = path.join(self.covoar_src_path, 'table.js')
206        covoar_css_path = path.join(self.covoar_src_path, 'covoar.css')
207        for symbol_set in self.symbol_sets_list:
208            symbol_set_dir = path.join(self.build_dir,
209                                       self.bsp + '-coverage', symbol_set)
210            html_files = os.listdir(symbol_set_dir)
211            for html_file in html_files:
212                html_file = path.join(symbol_set_dir, html_file)
213                if path.exists(html_file) and 'html' in html_file:
214                    with open(html_file, 'r') as f:
215                        file_data = f.read()
216                    file_data = file_data.replace('table.js', table_js_path)
217                    file_data = file_data.replace('covoar.css',
218                                                  covoar_css_path)
219                    with open(html_file, 'w') as f:
220                        f.write(file_data)
221
222class build_path_generator(object):
223    '''
224    Generates the build path from the path to executables
225    '''
226    def __init__(self, executables, target):
227        self.executables = executables
228        self.target = target
229    def run(self):
230        build_path = '/'
[5195eb7]231        path_ = self.executables[0].split('/')
232        for p in path_:
233            if p == self.target:
234                break
[b762312]235            else:
[5195eb7]236                build_path = path.join(build_path, p)
[b762312]237        return build_path
238
239class symbol_parser(object):
240    '''
241    Parse the symbol sets ini and create custom ini file for covoar
242    '''
[5195eb7]243    def __init__(self,
244                 symbol_config_path,
245                 symbol_select_path,
[e341a65]246                 symbol_set,
[5195eb7]247                 build_dir):
[b762312]248        self.symbol_select_file = symbol_select_path
249        self.symbol_file = symbol_config_path
250        self.build_dir = build_dir
251        self.symbol_sets = {}
[e341a65]252        self.symbol_set = symbol_set
[b762312]253        self.ssets = []
254
255    def parse(self):
256        config = configparser.ConfigParser()
257        try:
258            config.read(self.symbol_file)
[e341a65]259            if self.symbol_set is not None:
260                self.ssets = self.symbol_set.split(',')
[b762312]261            else:
262                self.ssets = config.get('symbol-sets', 'sets').split(',')
[5195eb7]263                self.ssets = [sset.encode('utf-8') for sset in self.ssets]
[b762312]264            for sset in self.ssets:
[5195eb7]265                lib = path.join(self.build_dir, config.get('libraries', sset))
[b762312]266                self.symbol_sets[sset] = lib.encode('utf-8')
267        except:
268            raise error.general('Symbol set parsing failed')
269
270    def _write_ini(self):
271        config = configparser.ConfigParser()
272        try:
273            sets = ', '.join(self.symbol_sets.keys())
274            config.add_section('symbol-sets')
275            config.set('symbol-sets', 'sets', sets)
276            for key in self.symbol_sets.keys():
277                config.add_section(key)
278                config.set(key, 'libraries', self.symbol_sets[key])
279            with open(self.symbol_select_file, 'w') as conf:
280                config.write(conf)
281        except:
[5195eb7]282            raise error.general('symbol parser write failed')
[b762312]283
284    def run(self):
285        self.parse()
286        self._write_ini()
287
288class covoar(object):
289    '''
290    Covoar runner
291    '''
[e341a65]292    def __init__(self, base_result_dir, config_dir, executables, explanations_txt, trace):
[b762312]293        self.base_result_dir = base_result_dir
294        self.config_dir = config_dir
295        self.executables = ' '.join(executables)
296        self.explanations_txt = explanations_txt
297        self.project_name = 'RTEMS-5'
[e341a65]298        self.trace = trace
299
300    def _find_covoar(self):
301        covoar_exe = 'covoar'
302        tester_dir = path.dirname(path.abspath(sys.argv[0]))
303        base = path.dirname(tester_dir)
304        exe = path.join(base, 'bin', covoar_exe)
305        if path.isfile(exe):
306            return exe
307        exe = path.join(base, 'build', 'tester', 'covoar', covoar_exe)
308        if path.isfile(exe):
309            return exe
310        raise error.general('coverage: %s not found'% (covoar_exe))
[b762312]311
312    def run(self, set_name, symbol_file):
313        covoar_result_dir = path.join(self.base_result_dir, set_name)
[e341a65]314        if not path.exists(covoar_result_dir):
[b762312]315            path.mkdir(covoar_result_dir)
[e341a65]316        if not path.exists(symbol_file):
317            raise error.general('coverage: no symbol set file: %s'% (symbol_file))
318        exe = self._find_covoar()
319        command = exe + ' -S ' + symbol_file + \
[5195eb7]320                  ' -O ' + covoar_result_dir + \
321                  ' -E ' + self.explanations_txt + \
322                  ' -p ' + self.project_name + ' ' + self.executables
323        log.notice()
324        log.notice('Running coverage analysis: %s (%s)' % (set_name, covoar_result_dir))
325        start_time = datetime.datetime.now()
[e341a65]326        executor = execute.execute(verbose = self.trace, output = self.output_handler)
[b762312]327        exit_code = executor.shell(command, cwd=os.getcwd())
[5195eb7]328        if exit_code[0] != 0:
329            raise error.general('coverage: covoar failure:: %d' % (exit_code[0]))
330        end_time = datetime.datetime.now()
331        log.notice('Coverage time: %s' % (str(end_time - start_time)))
[b762312]332
333    def output_handler(self, text):
[5195eb7]334        log.output('%s' % (text))
[b762312]335
336class coverage_run(object):
337    '''
338    Coverage analysis support for rtems-test
339    '''
[e341a65]340    def __init__(self, macros_, executables, symbol_set = None, trace = False):
[b762312]341        '''
342        Constructor
343        '''
[e341a65]344        self.trace = trace
345        self.macros = macros_
[b762312]346        self.build_dir = self.macros['_cwd']
347        self.explanations_txt = self.macros.expand(self.macros['cov_explanations'])
348        self.test_dir = path.join(self.build_dir, self.macros['bsp'] + '-coverage')
[5195eb7]349        if not path.exists(self.test_dir):
[b762312]350            path.mkdir(self.test_dir)
351        self.rtdir = path.abspath(self.macros['_rtdir'])
352        self.rtscripts = self.macros.expand(self.macros['_rtscripts'])
353        self.coverage_config_path = path.join(self.rtscripts, 'coverage')
354        self.symbol_config_path = path.join(self.coverage_config_path,
355                                            'symbol-sets.ini')
356        self.symbol_select_path = path.join(self.coverage_config_path,
357                                            self.macros['bsp'] + '-symbols.ini')
358        self.executables = executables
359        self.symbol_sets = []
360        self.no_clean = int(self.macros['_no_clean'])
361        self.report_format = self.macros['cov_report_format']
[e341a65]362        self.symbol_set = symbol_set
[b762312]363        self.target = self.macros['target']
364
365    def run(self):
366        try:
367            if self.executables is None:
368                raise error.general('no test executables provided.')
369            build_dir = build_path_generator(self.executables, self.target).run()
370            parser = symbol_parser(self.symbol_config_path,
371                                   self.symbol_select_path,
[e341a65]372                                   self.symbol_set,
[b762312]373                                   build_dir)
374            parser.run()
375            covoar_runner = covoar(self.test_dir, self.symbol_select_path,
[e341a65]376                                   self.executables, self.explanations_txt,
377                                   self.trace)
[b762312]378            covoar_runner.run('score', self.symbol_select_path)
379            self._generate_reports();
380            self._summarize();
381        finally:
382            self._cleanup();
383
384    def _generate_reports(self):
[5195eb7]385        log.notice('Coverage generating reports')
[b762312]386        if self.report_format == 'html':
387            report = report_gen_html(self.symbol_sets,
388                                     self.build_dir,
389                                     self.rtdir,
390                                     self.macros['bsp'])
391            report.generate()
392            report.add_covoar_src_path()
393
394    def _cleanup(self):
395        if not self.no_clean:
[e341a65]396            if self.trace:
397                log.output('Coverage cleaning tempfiles')
[b762312]398            for exe in self.executables:
399                trace_file = exe + '.cov'
400                if path.exists(trace_file):
401                    os.remove(trace_file)
402            os.remove(self.symbol_select_path)
403
404    def _summarize(self):
[5195eb7]405        log.notice('Coverage analysis finished: %s' % (self.build_dir))
Note: See TracBrowser for help on using the repository browser.