Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Semesterprojekt Modulbasiertes Testen
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Trappe
Semesterprojekt Modulbasiertes Testen
Commits
db3bd565
Commit
db3bd565
authored
5 years ago
by
Markus Wieczorek
Browse files
Options
Downloads
Patches
Plain Diff
added log_analyzer
parent
7854fc96
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/log_analyzer/log_analyzer.py
+172
-0
172 additions, 0 deletions
src/test/log_analyzer/log_analyzer.py
with
172 additions
and
0 deletions
src/test/log_analyzer/log_analyzer.py
0 → 100644
+
172
−
0
View file @
db3bd565
import
glob
import
logging
import
argparse
from
configobj
import
ConfigObj
from
file_read_backwards
import
FileReadBackwards
from
decimal
import
Decimal
from
logging.handlers
import
TimedRotatingFileHandler
def
setup_logging
():
"""
Sets up logging so that log files are rotated daily.
:return: nothing
"""
log_handler
=
TimedRotatingFileHandler
(
"
log_analyzer.log
"
,
when
=
"
midnight
"
)
log_formatter
=
logging
.
Formatter
(
'
%(asctime)s
''
:: %(levelname)s
''
:: %(message)s
'
)
log_handler
.
setFormatter
(
log_formatter
)
logger
=
logging
.
getLogger
()
logger
.
addHandler
(
log_handler
)
logger
.
setLevel
(
logging
.
INFO
)
def
setup_argparse
():
"""
Sets up argparse so that testcase and log file location are required parameters
:return: parser object
"""
parser
=
argparse
.
ArgumentParser
(
description
=
"
Was weiss ich...
"
)
parser
.
add_argument
(
"
-t
"
,
type
=
str
,
required
=
True
,
help
=
"
testcase location relative to repo location
"
)
parser
.
add_argument
(
"
-l
"
,
type
=
str
,
required
=
True
,
help
=
"
log file location relative to repo location
"
)
return
parser
.
parse_args
()
def
get_testcases
(
path
):
"""
:param path: path passed as argument
:return: returns a list of *.ini files located in all subdirs
"""
testcases
=
[
f
for
f
in
glob
.
glob
(
path
+
"
**/*.ini
"
,
recursive
=
True
)]
return
testcases
def
get_config
(
config_path
):
"""
:param config_path: needs to be passes as argument
:return: returns a config object
time = config[
'
time
'
]
obj1 = config[
'
objectId1
'
]
obj2 = config[
'
objectId2
'
]
rangeleftborder = config[
'
rangeLeftBorder
'
]
rangerightborder = config[
'
rangeRightBorder
'
]
timeout = config[
'
timeout
'
]
"""
return
ConfigObj
(
config_path
)
def
check_logfile_for_collision
(
logfile
):
"""
Reads logfile from end to start and checks if last line contains a collision
:param logfile:
:return: True if collision was found
"""
with
FileReadBackwards
(
logfile
)
as
file
:
for
line
in
file
:
if
(
"
Collision!
"
)
in
line
:
return
True
def
get_log
(
log_dir
,
logname
,
config
):
"""
Currently does conclusiveness checks
ToDo: Move these checks to separate function
ToDo: Distanz checken
:param log_dir: location of log files
:param logname: corresponds to the name of the testcase file
:param config: config object where safety_distances are stored
:return: currently nothing.
"""
logfiles
=
[
f
for
f
in
glob
.
glob
(
log_dir
+
logname
+
"
lm.log
"
)]
for
l
in
logfiles
:
logging
.
debug
(
"
Matching logs %s
"
,
l
)
location
=
l
.
find
(
"
ACT
"
)
if
check_logfile_for_collision
(
l
):
logging
.
info
(
"
Testcase %s: red
"
,
l
[
location
:
location
+
5
])
logging
.
warning
(
"
Found collision for testcase %s
"
,
l
[
location
:
location
+
5
])
break
safety_distance
=
get_safety_distance
(
l
)
if
not
check_safety_distance
(
safety_distance
,
config
):
logging
.
info
(
"
Testcase %s yellow
"
,
l
[
location
:
location
+
5
])
else
:
# if we are here, we did there was no collision and safety_distance is within limits
if
not
check_distance
(
config
,
l
):
logging
.
info
(
"
Testcase %s: red
"
,
l
[
location
:
location
+
5
])
logging
.
warning
(
"
Found distance does not match! %s
"
,
l
[
location
:
location
+
5
])
else
:
logging
.
info
(
"
testcase %s: green
"
,
l
[
location
:
location
+
5
])
def
get_safety_distance
(
logfile
):
"""
Gets safety_distance from a logfile and returns it
:param logfile:
:return: safety_distance as string
"""
counter
=
0
with
FileReadBackwards
(
logfile
)
as
file
:
for
line
in
file
:
counter
+=
1
if
counter
==
3
:
return
line
[
29
:]
def
check_distance
(
config
,
logfile
):
counter
=
0
with
FileReadBackwards
(
logfile
)
as
file
:
for
line
in
file
:
counter
+=
1
if
counter
==
2
:
distance
=
line
[
50
:]
if
Decimal
(
distance
)
<=
Decimal
(
config
[
'
rangeLeftBorder
'
])
or
Decimal
(
distance
)
>=
Decimal
(
config
[
'
rangeRightBorder
'
]):
return
False
else
:
return
True
def
check_safety_distance
(
safety_distance
,
config
):
"""
Checks if safety_distance is within the specified range
:param safety_distance: safety_distance found in log files
:param config: safety_distance as defined in the config files
:return: False if these do not match, True otherwise
"""
if
Decimal
(
safety_distance
)
<=
Decimal
(
config
[
'
rangeLeftBorder
'
])
or
Decimal
(
safety_distance
)
>=
Decimal
(
config
[
'
rangeRightBorder
'
]):
return
False
else
:
return
True
def
main
():
args
=
setup_argparse
()
setup_logging
()
# example run as follows:
# python main.py -t config/ -l log/
testcases
=
get_testcases
(
args
.
t
)
for
testcase
in
testcases
:
config
=
get_config
(
testcase
)
location
=
testcase
.
find
(
"
ACT
"
)
get_log
(
args
.
l
,
testcase
[
location
:
location
+
8
]
+
"
0_
"
,
config
)
logging
.
debug
(
"
got config for %s
"
,
testcase
)
if
__name__
==
'
__main__
'
:
main
()
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment