Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Black
OpenXG UE
Commits
91bfd6a5
Commit
91bfd6a5
authored
Nov 28, 2015
by
Rohit Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added files for autotest framework
parent
28c2943e
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
555 additions
and
0 deletions
+555
-0
cmake_targets/autotests/core.py
cmake_targets/autotests/core.py
+349
-0
cmake_targets/autotests/log.py
cmake_targets/autotests/log.py
+206
-0
No files found.
cmake_targets/autotests/core.py
0 → 100644
View file @
91bfd6a5
This diff is collapsed.
Click to expand it.
cmake_targets/autotests/log.py
0 → 100644
View file @
91bfd6a5
#******************************************************************************
# Eurecom OpenAirInterface
# Copyright(c) 1999 - 2013 Eurecom
# This program is free software; you can redistribute it and/or modify it
# under the terms and conditions of the GNU General Public License,
# version 2, as published by the Free Software Foundation.
# This program is distributed in the hope it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
# The full GNU General Public License is included in this distribution in
# the file called "COPYING".
# Contact Information
# Openair Admin: openair_admin@eurecom.fr
# Openair Tech : openair_tech@eurecom.fr
# Forums : http://forums.eurecom.fsr/openairinterface
# Address : Eurecom, Compus SophiaTech 450, route des chappes, 06451 Biot, France
#*****************************************************************************
# \file log.py
# \brief provides primitives and defines how the logs and statistics are generated
# \author Navid Nikaein
# \date 2013
# \version 0.1
# @ingroup _test
import
sys
import
re
import
time
import
datetime
import
array
import
xml.etree.ElementTree
as
ET
debug
=
False
docfile
=
''
start_time
=
time
.
time
()
testcase_starttime
=
start_time
debug
=
0
stats
=
{
'passed'
:
0
,
'failed'
:
0
,
'skipped'
:
0
,
'internal_errors'
:
0
,
'cmd'
:
0
}
# xml result (jUnit like)
xUnitTestsuites
=
ET
.
Element
(
'testsuites'
)
xUnitTestsuite
=
ET
.
SubElement
(
xUnitTestsuites
,
'testsuite'
)
xUnitTestsuite
.
set
(
'name'
,
'OAI'
)
xUnitTestsuite
.
set
(
'timestamp'
,
datetime
.
datetime
.
fromtimestamp
(
start_time
).
strftime
(
'%Y-%m-%dT%H:%M:%S'
)
)
xUnitTestsuite
.
set
(
'hostname'
,
'localhost'
)
#xUnitSystemOut = ET.SubElement( xUnitTestsuite, 'system-out' )
class
bcolors
:
header
=
'
\033
[95m'
okblue
=
'
\033
[94m'
okgreen
=
'
\033
[92m'
warning
=
'
\033
[93m'
fail
=
'
\033
[91m'
normal
=
'
\033
[0m'
def
__init__
(
self
):
if
not
sys
.
stdout
.
isatty
():
self
.
disable
()
def
disable
(
self
):
self
.
header
=
''
self
.
okblue
=
''
self
.
okgreen
=
''
self
.
warning
=
''
self
.
fail
=
''
self
.
normal
=
''
class
err
(
Exception
):
def
__init__
(
self
,
value
):
self
.
value
=
value
def
__str__
(
self
):
return
repr
(
self
.
value
)
def
writefile
(
logfile
,
message
):
F_testlog
=
open
(
logfile
,
'a'
)
F_testlog
.
write
(
message
+
'
\n
'
)
F_testlog
.
close
()
def
sleep
(
seconds
):
time
.
sleep
(
seconds
)
def
start
():
"""Start the timer for the following testcase."""
global
testcase_starttime
testcase_starttime
=
time
.
time
()
def
set_debug_level
(
level
):
debug
=
level
def
statistics
(
logfile
):
global
start_time
#if stats['passed'] == 0:
# print "no test executed...exiting"
# sys.exit()
total_tests
=
stats
[
'passed'
]
+
stats
[
'failed'
]
+
stats
[
'skipped'
]
total_ex_tests
=
stats
[
'passed'
]
+
stats
[
'failed'
]
elapsed_time
=
time
.
gmtime
(
time
.
time
()
-
start_time
)
print
'
\n
'
log_record
(
'info'
,
'==============================================='
)
log_record
(
'info'
,
'Total tests performed '
+
repr
(
total_tests
))
log_record
(
'info'
,
'Tests passed '
+
repr
(
stats
[
'passed'
]))
log_record
(
'info'
,
'Tests failed '
+
repr
(
stats
[
'failed'
]))
log_record
(
'info'
,
'Tests skipped '
+
repr
(
stats
[
'skipped'
]))
log_record
(
'info'
,
''
)
log_record
(
'info'
,
'Total commands sent '
+
repr
(
stats
[
'cmd'
]))
log_record
(
'info'
,
'Total elapsed time (h:m:s) '
+
time
.
strftime
(
'%H:%M:%S'
,
elapsed_time
))
log_record
(
'info'
,
'==============================================='
)
log_record
(
'info'
,
'Testing pass rate '
+
repr
((
stats
[
'passed'
]
*
100
)
/
total_tests
)
+
'%'
)
log_record
(
'info'
,
'==============================================='
)
writefile
(
logfile
,
'
\n
=====================Results==================='
)
writefile
(
logfile
,
'Total tests performed '
+
repr
(
total_tests
))
writefile
(
logfile
,
'Tests passed '
+
repr
(
stats
[
'passed'
]))
writefile
(
logfile
,
'Tests failed '
+
repr
(
stats
[
'failed'
]))
writefile
(
logfile
,
'Tests skipped '
+
repr
(
stats
[
'skipped'
]))
writefile
(
logfile
,
''
)
writefile
(
logfile
,
'Total commands sent '
+
repr
(
stats
[
'cmd'
]))
writefile
(
logfile
,
'Total elapsed time (h:m:s) '
+
time
.
strftime
(
'%H:%M:%S'
,
elapsed_time
))
writefile
(
logfile
,
'==============================================='
)
writefile
(
logfile
,
'Testing pass rate '
+
repr
((
stats
[
'passed'
]
*
100
)
/
total_tests
)
+
'%'
)
writefile
(
logfile
,
'===============================================
\n
'
)
xUnitTestsuite
.
set
(
'tests'
,
repr
(
total_tests
)
)
xUnitTestsuite
.
set
(
'failures'
,
repr
(
stats
[
'failed'
])
)
xUnitTestsuite
.
set
(
'skipped'
,
repr
(
stats
[
'skipped'
])
)
xUnitTestsuite
.
set
(
'errors'
,
'0'
)
time_delta
=
datetime
.
datetime
.
now
()
-
datetime
.
datetime
.
fromtimestamp
(
start_time
)
xUnitTestsuite
.
set
(
'time'
,
repr
(
time_delta
.
total_seconds
())
)
writefile
(
logfile
+
'.xml'
,
ET
.
tostring
(
xUnitTestsuites
,
encoding
=
"utf-8"
,
method
=
"xml"
)
)
def
log_record
(
level
,
message
):
ts
=
time
.
strftime
(
'%d %b %Y %H:%M'
)
message
=
ts
+
' ['
+
level
+
'] '
+
message
if
level
==
'passed'
:
print
bcolors
.
okgreen
+
message
+
bcolors
.
normal
elif
level
==
'failed'
:
print
bcolors
.
fail
+
message
+
bcolors
.
normal
elif
level
==
'skipped'
:
print
bcolors
.
warning
+
message
+
bcolors
.
normal
else
:
print
message
def
fail
(
case
,
testnum
,
testname
,
conf
,
message
,
diag
,
output
,
trace
):
# report(case, testnum, testname, conf, 'failed', output, diag, message)
report
(
case
,
testnum
,
testname
,
conf
,
'failed'
,
output
,
diag
)
log_record
(
'failed'
,
case
+
testnum
+
' : '
+
testname
+
' ('
+
conf
+
')'
)
if
message
:
log_record
(
'failed'
,
"Output follows:
\n
"
+
message
)
if
trace
:
log_record
(
'failed'
,
"trace file can be found in "
+
trace
+
"
\n
"
)
stats
[
'failed'
]
+=
1
def
failquiet
(
case
,
testnum
,
testname
,
conf
):
log_record
(
'failed'
,
case
+
testnum
+
' :'
+
testname
+
' ('
+
conf
+
')'
)
stats
[
'failed'
]
+=
1
def
ok
(
case
,
testnum
,
testname
,
conf
,
message
,
output
):
report
(
case
,
testnum
,
testname
,
conf
,
'passed'
,
output
)
log_record
(
'passed'
,
case
+
testnum
+
' : '
+
testname
+
' ('
+
conf
+
')'
)
if
message
:
print
bcolors
.
okgreen
+
message
+
bcolors
.
normal
stats
[
'passed'
]
+=
1
def
skip
(
case
,
testnum
,
testname
,
conf
,
message
=
None
,
diag
=
None
,
output
=
None
):
log_record
(
'skipped'
,
case
+
testnum
+
' :'
+
testname
+
' ('
+
conf
+
')'
)
report
(
case
,
testnum
,
testname
,
conf
,
'skipped'
,
output
,
diag
)
if
message
:
log_record
(
'skipped'
,
"Output follows:
\n
"
+
message
)
if
diag
:
log_record
(
'skipped'
,
"Diagnostic:
\n
"
+
diag
)
stats
[
'skipped'
]
+=
1
def
report
(
case
,
test
,
name
,
conf
,
status
,
output
,
diag
=
None
,
desc
=
None
):
writefile
(
output
,
'['
+
status
+
'] '
+
case
+
test
+
' : '
+
name
+
' ('
+
conf
+
')'
)
if
diag
:
writefile
(
output
,
'-------> '
+
diag
)
if
desc
:
writefile
(
output
,
desc
)
#log_record('report', + case + test + ' documented')
e
=
ET
.
SubElement
(
xUnitTestsuite
,
'testcase'
)
e
.
set
(
'name'
,
case
+
'_'
+
test
+
'_'
+
name
)
e
.
set
(
'classname'
,
'shellscript'
)
e
.
set
(
'time'
,
repr
(
time
.
time
()
-
testcase_starttime
)
)
if
status
==
'failed'
:
e
=
ET
.
SubElement
(
e
,
'failure'
)
e
.
set
(
'message'
,
'failed'
)
e
.
text
=
diag
if
status
==
'skipped'
:
e
=
ET
.
SubElement
(
e
,
'skipped'
)
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