Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
5ab6d5a0
Commit
5ab6d5a0
authored
Sep 09, 2011
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Perf tests reports - added output format with embedded styles
parent
5c3a93a5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
18 deletions
+42
-18
chart.py
modules/ts/misc/chart.py
+4
-3
report.py
modules/ts/misc/report.py
+7
-3
summary.py
modules/ts/misc/summary.py
+6
-3
table_formatter.py
modules/ts/misc/table_formatter.py
+25
-9
No files found.
modules/ts/misc/chart.py
View file @
5ab6d5a0
...
...
@@ -145,7 +145,7 @@ if __name__ == "__main__":
for
i
in
range
(
argsnum
):
arglists
[
i
]
=
sorted
([
str
(
key
)
for
key
in
arglists
[
i
]
.
iterkeys
()],
key
=
keyselector
)
if
options
.
generateHtml
:
if
options
.
generateHtml
and
options
.
format
!=
"moinwiki"
:
htmlPrintHeader
(
sys
.
stdout
,
"Report
%
s for
%
s"
%
(
args
[
0
],
sname
))
indexes
=
[
0
]
*
argsnum
...
...
@@ -191,11 +191,11 @@ if __name__ == "__main__":
tbl
.
newCell
(
col
,
"-"
)
if
options
.
generateHtml
:
tbl
.
htmlPrintTable
(
sys
.
stdout
)
tbl
.
htmlPrintTable
(
sys
.
stdout
,
options
.
format
==
"moinwiki"
)
else
:
tbl
.
consolePrintTable
(
sys
.
stdout
)
if
not
nextPermutation
(
indexes
,
arglists
,
x
,
y
):
break
if
options
.
generateHtml
:
if
options
.
generateHtml
and
options
.
format
!=
"moinwiki"
:
htmlPrintFooter
(
sys
.
stdout
)
\ No newline at end of file
modules/ts/misc/report.py
View file @
5ab6d5a0
...
...
@@ -91,8 +91,11 @@ if __name__ == "__main__":
# output table
if
options
.
generateHtml
:
htmlPrintHeader
(
sys
.
stdout
,
"Report
%
s tests from
%
s"
%
(
len
(
tests
),
", "
.
join
(
files
)))
tbl
.
htmlPrintTable
(
sys
.
stdout
)
htmlPrintFooter
(
sys
.
stdout
)
if
options
.
format
==
"moinwiki"
:
tbl
.
htmlPrintTable
(
sys
.
stdout
,
True
)
else
:
htmlPrintHeader
(
sys
.
stdout
,
"Report
%
s tests from
%
s"
%
(
len
(
tests
),
", "
.
join
(
files
)))
tbl
.
htmlPrintTable
(
sys
.
stdout
)
htmlPrintFooter
(
sys
.
stdout
)
else
:
tbl
.
consolePrintTable
(
sys
.
stdout
)
\ No newline at end of file
modules/ts/misc/summary.py
View file @
5ab6d5a0
...
...
@@ -137,8 +137,11 @@ if __name__ == "__main__":
# output table
if
options
.
generateHtml
:
htmlPrintHeader
(
sys
.
stdout
,
"Summary report for
%
s tests from
%
s test logs"
%
(
len
(
test_cases
),
setsCount
))
tbl
.
htmlPrintTable
(
sys
.
stdout
)
htmlPrintFooter
(
sys
.
stdout
)
if
options
.
format
==
"moinwiki"
:
tbl
.
htmlPrintTable
(
sys
.
stdout
,
True
)
else
:
htmlPrintHeader
(
sys
.
stdout
,
"Summary report for
%
s tests from
%
s test logs"
%
(
len
(
test_cases
),
setsCount
))
tbl
.
htmlPrintTable
(
sys
.
stdout
)
htmlPrintFooter
(
sys
.
stdout
)
else
:
tbl
.
consolePrintTable
(
sys
.
stdout
)
modules/ts/misc/table_formatter.py
View file @
5ab6d5a0
...
...
@@ -328,20 +328,26 @@ class table(object):
return
(
height
-
space
+
1
)
/
2
return
0
def
htmlPrintTable
(
self
,
out
):
def
htmlPrintTable
(
self
,
out
,
embeedcss
=
False
):
columns
=
self
.
layoutTable
()
out
.
write
(
"<div class=
\"
tableFormatter
\"
>
\n
<table class=
\"
tbl
\"
>
\n
"
)
if
embeedcss
:
out
.
write
(
"<div style=
\"
font-family: Lucida Console, Courier New, Courier;font-size: 16px;color:#3e4758;
\"
>
\n
<table style=
\"
background:none repeat scroll 0 0 #FFFFFF;border-collapse:collapse;font-family:'Lucida Sans Unicode','Lucida Grande',Sans-Serif;font-size:14px;margin:20px;text-align:left;width:480px;margin-left: auto;margin-right: auto;white-space:nowrap;
\"
>
\n
"
)
else
:
out
.
write
(
"<div class=
\"
tableFormatter
\"
>
\n
<table class=
\"
tbl
\"
>
\n
"
)
if
self
.
caption
:
out
.
write
(
" <caption>
%
s</caption>
\n
"
%
htmlEncode
(
self
.
reformatTextValue
(
self
.
caption
)))
if
embeedcss
:
out
.
write
(
" <caption style=
\"
font:italic 16px 'Trebuchet MS',Verdana,Arial,Helvetica,sans-serif;padding:0 0 5px;text-align:right;white-space:normal;
\"
>
%
s</caption>
\n
"
%
htmlEncode
(
self
.
reformatTextValue
(
self
.
caption
)))
else
:
out
.
write
(
" <caption>
%
s</caption>
\n
"
%
htmlEncode
(
self
.
reformatTextValue
(
self
.
caption
)))
out
.
write
(
" <thead>
\n
"
)
headerRow
=
tblRow
(
len
(
columns
),
{
"align"
:
"center"
,
"valign"
:
"top"
,
"bold"
:
True
,
"header"
:
True
})
headerRow
.
cells
=
columns
header_rows
=
[
headerRow
]
header_rows
.
extend
([
row
for
row
in
self
.
rows
if
self
.
getValue
(
"header"
)])
last_row
=
header_rows
[
len
(
header_rows
)
-
1
]
for
row
in
header_rows
:
out
.
write
(
" <tr>
\n
"
)
...
...
@@ -353,7 +359,12 @@ class table(object):
attr
+=
" align=
\"
%
s
\"
"
%
align
if
valign
:
attr
+=
" valign=
\"
%
s
\"
"
%
valign
out
.
write
(
" <th
%
s>
\n
"
%
attr
)
css
=
""
if
embeedcss
:
css
=
" style=
\"
border:none;color:#003399;font-size:16px;font-weight:normal;white-space:nowrap;padding:3px 10px;
\"
"
if
row
==
last_row
:
css
=
css
[:
-
1
]
+
"padding-bottom:5px;
\"
"
out
.
write
(
" <th
%
s
%
s>
\n
"
%
(
attr
,
css
))
if
th
is
not
None
:
out
.
write
(
"
%
s
\n
"
%
htmlEncode
(
th
.
text
))
out
.
write
(
" </th>
\n
"
)
...
...
@@ -399,7 +410,12 @@ class table(object):
rows
[
q
]
.
cells
[
i
]
=
colspan
if
style
:
attr
+=
" style=
\"
%
s
\"
"
%
style
out
.
write
(
" <td
%
s>
\n
"
%
attr
)
css
=
""
if
embeedcss
:
css
=
" style=
\"
border:none;border-bottom:1px solid #CCCCCC;color:#666699;padding:6px 8px;white-space:nowrap;
\"
"
if
r
==
0
:
css
=
css
[:
-
1
]
+
"border-top:2px solid #6678B1;
\"
"
out
.
write
(
" <td
%
s
%
s>
\n
"
%
(
attr
,
css
))
if
th
is
not
None
:
out
.
write
(
"
%
s
\n
"
%
htmlEncode
(
td
.
text
))
out
.
write
(
" </td>
\n
"
)
...
...
@@ -423,8 +439,8 @@ html, body {font-family: Lucida Console, Courier New, Courier;font-size: 16px;co
.tbl span{display:block;white-space:nowrap;}
.tbl thead tr:last-child th {padding-bottom:5px;}
.tbl tbody tr:first-child td {border-top:2px solid #6678B1;}
.tbl th{color:#003399;font-size:16px;font-weight:normal;white-space:nowrap;padding:3px 10px;}
.tbl td{border-bottom:1px solid #CCCCCC;color:#666699;padding:6px 8px;white-space:nowrap;}
.tbl th{
border:none;
color:#003399;font-size:16px;font-weight:normal;white-space:nowrap;padding:3px 10px;}
.tbl td{border
:none;border
-bottom:1px solid #CCCCCC;color:#666699;padding:6px 8px;white-space:nowrap;}
.tbl tbody tr:hover td{color:#000099;}
.tbl caption{font:italic 16px "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;padding:0 0 5px;text-align:right;white-space:normal;}
</style>
...
...
@@ -452,7 +468,7 @@ def getStdoutFilename():
def
detectHtmlOutputType
(
requestedType
):
if
requestedType
==
"txt"
:
return
False
elif
requestedType
==
"html"
:
elif
requestedType
in
[
"html"
,
"moinwiki"
]
:
return
True
else
:
if
sys
.
stdout
.
isatty
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment