-
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.
target_suitecrm: add tests for excluding users from user cleanup
- Loading branch information
Showing
1 changed file
with
57 additions
and
8 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 |
---|---|---|
|
@@ -21,9 +21,11 @@ def fixture_basic_config(): | |
"api_password": "bitnami", | ||
"api_client_id": "asd", | ||
"api_client_secret": "secret", | ||
"excluded_usernames": ["excluded"], | ||
} | ||
return config | ||
|
||
|
||
@pytest.fixture(name="users_disable_config") | ||
def fixture_users_disable_config(): | ||
"""Create a config""" | ||
|
@@ -34,9 +36,11 @@ def fixture_users_disable_config(): | |
"api_client_id": "asd", | ||
"api_client_secret": "secret", | ||
"delete_absent_users": False, | ||
"excluded_usernames": ["excluded"], | ||
} | ||
return config | ||
|
||
|
||
def test_basic_config_creation(basic_config): | ||
"""Make sure that a target can be created from a basic config""" | ||
target = TargetSuiteCRM(basic_config, None) | ||
|
@@ -388,26 +392,47 @@ def test_user_delete(basic_target, suitecrm_server): | |
"status": "Active", | ||
} | ||
) | ||
server.create_user( | ||
{ | ||
"user_name": "excluded", | ||
"first_name": "Ernie", | ||
"last_name": "Excluded", | ||
"email1": "[email protected]", | ||
"status": "Active", | ||
} | ||
) | ||
|
||
remaining_user = User( | ||
"adalice", forename="Ad", surname="Alice", email=("[email protected]",) | ||
) | ||
deleted_user = User( | ||
"basicuser", forename="Basic", surname="Bob", email=("[email protected]",) | ||
) | ||
remaining_user = User( | ||
"adalice", forename="Ad", surname="Alice", email=("[email protected]",) | ||
excluded_user = User( | ||
"excluded", | ||
forename="Ernie", | ||
surname="Excluded", | ||
email=("[email protected]",), | ||
) | ||
|
||
diff = ModelDifference( | ||
source_users={"basicuser": deleted_user, "adAlice": remaining_user}, | ||
source_users={ | ||
"adAlice": remaining_user, | ||
"basicuser": deleted_user, | ||
"excluded": excluded_user, | ||
}, | ||
target_users={"adAlice": remaining_user}, | ||
added_users={}, | ||
changed_users={}, | ||
unchanged_users={"adAlice": remaining_user}, | ||
removed_users={"basicuser": deleted_user}, | ||
removed_users={"basicuser": deleted_user, "excluded": excluded_user}, | ||
) | ||
|
||
basic_target.users_cleanup(diff) | ||
users = server.search_by_type("User") | ||
assert users[0]["attributes"]["first_name"] == "Ad" | ||
assert users[1]["attributes"]["first_name"] == "Ernie" | ||
|
||
|
||
def test_users_disable(users_disable_target, suitecrm_server): | ||
"""Delete a user and check it's been deleted""" | ||
|
@@ -431,28 +456,51 @@ def test_users_disable(users_disable_target, suitecrm_server): | |
"status": "Active", | ||
} | ||
) | ||
server.create_user( | ||
{ | ||
"user_name": "excluded", | ||
"first_name": "Ernie", | ||
"last_name": "Excluded", | ||
"email1": "[email protected]", | ||
"status": "Active", | ||
} | ||
) | ||
|
||
remaining_user = User( | ||
"adalice", forename="Ad", surname="Alice", email=("[email protected]",) | ||
) | ||
deleted_user = User( | ||
"basicuser", forename="Basic", surname="Bob", email=("[email protected]",) | ||
) | ||
remaining_user = User( | ||
"adalice", forename="Ad", surname="Alice", email=("[email protected]",) | ||
excluded_user = User( | ||
"excluded", | ||
forename="Ernie", | ||
surname="Excluded", | ||
email=("[email protected]",), | ||
) | ||
|
||
diff = ModelDifference( | ||
source_users={"adAlice": remaining_user, "basicuser": deleted_user}, | ||
source_users={ | ||
"adAlice": remaining_user, | ||
"basicuser": deleted_user, | ||
"excluded": excluded_user, | ||
}, | ||
target_users={"adAlice": remaining_user}, | ||
added_users={}, | ||
changed_users={}, | ||
unchanged_users={"adAlice": remaining_user}, | ||
removed_users={"basicuser": deleted_user}, | ||
removed_users={"basicuser": deleted_user, "excluded": excluded_user}, | ||
) | ||
|
||
users_disable_target.users_cleanup(diff) | ||
users = server.search_by_type("User") | ||
assert users[0]["attributes"]["first_name"] == "Ad" | ||
assert users[0]["attributes"]["status"] == "Active" | ||
assert users[1]["attributes"]["first_name"] == "Basic" | ||
assert users[1]["attributes"]["status"] == "Inactive" | ||
assert users[2]["attributes"]["first_name"] == "Ernie" | ||
assert users[2]["attributes"]["status"] == "Active" | ||
|
||
|
||
def test_groups_emails_sync_no_changes(basic_config, suitecrm_server): | ||
"""Test that when a user is part of a group with an E-mail address, | ||
|
@@ -652,6 +700,7 @@ def fixture_basic_target(basic_config): | |
target = TargetSuiteCRM(basic_config, None) | ||
return target | ||
|
||
|
||
@pytest.fixture(name="users_disable_target") | ||
def fixture_users_disable_target(users_disable_config): | ||
"""Create a TargetSuiteCRM with config set up to disable users instead of deleting them""" | ||
|