Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
Jérome Perrin
setuptools
Commits
d337edee
Commit
d337edee
authored
May 06, 2009
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more build_clib cleanup + test coverage
parent
5c0bfa1f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
4 deletions
+60
-4
command/build_clib.py
command/build_clib.py
+3
-4
tests/test_build_clib.py
tests/test_build_clib.py
+57
-0
No files found.
command/build_clib.py
View file @
d337edee
...
...
@@ -86,7 +86,7 @@ class build_clib (Command):
if
self
.
include_dirs
is
None
:
self
.
include_dirs
=
self
.
distribution
.
include_dirs
or
[]
if
type
(
self
.
include_dirs
)
is
StringType
:
if
isinstance
(
self
.
include_dirs
,
str
)
:
self
.
include_dirs
=
string
.
split
(
self
.
include_dirs
,
os
.
pathsep
)
...
...
@@ -170,8 +170,7 @@ class build_clib (Command):
filenames
=
[]
for
(
lib_name
,
build_info
)
in
self
.
libraries
:
sources
=
build_info
.
get
(
'sources'
)
if
(
sources
is
None
or
type
(
sources
)
not
in
(
ListType
,
TupleType
)
):
if
sources
is
None
or
not
isinstance
(
sources
,
(
list
,
tuple
)):
raise
DistutilsSetupError
,
\
(
"in 'libraries' option (library '%s'), "
"'sources' must be present and must be "
...
...
@@ -183,7 +182,7 @@ class build_clib (Command):
def
build_libraries
(
self
,
libraries
):
for
(
lib_name
,
build_info
)
in
libraries
:
sources
=
build_info
.
get
(
'sources'
)
if
sources
is
None
or
type
(
sources
)
not
in
(
ListType
,
TupleType
):
if
sources
is
None
or
not
isinstance
(
sources
,
(
list
,
tuple
)
):
raise
DistutilsSetupError
,
\
(
"in 'libraries' option (library '%s'), "
+
"'sources' must be present and must be "
+
...
...
tests/test_build_clib.py
View file @
d337edee
...
...
@@ -39,6 +39,63 @@ class BuildCLibTestCase(support.TempdirManager,
libs
=
[(
'name'
,
{}),
(
'name'
,
{
'ok'
:
'good'
})]
cmd
.
check_library_list
(
libs
)
def
test_get_source_files
(
self
):
pkg_dir
,
dist
=
self
.
create_dist
()
cmd
=
build_clib
(
dist
)
# "in 'libraries' option 'sources' must be present and must be
# a list of source filenames
cmd
.
libraries
=
[(
'name'
,
{})]
self
.
assertRaises
(
DistutilsSetupError
,
cmd
.
get_source_files
)
cmd
.
libraries
=
[(
'name'
,
{
'sources'
:
1
})]
self
.
assertRaises
(
DistutilsSetupError
,
cmd
.
get_source_files
)
cmd
.
libraries
=
[(
'name'
,
{
'sources'
:
[
'a'
,
'b'
]})]
self
.
assertEquals
(
cmd
.
get_source_files
(),
[
'a'
,
'b'
])
cmd
.
libraries
=
[(
'name'
,
{
'sources'
:
(
'a'
,
'b'
)})]
self
.
assertEquals
(
cmd
.
get_source_files
(),
[
'a'
,
'b'
])
cmd
.
libraries
=
[(
'name'
,
{
'sources'
:
(
'a'
,
'b'
)}),
(
'name2'
,
{
'sources'
:
[
'c'
,
'd'
]})]
self
.
assertEquals
(
cmd
.
get_source_files
(),
[
'a'
,
'b'
,
'c'
,
'd'
])
def
test_build_libraries
(
self
):
pkg_dir
,
dist
=
self
.
create_dist
()
cmd
=
build_clib
(
dist
)
class
FakeCompiler
:
def
compile
(
*
args
,
**
kw
):
pass
create_static_lib
=
compile
cmd
.
compiler
=
FakeCompiler
()
# build_libraries is also doing a bit of typoe checking
lib
=
[(
'name'
,
{
'sources'
:
'notvalid'
})]
self
.
assertRaises
(
DistutilsSetupError
,
cmd
.
build_libraries
,
lib
)
lib
=
[(
'name'
,
{
'sources'
:
list
()})]
cmd
.
build_libraries
(
lib
)
lib
=
[(
'name'
,
{
'sources'
:
tuple
()})]
cmd
.
build_libraries
(
lib
)
def
test_finalize_options
(
self
):
pkg_dir
,
dist
=
self
.
create_dist
()
cmd
=
build_clib
(
dist
)
cmd
.
include_dirs
=
'one-dir'
cmd
.
finalize_options
()
self
.
assertEquals
(
cmd
.
include_dirs
,
[
'one-dir'
])
cmd
.
include_dirs
=
None
cmd
.
finalize_options
()
self
.
assertEquals
(
cmd
.
include_dirs
,
[])
cmd
.
distribution
.
libraries
=
'WONTWORK'
self
.
assertRaises
(
DistutilsSetupError
,
cmd
.
finalize_options
)
def
test_suite
():
return
unittest
.
makeSuite
(
BuildCLibTestCase
)
...
...
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