2014-03-17 00:47:33 +01:00
|
|
|
|
|
|
|
def test_non_auth():
|
2014-03-22 17:01:30 +01:00
|
|
|
return {'action': 'non-auth'}
|
2014-03-17 00:47:33 +01:00
|
|
|
|
|
|
|
def test_auth(auth):
|
2014-03-22 17:01:30 +01:00
|
|
|
return {'action': 'auth',
|
|
|
|
'authenticator': 'default', 'authenticate': 'all'}
|
|
|
|
|
|
|
|
def test_auth_profile(auth):
|
|
|
|
return {'action': 'auth-profile',
|
|
|
|
'authenticator': 'test-profile', 'authenticate': 'all'}
|
2014-03-17 00:47:33 +01:00
|
|
|
|
|
|
|
def test_auth_cli():
|
2014-03-22 17:01:30 +01:00
|
|
|
return {'action': 'auth-cli',
|
|
|
|
'authenticator': 'default', 'authenticate': ['cli']}
|
2014-03-17 00:47:33 +01:00
|
|
|
|
|
|
|
def test_anonymous():
|
2014-03-22 17:01:30 +01:00
|
|
|
return {'action': 'anonymous',
|
|
|
|
'authenticator': 'ldap-anonymous', 'authenticate': 'all'}
|
2018-11-27 13:04:17 +01:00
|
|
|
|
|
|
|
def test_root():
|
|
|
|
return {'action': 'root-auth',
|
|
|
|
'authenticator': 'as-root', 'authenticate': 'all'}
|