24
24
MySQLDeleteTempRestoreDirectoryError ,
25
25
MySQLDeleteUserError ,
26
26
MySQLDeleteUsersForRelationError ,
27
+ MySQLDeleteUsersForUnitError ,
27
28
MySQLEmptyDataDirectoryError ,
28
29
MySQLExecError ,
29
30
MySQLExecuteBackupCommandsError ,
38
39
MySQLOfflineModeAndHiddenInstanceExistsError ,
39
40
MySQLPluginInstallError ,
40
41
MySQLPrepareBackupForRestoreError ,
42
+ MySQLPromoteClusterToPrimaryError ,
41
43
MySQLRemoveInstanceError ,
42
44
MySQLRemoveInstanceRetryError ,
43
45
MySQLRemoveReplicaClusterError ,
47
49
MySQLRetrieveBackupWithXBCloudError ,
48
50
MySQLServerNotUpgradableError ,
49
51
MySQLSetClusterPrimaryError ,
52
+ MySQLSetInstanceOfflineModeError ,
50
53
MySQLSetInstanceOptionError ,
51
54
MySQLSetVariableError ,
52
55
)
@@ -870,10 +873,15 @@ def test_error(self):
870
873
self .assertEqual (error .message , "Error message" )
871
874
872
875
@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 ):
877
885
"""Test failure to delete users for relation."""
878
886
_run_mysqlsh_script .side_effect = MySQLClientError
879
887
@@ -894,6 +902,22 @@ def test_delete_user(self, _run_mysqlsh_script):
894
902
with self .assertRaises (MySQLDeleteUserError ):
895
903
self .mysql .delete_user ("testuser" )
896
904
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
+
897
921
@patch ("charms.mysql.v0.mysql.MySQLBase._run_mysqlsh_script" )
898
922
def test_get_mysql_version (self , _run_mysqlsh_script ):
899
923
"""Test get_mysql_version() method."""
@@ -939,6 +963,20 @@ def test_grant_privileges_to_user(self, _run_mysqlsh_script):
939
963
940
964
_run_mysqlsh_script .assert_called_with (expected_commands )
941
965
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
+
942
980
@patch ("charms.mysql.v0.mysql.MySQLBase.is_cluster_replica" , return_value = False )
943
981
@patch ("charms.mysql.v0.mysql.MySQLBase.get_cluster_status" , return_value = SHORT_CLUSTER_STATUS )
944
982
def test_get_cluster_endpoints (self , _ , _is_cluster_replica ):
@@ -1810,6 +1848,23 @@ def test_hold_if_recovering(self, mock_get_member_state):
1810
1848
self .mysql .hold_if_recovering ()
1811
1849
self .assertEqual (mock_get_member_state .call_count , 1 )
1812
1850
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
+
1813
1868
@patch ("charms.mysql.v0.mysql.MySQLBase.get_available_memory" )
1814
1869
def test_render_mysqld_configuration (self , _get_available_memory ):
1815
1870
"""Test render_mysqld_configuration."""
0 commit comments