forked from Kuadrant/testsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change usage of middleName to lastName
- Loading branch information
Showing
1 changed file
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -231,30 +231,31 @@ def authorization(authorization, keycloak, terms_and_conditions, cluster_info, a | |
@pytest.fixture(scope="module") | ||
def user_with_valid_org_id(keycloak, blame): | ||
""" | ||
Creates new user with valid middle name. | ||
Middle name is mapped to org ID in auth config. | ||
Creates new user with valid last name. | ||
last name is mapped to org ID in auth config. | ||
""" | ||
user = keycloak.realm.create_user(blame("someuser"), blame("password")) | ||
user.assign_attribute({"middleName": "123"}) | ||
user = keycloak.realm.create_user(blame("someuser"), blame("password"), lastName="123") | ||
return HttpxOidcClientAuth.from_user(keycloak.get_token, user=user) | ||
|
||
|
||
@pytest.fixture(scope="module", params=["321", None]) | ||
def user_with_invalid_org_id(keycloak, blame, request): | ||
# https://github.com/Kuadrant/testsuite/issues/396 | ||
# @pytest.fixture(scope="module", params=["321", None]) | ||
@pytest.fixture(scope="module") | ||
def user_with_invalid_org_id(keycloak, blame): | ||
""" | ||
Creates new user with valid middle name. | ||
Middle name is mapped to org ID in auth config. | ||
Creates new user with valid last name. | ||
last name is mapped to org ID in auth config. | ||
""" | ||
user = keycloak.realm.create_user(blame("someuser"), blame("password")) | ||
user.assign_attribute({"middleName": request.param}) | ||
user = keycloak.realm.create_user(blame("someuser"), blame("password"), lastName="321") | ||
return HttpxOidcClientAuth.from_user(keycloak.get_token, user=user) | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def user_with_invalid_email(keycloak, blame): | ||
"""Creates new user with invalid email""" | ||
user = keycloak.realm.create_user(blame("someuser"), blame("password"), email="[email protected]") | ||
user.assign_attribute({"middleName": "123"}) | ||
user = keycloak.realm.create_user( | ||
blame("someuser"), blame("password"), email="[email protected]", lastName="123" | ||
) | ||
return HttpxOidcClientAuth.from_user(keycloak.get_token, user=user) | ||
|
||
|
||
|