Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.recipe.build
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
slapos.recipe.build
Commits
20c3d8be
Commit
20c3d8be
authored
Sep 05, 2012
by
Cédric de Saint Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test that forbid-download-cache works
parent
eb486afa
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
113 additions
and
4 deletions
+113
-4
.gitignore
.gitignore
+1
-1
slapos/recipe/build/tests.py
slapos/recipe/build/tests.py
+106
-0
slapos/recipe/gitclone.py
slapos/recipe/gitclone.py
+6
-3
No files found.
.gitignore
View file @
20c3d8be
*pyc
build
/
build
dist
slapos.recipe.build.egg-info
slapos/recipe/build/tests.py
0 → 100644
View file @
20c3d8be
from
zope.testing
import
doctest
from
zope.testing
import
renormalizing
import
os
import
re
import
shutil
import
stat
import
tempfile
import
unittest
import
zc.buildout.testing
import
zc.buildout.tests
optionflags
=
(
doctest
.
ELLIPSIS
|
doctest
.
NORMALIZE_WHITESPACE
)
GIT_REPOSITORY
=
'http://git.erp5.org/repos/slapos.recipe.build.git'
BAD_GIT_REPOSITORY
=
'http://git.erp5.org/repos/nowhere'
REVISION
=
'2566127'
def
setUp
(
test
):
zc
.
buildout
.
testing
.
buildoutSetUp
(
test
)
zc
.
buildout
.
testing
.
install_develop
(
'slapos.recipe.build'
,
test
)
class
GitCloneNonInformativeTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
dir
=
os
.
path
.
realpath
(
tempfile
.
mkdtemp
())
def
tearDown
(
self
):
shutil
.
rmtree
(
self
.
dir
)
for
var
in
os
.
environ
.
keys
():
if
var
.
startswith
(
'SRB_'
):
del
os
.
environ
[
var
]
def
write_file
(
self
,
filename
,
contents
,
mode
=
stat
.
S_IREAD
|
stat
.
S_IWUSR
):
path
=
os
.
path
.
join
(
self
.
dir
,
filename
)
fh
=
open
(
path
,
'w'
)
fh
.
write
(
contents
)
fh
.
close
()
os
.
chmod
(
path
,
mode
)
return
path
def
make_recipe
(
self
,
buildout
,
name
,
options
):
from
slapos.recipe.gitclone
import
Recipe
parts_directory_path
=
os
.
path
.
join
(
self
.
dir
,
'test_parts'
)
bo
=
{
'buildout'
:
{
'parts-directory'
:
parts_directory_path
,
'directory'
:
self
.
dir
,
}
}
bo
.
update
(
buildout
)
return
Recipe
(
bo
,
name
,
options
)
def
test_using_download_cache_if_git_fails
(
self
):
from
slapos.recipe.gitclone
import
GIT_CLONE_ERROR_MESSAGE
,
\
GIT_CLONE_CACHE_ERROR_MESSAGE
recipe
=
self
.
make_recipe
({},
'test'
,
{
'repository'
:
BAD_GIT_REPOSITORY
,
'forbid-download-cache'
:
'false'
,
})
os
.
chdir
(
self
.
dir
)
try
:
recipe
.
install
()
# Should have raised before.
self
.
assertTrue
(
False
)
except
zc
.
buildout
.
UserError
,
e
:
self
.
assertEquals
(
e
.
message
,
GIT_CLONE_CACHE_ERROR_MESSAGE
)
def
test_not_using_download_cache_if_forbidden
(
self
):
from
slapos.recipe.gitclone
import
GIT_CLONE_ERROR_MESSAGE
,
\
GIT_CLONE_ERROR_MESSAGE
recipe
=
self
.
make_recipe
({},
'test'
,
{
'repository'
:
BAD_GIT_REPOSITORY
,
'forbid-download-cache'
:
'true'
,
})
os
.
chdir
(
self
.
dir
)
try
:
recipe
.
install
()
# Should have raised before.
self
.
assertTrue
(
False
)
except
zc
.
buildout
.
UserError
,
e
:
self
.
assertEquals
(
e
.
message
,
GIT_CLONE_ERROR_MESSAGE
)
def
test_suite
():
suite
=
unittest
.
TestSuite
((
doctest
.
DocFileSuite
(
'README.rst'
,
module_relative
=
False
,
setUp
=
setUp
,
tearDown
=
zc
.
buildout
.
testing
.
buildoutTearDown
,
optionflags
=
optionflags
,
checker
=
renormalizing
.
RENormalizing
([
zc
.
buildout
.
testing
.
normalize_path
,
(
re
.
compile
(
r'http://localhost:\
d+
'), '
http
:
//
test
.
server
'),
# Clean up the variable hashed filenames to avoid spurious test failures
(re.compile(r'
[
a
-
f0
-
9
]{
32
}
'), ''),
]),
),
unittest.makeSuite(GitCloneNonInformativeTests),
))
return suite
if __name__ == '
__main__
':
unittest.main(defaultTest='
test_suite
')
slapos/recipe/gitclone.py
View file @
20c3d8be
...
...
@@ -53,6 +53,10 @@ GIT_DEFAULT_REMOTE_NAME = 'origin'
GIT_DEFAULT_BRANCH_NAME
=
'master'
TRUE_VALUES
=
[
'y'
,
'yes'
,
'1'
,
'true'
]
GIT_CLONE_ERROR_MESSAGE
=
'Impossible to clone repository.'
GIT_CLONE_CACHE_ERROR_MESSAGE
=
'Impossible to clone repository and '
\
'impossible to download from cache.'
def
upload_network_cached
(
path
,
name
,
revision
,
networkcache_options
):
"""
Creates uploads repository to cache.
...
...
@@ -185,11 +189,10 @@ class Recipe(object):
if
os
.
path
.
exists
(
self
.
location
):
shutil
.
rmtree
(
self
.
location
)
if
self
.
forbid_download_cache
:
raise
UserError
(
'Impossible to clone repository.'
)
raise
UserError
(
GIT_CLONE_ERROR_MESSAGE
)
if
not
download_network_cached
(
self
.
location
,
self
.
name
,
self
.
revision
,
self
.
networkcache
):
raise
UserError
(
'Impossible to clone repository and impossible to '
'download from cache.'
)
raise
UserError
(
GIT_CLONE_CACHE_ERROR_MESSAGE
)
return
[
self
.
location
]
...
...
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