Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
Kirill Smelkov
ZODB
Commits
48315c67
Commit
48315c67
authored
Apr 17, 2023
by
dieter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add forgotten tests
parent
a0867aa0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
96 additions
and
0 deletions
+96
-0
src/ZODB/tests/test_racetest.py
src/ZODB/tests/test_racetest.py
+96
-0
No files found.
src/ZODB/tests/test_racetest.py
0 → 100644
View file @
48315c67
##############################################################################
#
# Copyright (c) 2019 - 2023 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
from
time
import
sleep
from
unittest
import
TestCase
from
.racetest
import
TestGroup
class
TestGroupTests
(
TestCase
):
def
setUp
(
self
):
self
.
_failed
=
failed
=
[]
case_mockup
=
SimpleNamespace
(
fail
=
failed
.
append
)
self
.
tg
=
TestGroup
(
case_mockup
)
@
property
def
failed
(
self
):
return
"
\
n
\
n
"
.
join
(
self
.
_failed
)
def
test_success
(
self
):
tg
=
self
.
tg
tg
.
go
(
tg_test_function
)
tg
.
wait
(
0.1
)
self
.
assertEqual
(
self
.
failed
,
""
)
def
test_failure
(
self
):
tg
=
self
.
tg
tg
.
go
(
tg_test_function
,
T_FAIL
)
tg
.
wait
(
0.1
)
self
.
assertEqual
(
self
.
failed
,
"0 failed"
)
def
test_exception
(
self
):
tg
=
self
.
tg
tg
.
go
(
tg_test_function
,
T_EXC
)
tg
.
wait
(
0.1
)
self
.
assertIn
(
"Unhandled exception"
,
self
.
failed
)
self
.
assertIn
(
"in thread T0"
,
self
.
failed
)
def
test_timeout
(
self
):
tg
=
self
.
tg
tg
.
go
(
tg_test_function
,
T_SLOW
)
tg
.
wait
(
0.1
)
self
.
assertEqual
(
self
.
failed
,
"test did not finish within 0.1 seconds"
)
def
test_thread_unfinished
(
self
):
tg
=
self
.
tg
tg
.
go
(
tg_test_function
,
T_SLOW
)
tg
.
go
(
tg_test_function
,
T_SLOW
,
2
)
tg
.
go
(
tg_test_function
,
T_SLOW
,
wait_time
=
2
)
tg
.
wait
(
0.1
)
self
.
assertEqual
(
self
.
failed
,
"test did not finish within 0.1 seconds
\
n
\
n
"
"threads did not finish: ['T2']"
)
T_SUCCESS
=
0
T_SLOW
=
1
T_EXC
=
3
T_FAIL
=
4
def
tg_test_function
(
tg
,
tx
,
mode
=
T_SUCCESS
,
waits
=
1
,
wait_time
=
0.2
):
if
mode
==
T_SUCCESS
:
return
if
mode
==
T_FAIL
:
tg
.
fail
(
"%d failed"
%
tx
)
return
if
mode
==
T_EXC
:
raise
ValueError
(
str
(
tx
))
while
waits
:
waits
-=
1
if
tg
.
failed
():
return
sleep
(
wait_time
)
try
:
from
types
import
SimpleNamespace
except
ImportError
:
# PY2
class
SimpleNamespace
(
object
):
def
__init__
(
self
,
**
kw
):
self
.
__dict__
.
update
(
kw
)
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