Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
core
tarantool
Commits
fb3fa606
Commit
fb3fa606
authored
12 years ago
by
Dmitry E. Oboukhov
Browse files
Options
Downloads
Patches
Plain Diff
test framework can runtime skip tests
parent
48376273
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/box/lua_box_uuid.skipcond
+13
-0
13 additions, 0 deletions
test/box/lua_box_uuid.skipcond
test/lib/test_suite.py
+31
-8
31 additions, 8 deletions
test/lib/test_suite.py
with
44 additions
and
8 deletions
test/box/lua_box_uuid.skipcond
0 → 100644
+
13
−
0
View file @
fb3fa606
# encoding: tarantool
import os
import sys
import re
uuid = exec admin "lua box.uuid_hex()"
if not re.search(re.compile('^\s+-\s+[a-f0-9]{32}\s*$', re.M), uuid):
if re.search('box.uuid\(\):', uuid):
self.skip = 1
This diff is collapsed.
Click to expand it.
test/lib/test_suite.py
+
31
−
8
View file @
fb3fa606
...
...
@@ -70,7 +70,11 @@ def print_tail_n(filename, num_lines):
class
Test
:
"""
An individual test file. A test object can run itself
and remembers completion state of the run.
"""
and remembers completion state of the run.
If file <test_name>.skipcond is exists it will be executed before
test and if it sets self.skip to True value the test will be skipped.
"""
def
__init__
(
self
,
name
,
args
,
suite_ini
):
"""
Initialize test properties: path to test file, path to
...
...
@@ -80,6 +84,7 @@ class Test:
self
.
args
=
args
self
.
suite_ini
=
suite_ini
self
.
result
=
name
.
replace
(
"
.test
"
,
"
.result
"
)
self
.
skip_cond
=
name
.
replace
(
"
.test
"
,
"
.skipcond
"
)
self
.
tmp_result
=
os
.
path
.
join
(
self
.
args
.
vardir
,
os
.
path
.
basename
(
self
.
result
))
self
.
reject
=
"
{0}/test/{1}
"
.
format
(
self
.
args
.
builddir
,
...
...
@@ -102,13 +107,24 @@ class Test:
exception. The exception is raised only if is_force flag is
not set.
"""
diagnostics
=
"
unknown
"
save_stdout
=
sys
.
stdout
builddir
=
self
.
args
.
builddir
try
:
sys
.
stdout
=
FilteredStream
(
self
.
tmp_result
)
stdout_fileno
=
sys
.
stdout
.
stream
.
fileno
()
execfile
(
self
.
name
,
dict
(
locals
(),
**
server
.
__dict__
))
self
.
skip
=
0
if
os
.
path
.
exists
(
self
.
skip_cond
):
sys
.
stdout
=
FilteredStream
(
self
.
tmp_result
)
stdout_fileno
=
sys
.
stdout
.
stream
.
fileno
()
execfile
(
self
.
skip_cond
,
dict
(
locals
(),
**
server
.
__dict__
))
sys
.
stdout
.
close
()
sys
.
stdout
=
save_stdout
if
not
self
.
skip
:
sys
.
stdout
=
FilteredStream
(
self
.
tmp_result
)
stdout_fileno
=
sys
.
stdout
.
stream
.
fileno
()
execfile
(
self
.
name
,
dict
(
locals
(),
**
server
.
__dict__
))
self
.
is_executed_ok
=
True
except
Exception
as
e
:
traceback
.
print_exc
(
e
)
...
...
@@ -120,16 +136,23 @@ class Test:
self
.
is_executed
=
True
if
self
.
is_executed_ok
and
os
.
path
.
isfile
(
self
.
result
):
self
.
is_equal_result
=
filecmp
.
cmp
(
self
.
result
,
self
.
tmp_result
)
if
not
self
.
skip
:
if
self
.
is_executed_ok
and
os
.
path
.
isfile
(
self
.
result
):
self
.
is_equal_result
=
filecmp
.
cmp
(
self
.
result
,
self
.
tmp_result
)
else
:
self
.
is_equal_result
=
1
if
self
.
args
.
valgrind
:
self
.
is_valgrind_clean
=
\
check_valgrind_log
(
server
.
valgrind_log
)
==
False
if
self
.
is_executed_ok
and
self
.
is_equal_result
and
self
.
is_valgrind_clean
:
if
self
.
skip
:
print
"
[ runtime skip ]
"
elif
self
.
is_executed_ok
and
self
.
is_equal_result
and
self
.
is_valgrind_clean
:
print
"
[ pass ]
"
os
.
remove
(
self
.
tmp_result
)
if
os
.
path
.
exists
(
self
.
tmp_result
):
os
.
remove
(
self
.
tmp_result
)
elif
(
self
.
is_executed_ok
and
not
self
.
is_equal_result
and
not
os
.
path
.
isfile
(
self
.
result
)):
os
.
rename
(
self
.
tmp_result
,
self
.
result
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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