Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
106
Merge Requests
106
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
12ee140d
Commit
12ee140d
authored
Oct 23, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Plain Diff
Update Release Candidate
parents
0f90bd90
8f7de0c4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
114 additions
and
39 deletions
+114
-39
setup.py
setup.py
+1
-1
slapos/recipe/random.py
slapos/recipe/random.py
+32
-33
slapos/test/recipe/test_random.py
slapos/test/recipe/test_random.py
+76
-3
software/erp5/test/test/benchmarks.py
software/erp5/test/test/benchmarks.py
+1
-1
software/monitor/software.cfg
software/monitor/software.cfg
+2
-0
stack/slapos.cfg
stack/slapos.cfg
+2
-1
No files found.
setup.py
View file @
12ee140d
...
...
@@ -28,7 +28,7 @@ from setuptools import setup, find_packages
import
glob
import
os
version
=
'1.0.3
69
'
version
=
'1.0.3
73
'
name
=
'slapos.cookbook'
long_description
=
open
(
"README.rst"
).
read
()
...
...
slapos/recipe/random.py
View file @
12ee140d
...
...
@@ -150,32 +150,31 @@ class Password(object):
except
KeyError
:
self
.
storage_path
=
options
[
'storage-path'
]
=
os
.
path
.
join
(
buildout
[
'buildout'
][
'parts-directory'
],
name
)
passwd_dict
=
{
''
:
options
.
get
(
'passwd'
)
}
passwd_option
=
options
.
get
(
'passwd'
)
passwd_dict
=
{
''
:
passwd_option
}
if
self
.
storage_path
:
try
:
with
open
(
self
.
storage_path
)
as
f
:
content
=
f
.
read
().
strip
(
'
\
n
'
)
# new format: the file contains password and hashes in json format
try
:
passwd_dict
=
json
.
loads
(
content
)
if
sys
.
version_info
<
(
3
,
):
passwd_dict
=
{
k
:
v
.
encode
(
'utf-8'
)
for
k
,
v
in
passwd_dict
.
items
()}
except
ValueError
:
# old format: the file only contains the password in plain text
passwd_dict
[
''
]
=
content
except
IOError
as
e
:
if
e
.
errno
!=
errno
.
ENOENT
:
raise
if
passwd_option
and
passwd_dict
[
''
]
!=
passwd_option
:
passwd_dict
=
{
''
:
passwd_option
}
if
not
passwd_dict
[
''
]:
if
self
.
storage_path
:
self
.
_needs_migration
=
False
try
:
with
open
(
self
.
storage_path
)
as
f
:
content
=
f
.
read
().
strip
(
'
\
n
'
)
# new format: the file contains password and hashes in json format
try
:
passwd_dict
=
json
.
loads
(
content
)
if
sys
.
version_info
<
(
3
,
):
passwd_dict
=
{
k
:
v
.
encode
()
for
k
,
v
in
passwd_dict
.
items
()}
except
ValueError
:
# old format: the file only contains the password in plain text
passwd_dict
[
''
]
=
content
self
.
_needs_migration
=
True
except
IOError
as
e
:
if
e
.
errno
!=
errno
.
ENOENT
:
raise
if
not
passwd_dict
[
''
]:
passwd_dict
[
''
]
=
self
.
generatePassword
(
int
(
options
.
get
(
'bytes'
,
'16'
)))
self
.
update
=
self
.
install
options
[
'passwd'
]
=
passwd_dict
[
''
]
passwd_dict
[
''
]
=
self
.
generatePassword
(
int
(
options
.
get
(
'bytes'
,
'16'
)))
self
.
update
=
self
.
install
options
[
'passwd'
]
=
passwd_dict
[
''
]
class
HashedPasswordDict
(
dict
):
def
__missing__
(
self
,
key
):
...
...
@@ -202,17 +201,17 @@ class Password(object):
def
install
(
self
):
if
self
.
storage_path
:
serialized
=
json
.
dumps
(
self
.
passwd_dict
,
sort_keys
=
True
)
stored
=
None
try
:
# The following 2 lines are just an optimization to avoid recreating
# the file with the same content.
if
self
.
create_once
and
os
.
stat
(
self
.
storage_path
).
st_size
and
not
self
.
_needs_migration
:
return
os
.
unlink
(
self
.
storage_path
)
except
OSError
as
e
:
with
open
(
self
.
storage_path
)
as
f
:
stored
=
f
.
read
()
except
IOError
as
e
:
if
e
.
errno
!=
errno
.
ENOENT
:
raise
with
open
(
self
.
storage_path
,
'w'
)
as
f
:
json
.
dump
(
self
.
passwd_dict
,
f
)
if
stored
!=
serialized
:
with
open
(
self
.
storage_path
,
'w'
)
as
f
:
f
.
write
(
serialized
)
if
not
self
.
create_once
:
return
self
.
storage_path
...
...
slapos/test/recipe/test_random.py
View file @
12ee140d
# coding: utf-8
import
json
import
os
import
shutil
...
...
@@ -44,8 +45,33 @@ class TestPassword(unittest.TestCase):
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
},
"another"
).
install
()
self
.
assertEqual
(
self
.
buildout
[
"another"
][
"passwd"
],
passwd
)
def
test_storage_path_passwd_set_in_options
(
self
):
tf
=
tempfile
.
NamedTemporaryFile
(
delete
=
False
)
self
.
addCleanup
(
os
.
unlink
,
tf
.
name
)
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
,
'passwd'
:
'secret'
}).
install
()
with
open
(
tf
.
name
)
as
f
:
self
.
assertEqual
(
json
.
load
(
f
),
{
''
:
'secret'
})
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
},
"another"
).
install
()
self
.
assertEqual
(
self
.
buildout
[
"another"
][
"passwd"
],
'secret'
)
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
,
'passwd'
:
'updated'
},
"updated"
).
install
()
self
.
assertEqual
(
self
.
buildout
[
"updated"
][
"passwd"
],
'updated'
)
with
open
(
tf
.
name
)
as
f
:
self
.
assertEqual
(
json
.
load
(
f
),
{
''
:
'updated'
})
def
test_storage_path_passwd_set_in_options_non_ascii
(
self
):
# BBB Py2
tf
=
tempfile
.
NamedTemporaryFile
(
delete
=
False
)
self
.
addCleanup
(
os
.
unlink
,
tf
.
name
)
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
,
'passwd'
:
'sécret'
}).
install
()
with
open
(
tf
.
name
)
as
f
:
self
.
assertEqual
(
json
.
load
(
f
),
{
''
:
u'sécret'
})
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
},
"another"
).
install
()
self
.
assertEqual
(
self
.
buildout
[
"another"
][
"passwd"
],
'sécret'
)
def
test_storage_path_legacy_format
(
self
):
with
tempfile
.
NamedTemporaryFile
(
delete
=
False
)
as
tf
:
with
tempfile
.
NamedTemporaryFile
()
as
tf
:
tf
.
write
(
b'secret
\
n
'
)
tf
.
flush
()
...
...
@@ -56,8 +82,22 @@ class TestPassword(unittest.TestCase):
with
open
(
tf
.
name
)
as
f
:
self
.
assertEqual
(
json
.
load
(
f
),
{
''
:
'secret'
})
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
},
"another"
).
install
()
self
.
assertEqual
(
self
.
buildout
[
"another"
][
"passwd"
],
passwd
)
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
},
"another"
).
install
()
self
.
assertEqual
(
self
.
buildout
[
"another"
][
"passwd"
],
passwd
)
def
test_storage_path_legacy_format_passwd_set_in_options
(
self
):
with
tempfile
.
NamedTemporaryFile
()
as
tf
:
tf
.
write
(
b'secret
\
n
'
)
tf
.
flush
()
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
,
'passwd'
:
'secret'
}).
install
()
passwd
=
self
.
buildout
[
"random"
][
"passwd"
]
self
.
assertEqual
(
passwd
,
'secret'
)
tf
.
flush
()
with
open
(
tf
.
name
)
as
f
:
self
.
assertEqual
(
json
.
load
(
f
),
{
''
:
'secret'
})
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
},
"another"
).
install
()
self
.
assertEqual
(
self
.
buildout
[
"another"
][
"passwd"
],
passwd
)
def
test_bytes
(
self
):
self
.
_makeRecipe
({
'bytes'
:
'32'
}).
install
()
...
...
@@ -125,9 +165,42 @@ class TestPassword(unittest.TestCase):
self
.
assertIsInstance
(
self
.
buildout
[
'reread'
][
'passwd'
],
str
)
self
.
assertIsInstance
(
self
.
buildout
[
'reread'
][
'passwd-ldap-salted-sha1'
],
str
)
def
test_passlib_no_storage_path
(
self
):
recipe
=
self
.
_makeRecipe
({
'storage-path'
:
''
})
passwd
=
self
.
buildout
[
'random'
][
'passwd'
]
self
.
assertTrue
(
passwd
)
hashed
=
self
.
buildout
[
'random'
][
'passwd-sha256-crypt'
]
self
.
assertTrue
(
passlib
.
hash
.
sha256_crypt
.
verify
(
passwd
,
hashed
))
self
.
assertFalse
(
recipe
.
install
())
def
test_passlib_input_passwd
(
self
):
self
.
_makeRecipe
({
'passwd'
:
'insecure'
})
self
.
assertEqual
(
self
.
buildout
[
'random'
][
'passwd'
],
'insecure'
)
hashed
=
self
.
buildout
[
'random'
][
'passwd-sha256-crypt'
]
self
.
assertTrue
(
passlib
.
hash
.
sha256_crypt
.
verify
(
'insecure'
,
hashed
))
def
test_passlib_input_passwd_no_storage_path
(
self
):
recipe
=
self
.
_makeRecipe
({
'storage-path'
:
''
,
'passwd'
:
'insecure'
})
self
.
assertEqual
(
self
.
buildout
[
'random'
][
'passwd'
],
'insecure'
)
hashed
=
self
.
buildout
[
'random'
][
'passwd-sha256-crypt'
]
self
.
assertTrue
(
passlib
.
hash
.
sha256_crypt
.
verify
(
'insecure'
,
hashed
))
self
.
assertFalse
(
recipe
.
install
())
def
test_passlib_input_passwd_update
(
self
):
tf
=
tempfile
.
NamedTemporaryFile
(
delete
=
False
)
self
.
addCleanup
(
os
.
unlink
,
tf
.
name
)
initial_recipe
=
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
,
'passwd'
:
'initial'
},
'initial'
)
initial_hashed
=
self
.
buildout
[
'initial'
][
'passwd-sha256-crypt'
]
initial_recipe
.
install
()
with
open
(
tf
.
name
)
as
f
:
self
.
assertEqual
(
json
.
load
(
f
),
{
''
:
'initial'
,
'passwd-sha256-crypt'
:
initial_hashed
})
updated_recipe
=
self
.
_makeRecipe
({
'storage-path'
:
tf
.
name
,
'passwd'
:
'updated'
},
"updated"
)
updated_hashed
=
self
.
buildout
[
'updated'
][
'passwd-sha256-crypt'
]
updated_recipe
.
install
()
with
open
(
tf
.
name
)
as
f
:
self
.
assertEqual
(
json
.
load
(
f
),
{
''
:
'updated'
,
'passwd-sha256-crypt'
:
updated_hashed
})
self
.
assertNotEqual
(
initial_hashed
,
updated_hashed
)
self
.
assertTrue
(
passlib
.
hash
.
sha256_crypt
.
verify
(
'updated'
,
updated_hashed
))
software/erp5/test/test/benchmarks.py
View file @
12ee140d
...
...
@@ -327,7 +327,7 @@ class TestOrderBuildPackingListSimulation(
{
'pt-query-digest'
:
subprocess
.
check_output
(
(
pt_query_digest
,
mariadb_slowquery_log
),
text
=
True
),
(
pt_query_digest
,
mariadb_slowquery_log
),
text
=
True
,
errors
=
'surrogateescape'
),
'data-size'
:
mariadb_data_size
,
'binlog-data-size'
:
mariadb_binlog_data_size
,
})
software/monitor/software.cfg
View file @
12ee140d
...
...
@@ -80,6 +80,8 @@ numpy = 1.22.0
# For numy = 1.22.0
setuptools = 44.1.1
scipy = 1.11.4
# use old netaddr because we are using old setuptools
netaddr = 0.7.19
# Build GCC with Fortran for OpenBLAS (scipy & numpy)
[gcc]
...
...
stack/slapos.cfg
View file @
12ee140d
...
...
@@ -282,7 +282,7 @@ nbclient = 0.10.0:whl
nbconvert = 6.5.4
nbformat = 5.9.2:whl
nest-asyncio = 1.5.6
netaddr =
0.7.19
netaddr =
1.3.0
netifaces = 0.10.7
notebook = 7.1.2:whl
notebook-shim = 0.2.4:whl
...
...
@@ -466,6 +466,7 @@ MarkupSafe = 1.0
mpmath = 1.0.0
msgpack = 0.6.2
nbclient = 0.5.1
netaddr = 0.7.19
notebook = 6.1.5
packaging = 16.8
psycopg2 = 2.8.6
...
...
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