Changeset: 0ba4487289d2 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/0ba4487289d2
Modified Files:
        clients/Tests/exports.py
        clients/Tests/exports.stable.out
Branch: userprofile
Log Message:

approve test


diffs (49 lines):

diff --git a/clients/Tests/exports.py b/clients/Tests/exports.py
--- a/clients/Tests/exports.py
+++ b/clients/Tests/exports.py
@@ -3,5 +3,10 @@ import difflib
 import MonetDBtesting.listexports
 output = MonetDBtesting.listexports.listexports()
 stable = open('exports.stable.out').readlines()
-for line in difflib.unified_diff(stable, output):
-    sys.stderr.write(line)
+try:
+    for line in difflib.unified_diff(stable, output):
+        sys.stderr.write(line)
+except Exception as e:
+        sys.stderr.write(str(e))
+        raise e
+
diff --git a/clients/Tests/exports.stable.out b/clients/Tests/exports.stable.out
--- a/clients/Tests/exports.stable.out
+++ b/clients/Tests/exports.stable.out
@@ -725,11 +725,17 @@ int mo_system_config(opt **Set, int setl
 const char *wsaerror(int);
 
 # monetdb5
+str AUTHGeneratePasswordHash(str *res, const char *value);
+str AUTHRegisterGetPasswordHandler(get_user_password_handler callback);
+str AUTHRegisterGetUserNameHandler(get_user_name_handler callback);
+str AUTHRegisterGetUserOIDHandler(get_user_oid_handler callback);
 str AUTHaddRemoteTableCredentials(const char *local_table, const char 
*localuser, const char *uri, const char *remoteuser, const char *pass, bool 
pw_encrypted);
 str AUTHaddUser(oid *ret, Client c, const char *user, const char *pass);
 str AUTHchangePassword(Client c, const char *oldpass, const char *passwd);
 str AUTHchangeUsername(Client c, const char *olduser, const char *newuser);
 str AUTHcheckCredentials(oid *ret, Client c, const char *user, const char 
*passwd, const char *challenge, const char *algo);
+str AUTHcypherValue(str *ret, const char *value);
+str AUTHdecypherValue(str *ret, const char *value);
 str AUTHdeleteRemoteTableCredentials(const char *local_table);
 str AUTHgetPasswordHash(str *ret, Client c, const char *username);
 str AUTHgetRemoteTableCredentials(const char *local_table, str *uri, str 
*username, str *password);
@@ -737,9 +743,11 @@ str AUTHgetUsername(str *ret, Client c);
 str AUTHgetUsers(BAT **ret1, BAT **ret2, Client c);
 str AUTHinitTables(const char *passwd);
 str AUTHremoveUser(Client c, const char *username);
+str AUTHrequireAdmin(Client c);
 str AUTHresolveUser(str *ret, oid uid);
 str AUTHsetPassword(Client c, const char *username, const char *passwd);
 str AUTHunlockVault(const char *password);
+str AUTHverifyPassword(const char *passwd);
 str BATinfo(BAT **key, BAT **val, const bat bid);
 str BKCmirror(bat *ret, const bat *bid);
 str BKCnewBAT(bat *res, const int *tt, const BUN *cap, role_t role);
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to