-
Notifications
You must be signed in to change notification settings - Fork 4
/
report_html.py
141 lines (119 loc) · 5.48 KB
/
report_html.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# MIT License
#
# Copyright (c) 2020-2024 SCRUTINY developers
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import argparse
from datetime import datetime
from dominate import document, tags
from dominate.util import raw
import jsonpickle
from scrutiny.htmlutils import show_hide_div, show_all_button
from scrutiny.htmlutils import hide_all_button, default_button
from scrutiny.interfaces import ContrastState
TOOLTIP_TEXT = {
ContrastState.MATCH: "Devices seem to match",
ContrastState.WARN: "There seem to be some differences worth checking",
ContrastState.SUSPICIOUS: "Devices probably don't match"
}
RESULT_TEXT = {
ContrastState.MATCH: lambda x:
"None of the modules raised suspicion during the verification process.",
ContrastState.WARN: lambda x:
"There seem to be some differences worth checking. " + str(x) +
" module(s) report inconsistencies.",
ContrastState.SUSPICIOUS: lambda x:
str(x) + " module(s) report suspicious differences between profiled and "
"reference devices. The verification process may have been unsuccessful "
"and compared devices are different."
}
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("-v", "--verification-profile",
help="Input verification JSON profile",
action="store", metavar="file",
required=True)
parser.add_argument("-o", "--output-file",
help="Name of output file",
action="store", metavar="outfile",
required=False, default="comparison.html")
parser.add_argument("-e", "--exclude-style-and-scripts",
help="Link CSS and JavaScript from report instead of "
"inlining",
action="store_true")
args = parser.parse_args()
with open("data/script.js", "r", encoding="utf-8") as js, \
open("data/style.css", "r", encoding="utf-8") as css:
script = "\n" + js.read() + "\n"
style = "\n" + css.read() + "\n"
with open(args.verification_profile, "r") as f:
contrast = jsonpickle.decode(f.read())
doc = document(title='Comparison of smart cards')
with doc.head:
if args.exclude_style_and_scripts:
tags.link(rel="stylesheet", href="style.css")
tags.script(type="text/javascript", src="script.js")
else:
tags.style(raw(style))
tags.script(raw(script), type="text/javascript")
with doc:
tags.button("Back to Top", onclick="backToTop()",
id="topButton", cls="floatingbutton")
intro_div = tags.div(id="intro")
with intro_div:
tags.h1(
"Verification of " + contrast.prof_name +
" against " + contrast.ref_name
)
tags.p("Generated on: " +
datetime.now().strftime("%d/%m/%Y %H:%M:%S"))
tags.p("Generated from: " + args.verification_profile)
tags.h2("Verification results")
tags.h4("Ordered results from tested modules:")
worst_contrast_state = ContrastState.MATCH
suspicions = 0
with tags.div(id="modules"):
module_count: int = 0
for m in contrast.contrasts:
divname = m.module_name + str(module_count)
contrast_class = m.get_state()
if contrast_class.value > worst_contrast_state.value:
worst_contrast_state = contrast_class
if contrast_class.value >= ContrastState.WARN.value:
suspicions += 1
with intro_div:
with tags.span(cls="dot " + contrast_class.name.lower()):
tags.span(
TOOLTIP_TEXT[contrast_class],
cls="tooltiptext " + contrast_class.name.lower())
m.project_html_intro()
module_div = show_hide_div(divname, hide=True)
with module_div:
m.project_html(contrast.ref_name, contrast.prof_name)
tags.br()
module_count += 1
with intro_div:
tags.br()
tags.p(RESULT_TEXT[worst_contrast_state](suspicions))
tags.h3("Quick visibility settings")
show_all_button()
hide_all_button()
default_button()
with open(args.output_file, "w", encoding="utf-8") as f:
f.write(str(doc))