本文整理匯總了Python中cfme.configure.access_control.User.credential方法的典型用法代碼示例。如果您正苦於以下問題:Python User.credential方法的具體用法?Python User.credential怎麽用?Python User.credential使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cfme.configure.access_control.User
的用法示例。
在下文中一共展示了User.credential方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_user_change_password
# 需要導入模塊: from cfme.configure.access_control import User [as 別名]
# 或者: from cfme.configure.access_control.User import credential [as 別名]
def test_user_change_password(request):
user = User(
name="user {}".format(fauxfactory.gen_alphanumeric()),
credential=Credential(
principal="user_principal_{}".format(fauxfactory.gen_alphanumeric()),
secret="very_secret",
verify_secret="very_secret"
),
email="[email protected]",
group=usergrp,
)
user.create()
request.addfinalizer(user.delete)
request.addfinalizer(login.login_admin)
with user:
assert not login.logged_in()
login.login(user)
assert login.current_full_name() == user.name
login.login_admin()
with update(user):
user.credential = Credential(
principal=user.credential.principal,
secret="another_very_secret",
verify_secret="another_very_secret",
)
with user:
assert not login.logged_in()
login.login(user)
assert login.current_full_name() == user.name