Fix tests

This commit is contained in:
Kay0u 2020-08-14 17:54:38 +02:00
parent 711c211440
commit dbc4716b48
No known key found for this signature in database
GPG key ID: AE1DCADB6415A156

View file

@ -103,7 +103,6 @@ class LDAPServer:
ldap_interface.update("cn=admin", admin_dict) ldap_interface.update("cn=admin", admin_dict)
def _hash_user_password(self, password): def _hash_user_password(self, password):
""" """
Copy pasta of what's in yunohost/user.py Copy pasta of what's in yunohost/user.py
@ -112,8 +111,10 @@ class LDAPServer:
import random import random
import crypt import crypt
char_set = string.ascii_uppercase + string.ascii_lowercase + string.digits + "./" char_set = (
salt = ''.join([random.SystemRandom().choice(char_set) for x in range(16)]) string.ascii_uppercase + string.ascii_lowercase + string.digits + "./"
)
salt = "".join([random.SystemRandom().choice(char_set) for x in range(16)])
salt = '$6$' + salt + '$' salt = "$6$" + salt + "$"
return '{CRYPT}' + crypt.crypt(str(password), salt) return "{CRYPT}" + crypt.crypt(str(password), salt)