X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=system%2FTestUserSfa.py;h=68530e5fd4f4d61c2f2248044ac3670cc78e6552;hb=5d45fc9b92d7ea2645986c91ef7d068a6ee55729;hp=de7092d1b11768a74dd283a7d520dfc5ab3529e5;hpb=8cd70158d8a3071644e8fbb8a68ecde9e1135056;p=tests.git diff --git a/system/TestUserSfa.py b/system/TestUserSfa.py index de7092d..68530e5 100644 --- a/system/TestUserSfa.py +++ b/system/TestUserSfa.py @@ -25,14 +25,14 @@ class TestUserSfa: return self.test_auth_sfa.sfi_user(*args, **kwds) # xxx todo - not the right place any longer - or is it ? - def sfa_add_user (self,options): - "add a regular user using sfi add" + def sfa_register_user (self,options): + "add a regular user using sfi register" user_hrn = self.hrn() - command="add" + command="register" command += " --type user" command += " --xrn %s"%user_hrn command += " --email %s"%self.user_spec['email'] - command += " " + " ".join(self.user_spec['add_options']) + command += " " + " ".join(self.user_spec['register_options']) # handle key separately because of embedded whitespace # hack - the user's pubkey is avail from his hrn command += " -k %s/%s.pub"%(self.sfi_path(),user_hrn)