Skip to content

Commit 058e516

Browse files
[ONB-1301] Increase MySQLBase test coverage (#552)
1 parent 63df756 commit 058e516

File tree

1 file changed

+59
-4
lines changed

1 file changed

+59
-4
lines changed

tests/unit/test_mysql.py

+59-4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
MySQLDeleteTempRestoreDirectoryError,
2525
MySQLDeleteUserError,
2626
MySQLDeleteUsersForRelationError,
27+
MySQLDeleteUsersForUnitError,
2728
MySQLEmptyDataDirectoryError,
2829
MySQLExecError,
2930
MySQLExecuteBackupCommandsError,
@@ -38,6 +39,7 @@
3839
MySQLOfflineModeAndHiddenInstanceExistsError,
3940
MySQLPluginInstallError,
4041
MySQLPrepareBackupForRestoreError,
42+
MySQLPromoteClusterToPrimaryError,
4143
MySQLRemoveInstanceError,
4244
MySQLRemoveInstanceRetryError,
4345
MySQLRemoveReplicaClusterError,
@@ -47,6 +49,7 @@
4749
MySQLRetrieveBackupWithXBCloudError,
4850
MySQLServerNotUpgradableError,
4951
MySQLSetClusterPrimaryError,
52+
MySQLSetInstanceOfflineModeError,
5053
MySQLSetInstanceOptionError,
5154
MySQLSetVariableError,
5255
)
@@ -870,10 +873,15 @@ def test_error(self):
870873
self.assertEqual(error.message, "Error message")
871874

872875
@patch("charms.mysql.v0.mysql.MySQLBase._run_mysqlsh_script")
873-
def test_delete_users_for_relation_failure(
874-
self,
875-
_run_mysqlsh_script,
876-
):
876+
def test_delete_users_for_unit_failure(self, _run_mysqlsh_script):
877+
"""Test failure to delete users for unit."""
878+
_run_mysqlsh_script.side_effect = MySQLClientError
879+
880+
with self.assertRaises(MySQLDeleteUsersForUnitError):
881+
self.mysql.delete_users_for_unit("foouser")
882+
883+
@patch("charms.mysql.v0.mysql.MySQLBase._run_mysqlsh_script")
884+
def test_delete_users_for_relation_failure(self, _run_mysqlsh_script):
877885
"""Test failure to delete users for relation."""
878886
_run_mysqlsh_script.side_effect = MySQLClientError
879887

@@ -894,6 +902,22 @@ def test_delete_user(self, _run_mysqlsh_script):
894902
with self.assertRaises(MySQLDeleteUserError):
895903
self.mysql.delete_user("testuser")
896904

905+
@patch("charms.mysql.v0.mysql.MySQLBase._run_mysqlsh_script")
906+
def test_promote_cluster_to_primary(self, _run_mysqlsh_script):
907+
"""Test promote_cluster_to_primary() method."""
908+
self.mysql.promote_cluster_to_primary("test_cluster")
909+
expected_commands = "\n".join((
910+
"shell.connect_to_primary('serverconfig:[email protected]:33062')",
911+
"cs = dba.get_cluster_set()",
912+
"cs.set_primary_cluster('test_cluster')",
913+
))
914+
915+
_run_mysqlsh_script.assert_called_once_with(expected_commands)
916+
917+
_run_mysqlsh_script.side_effect = MySQLClientError
918+
with self.assertRaises(MySQLPromoteClusterToPrimaryError):
919+
self.mysql.promote_cluster_to_primary("test_cluster")
920+
897921
@patch("charms.mysql.v0.mysql.MySQLBase._run_mysqlsh_script")
898922
def test_get_mysql_version(self, _run_mysqlsh_script):
899923
"""Test get_mysql_version() method."""
@@ -939,6 +963,20 @@ def test_grant_privileges_to_user(self, _run_mysqlsh_script):
939963

940964
_run_mysqlsh_script.assert_called_with(expected_commands)
941965

966+
@patch("charms.mysql.v0.mysql.MySQLBase._run_mysqlsh_script")
967+
def test_update_user_password(self, _run_mysqlsh_script):
968+
"""Test the successful execution of update_user_password."""
969+
_run_mysqlsh_script.return_value = "<PRIMARY_ADDRESS>1.1.1.1</PRIMARY_ADDRESS>"
970+
971+
self.mysql.update_user_password("test_user", "test_password")
972+
expected_commands = "\n".join((
973+
"shell.connect('serverconfig:[email protected]:33062')",
974+
"session.run_sql(\"ALTER USER 'test_user'@'%' IDENTIFIED BY 'test_password';\")",
975+
'session.run_sql("FLUSH PRIVILEGES;")',
976+
))
977+
978+
_run_mysqlsh_script.assert_called_with(expected_commands)
979+
942980
@patch("charms.mysql.v0.mysql.MySQLBase.is_cluster_replica", return_value=False)
943981
@patch("charms.mysql.v0.mysql.MySQLBase.get_cluster_status", return_value=SHORT_CLUSTER_STATUS)
944982
def test_get_cluster_endpoints(self, _, _is_cluster_replica):
@@ -1810,6 +1848,23 @@ def test_hold_if_recovering(self, mock_get_member_state):
18101848
self.mysql.hold_if_recovering()
18111849
self.assertEqual(mock_get_member_state.call_count, 1)
18121850

1851+
@patch("charms.mysql.v0.mysql.MySQLBase._run_mysqlcli_script")
1852+
def test_set_instance_offline_mode(self, _run_mysqlsh_script):
1853+
"""Test execution of set_instance_offline_mode()."""
1854+
self.mysql.set_instance_offline_mode(True)
1855+
1856+
_run_mysqlsh_script.assert_called_once_with(
1857+
"SET @@GLOBAL.offline_mode = ON",
1858+
user="serverconfig",
1859+
password="serverconfigpassword",
1860+
)
1861+
1862+
_run_mysqlsh_script.reset_mock()
1863+
1864+
_run_mysqlsh_script.side_effect = MySQLClientError("Error on subprocess")
1865+
with self.assertRaises(MySQLSetInstanceOfflineModeError):
1866+
self.mysql.set_instance_offline_mode(True)
1867+
18131868
@patch("charms.mysql.v0.mysql.MySQLBase.get_available_memory")
18141869
def test_render_mysqld_configuration(self, _get_available_memory):
18151870
"""Test render_mysqld_configuration."""

0 commit comments

Comments
 (0)