Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
16b5ee98
Commit
16b5ee98
authored
Jan 05, 2009
by
Stefan H. Holek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merged trunk r94458 and r94532 into 2.10 branch.
Replace messy tests with cleaned-up versions from trunk.
parent
ff702fc5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
25 deletions
+40
-25
lib/python/App/tests/test_version_txt.py
lib/python/App/tests/test_version_txt.py
+28
-18
lib/python/App/version_txt.py
lib/python/App/version_txt.py
+12
-7
No files found.
lib/python/App/tests/test_version_txt.py
View file @
16b5ee98
...
...
@@ -15,41 +15,51 @@
$Id$
"""
import
os
import
unittest
import
Zope2
import
App.version_txt
class
VersionTextTestCase
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
fn
=
os
.
path
.
join
(
os
.
path
.
dirname
(
Zope2
.
__file__
),
"version.txt"
)
App
.
version_txt
.
_test_reset
()
self
.
_resetModuleGlobals
()
def
tearDown
(
self
):
try
:
os
.
unlink
(
self
.
fn
)
except
OSError
:
pass
import
os
from
App.version_txt
import
_version_file
if
_version_file
is
not
None
:
os
.
unlink
(
_version_file
)
self
.
_resetModuleGlobals
()
def
_resetModuleGlobals
(
self
):
from
App
import
version_txt
version_txt
.
_filename
=
'version.txt'
version_txt
.
_version_file
=
None
version_txt
.
_version_string
=
None
version_txt
.
_zope_version
=
None
def
writeVersion
(
self
,
s
):
f
=
open
(
self
.
fn
,
'w'
)
f
.
write
(
s
)
f
.
close
()
import
os
import
tempfile
from
App
import
version_txt
assert
version_txt
.
_version_file
is
None
f
,
version_txt
.
_version_file
=
tempfile
.
mkstemp
()
os
.
write
(
f
,
s
)
os
.
close
(
f
)
def
test_without_version_txt
(
self
):
self
.
assertEqual
(
App
.
version_txt
.
getZopeVersion
(),
(
-
1
,
-
1
,
-
1
,
''
,
-
1
))
from
App
import
version_txt
from
App.version_txt
import
getZopeVersion
version_txt
.
_filename
=
''
self
.
assertEqual
(
getZopeVersion
(),
(
-
1
,
-
1
,
-
1
,
''
,
-
1
))
def
test_with_version_txt_final
(
self
):
from
App.version_txt
import
getZopeVersion
self
.
writeVersion
(
"Zope 2.6.1 (source release, python 2.1, linux2)"
)
self
.
assertEqual
(
App
.
version_txt
.
getZopeVersion
(),
(
2
,
6
,
1
,
''
,
-
1
))
self
.
assertEqual
(
getZopeVersion
(),
(
2
,
6
,
1
,
''
,
-
1
))
def
test_with_version_txt_beta
(
self
):
from
App.version_txt
import
getZopeVersion
self
.
writeVersion
(
"Zope 2.6.1b2 (source release, python 2.1, linux2)"
)
self
.
assertEqual
(
App
.
version_txt
.
getZopeVersion
(),
(
2
,
6
,
1
,
'b'
,
2
))
self
.
assertEqual
(
getZopeVersion
(),
(
2
,
6
,
1
,
'b'
,
2
))
def
test_suite
():
...
...
lib/python/App/version_txt.py
View file @
16b5ee98
...
...
@@ -14,24 +14,29 @@
$id$
"""
import
os
,
sys
,
re
import
os
import
re
import
sys
import
Zope2
_location
=
os
.
path
.
dirname
(
Zope2
.
__file__
)
_filename
=
'version.txt'
_version_file
=
None
_version_string
=
None
_zope_version
=
None
def
_test_reset
():
# Needed for testing.
global
_version_string
,
_zope_version
_version_string
=
None
_zope_version
=
None
def
_get_filename
():
if
_version_file
is
not
None
:
return
_version_file
return
os
.
path
.
join
(
_location
,
_filename
)
def
_prep_version_data
():
global
_version_string
,
_zope_version
if
_version_string
is
None
:
v
=
sys
.
version_info
pyver
=
"python %d.%d.%d, %s"
%
(
v
[
0
],
v
[
1
],
v
[
2
],
sys
.
platform
)
fn
=
os
.
path
.
join
(
os
.
path
.
dirname
(
Zope2
.
__file__
),
'version.txt'
)
fn
=
_get_filename
(
)
expr
=
re
.
compile
(
r'(?P<product>[A-Za-z0-9]+) +(?P<major>[0-9]+)'
'
\
.(?P<mi
n
or>[0-9]+)
\
.(?P<mic
r
o>[0-9]+)'
...
...
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