@@ -83,9 +83,9 @@ def test_alter_cluster_without_parameters(self, mock_os):
83
83
84
84
@mock .patch ("kfk.commands.clusters.create_temp_file" )
85
85
@mock .patch ("kfk.commons.get_resource_yaml" )
86
- @mock .patch ("kfk.commands.clusters.os " )
86
+ @mock .patch ("kfk.commands.clusters.replace_using_yaml " )
87
87
def test_alter_cluster_with_one_additional_config (
88
- self , mock_os , mock_get_resource_yaml , mock_create_temp_file
88
+ self , mock_replace_using_yaml , mock_get_resource_yaml , mock_create_temp_file
89
89
):
90
90
with open ("tests/files/yaml/kafka-ephemeral.yaml" ) as file :
91
91
kafka_yaml = file .read ()
@@ -112,11 +112,13 @@ def test_alter_cluster_with_one_additional_config(
112
112
result_kafka_yaml = mock_create_temp_file .call_args [0 ][0 ]
113
113
assert expected_kafka_yaml == result_kafka_yaml
114
114
115
+ mock_replace_using_yaml .assert_called_once ()
116
+
115
117
@mock .patch ("kfk.commands.clusters.create_temp_file" )
116
118
@mock .patch ("kfk.commons.get_resource_yaml" )
117
- @mock .patch ("kfk.commands.clusters.os " )
119
+ @mock .patch ("kfk.commands.clusters.replace_using_yaml " )
118
120
def test_alter_cluster_with_two_additional_configs (
119
- self , mock_os , mock_get_resource_yaml , mock_create_temp_file
121
+ self , mock_replace_using_yaml , mock_get_resource_yaml , mock_create_temp_file
120
122
):
121
123
with open ("tests/files/yaml/kafka-ephemeral.yaml" ) as file :
122
124
kafka_yaml = file .read ()
@@ -145,11 +147,13 @@ def test_alter_cluster_with_two_additional_configs(
145
147
result_kafka_yaml = mock_create_temp_file .call_args [0 ][0 ]
146
148
assert expected_kafka_yaml == result_kafka_yaml
147
149
150
+ mock_replace_using_yaml .assert_called_once ()
151
+
148
152
@mock .patch ("kfk.commands.clusters.create_temp_file" )
149
153
@mock .patch ("kfk.commons.get_resource_yaml" )
150
- @mock .patch ("kfk.commands.clusters.os " )
154
+ @mock .patch ("kfk.commands.clusters.replace_using_yaml " )
151
155
def test_alter_cluster_with_two_additional_configs_delete_one_config (
152
- self , mock_os , mock_get_resource_yaml , mock_create_temp_file
156
+ self , mock_replace_using_yaml , mock_get_resource_yaml , mock_create_temp_file
153
157
):
154
158
with open (
155
159
"tests/files/yaml/kafka-ephemeral_with_two_additional_configs.yaml"
@@ -178,11 +182,13 @@ def test_alter_cluster_with_two_additional_configs_delete_one_config(
178
182
result_kafka_yaml = mock_create_temp_file .call_args [0 ][0 ]
179
183
assert expected_kafka_yaml == result_kafka_yaml
180
184
185
+ mock_replace_using_yaml .assert_called_once ()
186
+
181
187
@mock .patch ("kfk.commands.clusters.create_temp_file" )
182
188
@mock .patch ("kfk.commons.get_resource_yaml" )
183
- @mock .patch ("kfk.commands.clusters.os " )
189
+ @mock .patch ("kfk.commands.clusters.replace_using_yaml " )
184
190
def test_alter_cluster_with_two_additional_configs_delete_two_configs (
185
- self , mock_os , mock_get_resource_yaml , mock_create_temp_file
191
+ self , mock_replace_using_yaml , mock_get_resource_yaml , mock_create_temp_file
186
192
):
187
193
with open (
188
194
"tests/files/yaml/kafka-ephemeral_with_two_additional_configs.yaml"
@@ -213,11 +219,13 @@ def test_alter_cluster_with_two_additional_configs_delete_two_configs(
213
219
result_kafka_yaml = mock_create_temp_file .call_args [0 ][0 ]
214
220
assert expected_kafka_yaml == result_kafka_yaml
215
221
222
+ mock_replace_using_yaml .assert_called_once ()
223
+
216
224
@mock .patch ("kfk.commands.clusters.create_temp_file" )
217
225
@mock .patch ("kfk.commons.get_resource_yaml" )
218
- @mock .patch ("kfk.commands.clusters.os " )
226
+ @mock .patch ("kfk.commands.clusters.replace_using_yaml " )
219
227
def test_alter_cluster_with_one_replica (
220
- self , mock_os , mock_get_resource_yaml , mock_create_temp_file
228
+ self , mock_replace_using_yaml , mock_get_resource_yaml , mock_create_temp_file
221
229
):
222
230
with open ("tests/files/yaml/kafka-ephemeral_name_updated.yaml" ) as file :
223
231
kafka_yaml = file .read ()
@@ -242,11 +250,13 @@ def test_alter_cluster_with_one_replica(
242
250
result_kafka_yaml = mock_create_temp_file .call_args [0 ][0 ]
243
251
assert expected_kafka_yaml == result_kafka_yaml
244
252
253
+ mock_replace_using_yaml .assert_called_once ()
254
+
245
255
@mock .patch ("kfk.commands.clusters.create_temp_file" )
246
256
@mock .patch ("kfk.commons.get_resource_yaml" )
247
- @mock .patch ("kfk.commands.clusters.os " )
257
+ @mock .patch ("kfk.commands.clusters.replace_using_yaml " )
248
258
def test_alter_cluster_with_two_replicas (
249
- self , mock_os , mock_get_resource_yaml , mock_create_temp_file
259
+ self , mock_replace_using_yaml , mock_get_resource_yaml , mock_create_temp_file
250
260
):
251
261
with open ("tests/files/yaml/kafka-ephemeral_name_updated.yaml" ) as file :
252
262
kafka_yaml = file .read ()
@@ -273,11 +283,13 @@ def test_alter_cluster_with_two_replicas(
273
283
result_kafka_yaml = mock_create_temp_file .call_args [0 ][0 ]
274
284
assert expected_kafka_yaml == result_kafka_yaml
275
285
286
+ mock_replace_using_yaml .assert_called_once ()
287
+
276
288
@mock .patch ("kfk.commands.clusters.create_temp_file" )
277
289
@mock .patch ("kfk.commons.get_resource_yaml" )
278
- @mock .patch ("kfk.commands.clusters.os " )
290
+ @mock .patch ("kfk.commands.clusters.replace_using_yaml " )
279
291
def test_alter_cluster_with_one_replica_one_zk_replica (
280
- self , mock_os , mock_get_resource_yaml , mock_create_temp_file
292
+ self , mock_replace_using_yaml , mock_get_resource_yaml , mock_create_temp_file
281
293
):
282
294
with open ("tests/files/yaml/kafka-ephemeral_name_updated.yaml" ) as file :
283
295
kafka_yaml = file .read ()
@@ -306,6 +318,8 @@ def test_alter_cluster_with_one_replica_one_zk_replica(
306
318
result_kafka_yaml = mock_create_temp_file .call_args [0 ][0 ]
307
319
assert expected_kafka_yaml == result_kafka_yaml
308
320
321
+ mock_replace_using_yaml .assert_called_once ()
322
+
309
323
@mock .patch ("kfk.commands.clusters.click.confirm" )
310
324
@mock .patch ("kfk.commands.clusters.delete_using_yaml" )
311
325
def test_delete_cluster (self , mock_delete_using_yaml , mock_click_confirm ):
0 commit comments