]> git.karo-electronics.de Git - karo-tx-uboot.git/commit
test/py: HTML awesome!
authorStephen Warren <swarren@nvidia.com>
Wed, 3 Feb 2016 23:46:34 +0000 (16:46 -0700)
committerSimon Glass <sjg@chromium.org>
Tue, 9 Feb 2016 22:41:19 +0000 (15:41 -0700)
commit83357fd5c2ec11b45607dfe35ba5fe5e44d1eee0
tree3bb9e9a2f0958ff2f8958a0aa420152222ae57c4
parentac99831b7d0f4e00c8dd32b604c2448260dd2776
test/py: HTML awesome!

Implement three improvements to the HTML log file:
- Ability to expand/contract sections. All passing sections are contracted
  at file load time so the user can concentrate on issues requiring
  action.
- The overall status report is copied to the top of the log for easy
  access.
- Add links from the status report to the test logs, for easy navigation.

This all relies on Javascript and the jquery library. If the user doesn't
have Javascript enabled, or jquery can't be downloaded, the log should
look and behave identically to how it did before this patch.

A few notes on the diff:

- A few more 'with log.section("xxx")' were added, so that all stream
  blocks are kept within a section block for consistent HTML entity
  nesting structure. This changed indentation in a few places, making
  the diff look slightly larger.
- HTML entity IDs are cleaned up. We assign simple incrementing integer
  IDs now, rather than using mangled test names which were possibly
  invalid.
- Sections and streams now use common CSS class names (in addition to the
  current separate class names) to more easily share the new behaviour.
  This also reduces the CSS file size since rules don't need to be
  duplicated.
- An "OK" status is logged after some external command executions so that
  make and flash steps are auto-contracted at log file load time, assuming
  they passed.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
test/py/conftest.py
test/py/multiplexed_log.css
test/py/multiplexed_log.py
test/py/u_boot_console_exec_attach.py