Skip to content

Commit efc1516

Browse files
committed
fix tests
1 parent e189690 commit efc1516

4 files changed

+104
-52
lines changed

tests/test_acls_command.py

+24-12
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ def test_add_acls_without_principal(self, mock_os):
118118

119119
@mock.patch("kfk.commands.users.create_temp_file")
120120
@mock.patch("kfk.commons.get_resource_yaml")
121-
@mock.patch("kfk.commands.users.os")
121+
@mock.patch("kfk.commands.users.replace_using_yaml")
122122
def test_add_topic_acl(
123-
self, mock_os, mock_get_resource_yaml, mock_create_temp_file
123+
self, mock_replace_using_yaml, mock_get_resource_yaml, mock_create_temp_file
124124
):
125125
with open("tests/files/yaml/user_with_authentication_tls.yaml") as file:
126126
user_yaml = file.read()
@@ -152,11 +152,13 @@ def test_add_topic_acl(
152152
result_user_yaml = mock_create_temp_file.call_args[0][0]
153153
assert expected_user_yaml == result_user_yaml
154154

155+
mock_replace_using_yaml.assert_called_once()
156+
155157
@mock.patch("kfk.commands.users.create_temp_file")
156158
@mock.patch("kfk.commons.get_resource_yaml")
157-
@mock.patch("kfk.commands.users.os")
159+
@mock.patch("kfk.commands.users.replace_using_yaml")
158160
def test_remove_topic_acl(
159-
self, mock_os, mock_get_resource_yaml, mock_create_temp_file
161+
self, mock_replace_using_yaml, mock_get_resource_yaml, mock_create_temp_file
160162
):
161163
with open(
162164
"tests/files/yaml/user_with_authorization_with_one_topic_acl.yaml"
@@ -188,11 +190,13 @@ def test_remove_topic_acl(
188190
result_user_yaml = mock_create_temp_file.call_args[0][0]
189191
assert expected_user_yaml == result_user_yaml
190192

193+
mock_replace_using_yaml.assert_called_once()
194+
191195
@mock.patch("kfk.commands.users.create_temp_file")
192196
@mock.patch("kfk.commons.get_resource_yaml")
193-
@mock.patch("kfk.commands.users.os")
197+
@mock.patch("kfk.commands.users.replace_using_yaml")
194198
def test_add_topic_acl_to_one_acl(
195-
self, mock_os, mock_get_resource_yaml, mock_create_temp_file
199+
self, mock_replace_using_yaml, mock_get_resource_yaml, mock_create_temp_file
196200
):
197201
with open(
198202
"tests/files/yaml/user_with_authorization_with_one_topic_acl.yaml"
@@ -226,11 +230,13 @@ def test_add_topic_acl_to_one_acl(
226230
result_user_yaml = mock_create_temp_file.call_args[0][0]
227231
assert expected_user_yaml == result_user_yaml
228232

233+
mock_replace_using_yaml.assert_called_once()
234+
229235
@mock.patch("kfk.commands.users.create_temp_file")
230236
@mock.patch("kfk.commons.get_resource_yaml")
231-
@mock.patch("kfk.commands.users.os")
237+
@mock.patch("kfk.commands.users.replace_using_yaml")
232238
def test_remove_topic_acl_from_two_acls(
233-
self, mock_os, mock_get_resource_yaml, mock_create_temp_file
239+
self, mock_replace_using_yaml, mock_get_resource_yaml, mock_create_temp_file
234240
):
235241
with open(
236242
"tests/files/yaml/user_with_authorization_with_two_topic_acls.yaml"
@@ -264,11 +270,13 @@ def test_remove_topic_acl_from_two_acls(
264270
result_user_yaml = mock_create_temp_file.call_args[0][0]
265271
assert expected_user_yaml == result_user_yaml
266272

273+
mock_replace_using_yaml.assert_called_once()
274+
267275
@mock.patch("kfk.commands.users.create_temp_file")
268276
@mock.patch("kfk.commons.get_resource_yaml")
269-
@mock.patch("kfk.commands.users.os")
277+
@mock.patch("kfk.commands.users.replace_using_yaml")
270278
def test_add_topic_acl_with_two_operations(
271-
self, mock_os, mock_get_resource_yaml, mock_create_temp_file
279+
self, mock_replace_using_yaml, mock_get_resource_yaml, mock_create_temp_file
272280
):
273281
with open(
274282
"tests/files/yaml/user_with_authorization_with_one_topic_acl.yaml"
@@ -304,11 +312,13 @@ def test_add_topic_acl_with_two_operations(
304312
result_user_yaml = mock_create_temp_file.call_args[0][0]
305313
assert expected_user_yaml == result_user_yaml
306314

315+
mock_replace_using_yaml.assert_called_once()
316+
307317
@mock.patch("kfk.commands.users.create_temp_file")
308318
@mock.patch("kfk.commons.get_resource_yaml")
309-
@mock.patch("kfk.commands.users.os")
319+
@mock.patch("kfk.commands.users.replace_using_yaml")
310320
def test_add_group_acl(
311-
self, mock_os, mock_get_resource_yaml, mock_create_temp_file
321+
self, mock_replace_using_yaml, mock_get_resource_yaml, mock_create_temp_file
312322
):
313323
with open(
314324
"tests/files/yaml/user_with_authorization_with_one_topic_acl.yaml"
@@ -342,3 +352,5 @@ def test_add_group_acl(
342352
expected_user_yaml = file.read()
343353
result_user_yaml = mock_create_temp_file.call_args[0][0]
344354
assert expected_user_yaml == result_user_yaml
355+
356+
mock_replace_using_yaml.assert_called_once()

tests/test_clusters_command.py

+28-14
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ def test_alter_cluster_without_parameters(self, mock_os):
8383

8484
@mock.patch("kfk.commands.clusters.create_temp_file")
8585
@mock.patch("kfk.commons.get_resource_yaml")
86-
@mock.patch("kfk.commands.clusters.os")
86+
@mock.patch("kfk.commands.clusters.replace_using_yaml")
8787
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
8989
):
9090
with open("tests/files/yaml/kafka-ephemeral.yaml") as file:
9191
kafka_yaml = file.read()
@@ -112,11 +112,13 @@ def test_alter_cluster_with_one_additional_config(
112112
result_kafka_yaml = mock_create_temp_file.call_args[0][0]
113113
assert expected_kafka_yaml == result_kafka_yaml
114114

115+
mock_replace_using_yaml.assert_called_once()
116+
115117
@mock.patch("kfk.commands.clusters.create_temp_file")
116118
@mock.patch("kfk.commons.get_resource_yaml")
117-
@mock.patch("kfk.commands.clusters.os")
119+
@mock.patch("kfk.commands.clusters.replace_using_yaml")
118120
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
120122
):
121123
with open("tests/files/yaml/kafka-ephemeral.yaml") as file:
122124
kafka_yaml = file.read()
@@ -145,11 +147,13 @@ def test_alter_cluster_with_two_additional_configs(
145147
result_kafka_yaml = mock_create_temp_file.call_args[0][0]
146148
assert expected_kafka_yaml == result_kafka_yaml
147149

150+
mock_replace_using_yaml.assert_called_once()
151+
148152
@mock.patch("kfk.commands.clusters.create_temp_file")
149153
@mock.patch("kfk.commons.get_resource_yaml")
150-
@mock.patch("kfk.commands.clusters.os")
154+
@mock.patch("kfk.commands.clusters.replace_using_yaml")
151155
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
153157
):
154158
with open(
155159
"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(
178182
result_kafka_yaml = mock_create_temp_file.call_args[0][0]
179183
assert expected_kafka_yaml == result_kafka_yaml
180184

185+
mock_replace_using_yaml.assert_called_once()
186+
181187
@mock.patch("kfk.commands.clusters.create_temp_file")
182188
@mock.patch("kfk.commons.get_resource_yaml")
183-
@mock.patch("kfk.commands.clusters.os")
189+
@mock.patch("kfk.commands.clusters.replace_using_yaml")
184190
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
186192
):
187193
with open(
188194
"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(
213219
result_kafka_yaml = mock_create_temp_file.call_args[0][0]
214220
assert expected_kafka_yaml == result_kafka_yaml
215221

222+
mock_replace_using_yaml.assert_called_once()
223+
216224
@mock.patch("kfk.commands.clusters.create_temp_file")
217225
@mock.patch("kfk.commons.get_resource_yaml")
218-
@mock.patch("kfk.commands.clusters.os")
226+
@mock.patch("kfk.commands.clusters.replace_using_yaml")
219227
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
221229
):
222230
with open("tests/files/yaml/kafka-ephemeral_name_updated.yaml") as file:
223231
kafka_yaml = file.read()
@@ -242,11 +250,13 @@ def test_alter_cluster_with_one_replica(
242250
result_kafka_yaml = mock_create_temp_file.call_args[0][0]
243251
assert expected_kafka_yaml == result_kafka_yaml
244252

253+
mock_replace_using_yaml.assert_called_once()
254+
245255
@mock.patch("kfk.commands.clusters.create_temp_file")
246256
@mock.patch("kfk.commons.get_resource_yaml")
247-
@mock.patch("kfk.commands.clusters.os")
257+
@mock.patch("kfk.commands.clusters.replace_using_yaml")
248258
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
250260
):
251261
with open("tests/files/yaml/kafka-ephemeral_name_updated.yaml") as file:
252262
kafka_yaml = file.read()
@@ -273,11 +283,13 @@ def test_alter_cluster_with_two_replicas(
273283
result_kafka_yaml = mock_create_temp_file.call_args[0][0]
274284
assert expected_kafka_yaml == result_kafka_yaml
275285

286+
mock_replace_using_yaml.assert_called_once()
287+
276288
@mock.patch("kfk.commands.clusters.create_temp_file")
277289
@mock.patch("kfk.commons.get_resource_yaml")
278-
@mock.patch("kfk.commands.clusters.os")
290+
@mock.patch("kfk.commands.clusters.replace_using_yaml")
279291
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
281293
):
282294
with open("tests/files/yaml/kafka-ephemeral_name_updated.yaml") as file:
283295
kafka_yaml = file.read()
@@ -306,6 +318,8 @@ def test_alter_cluster_with_one_replica_one_zk_replica(
306318
result_kafka_yaml = mock_create_temp_file.call_args[0][0]
307319
assert expected_kafka_yaml == result_kafka_yaml
308320

321+
mock_replace_using_yaml.assert_called_once()
322+
309323
@mock.patch("kfk.commands.clusters.click.confirm")
310324
@mock.patch("kfk.commands.clusters.delete_using_yaml")
311325
def test_delete_cluster(self, mock_delete_using_yaml, mock_click_confirm):

tests/test_connect_connectors_command.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@ def test_alter_connector_without_config_file(self):
158158

159159
@mock.patch("kfk.commands.connect.connectors.create_temp_file")
160160
@mock.patch("kfk.commons.get_resource_yaml")
161-
@mock.patch("kfk.commands.connect.connectors.os")
161+
@mock.patch("kfk.commands.connect.connectors.replace_using_yaml")
162162
def test_alter_connector(
163-
self, mock_os, mock_get_resource_yaml, mock_create_temp_file
163+
self, mock_replace_using_yaml, mock_get_resource_yaml, mock_create_temp_file
164164
):
165165
with open("tests/files/yaml/kafka-connect-connector-twitter.yaml") as file:
166166
connector_yaml = file.read()
@@ -188,3 +188,5 @@ def test_alter_connector(
188188
expected_connector_yaml = file.read()
189189
result_connector_yaml = mock_create_temp_file.call_args[0][0]
190190
assert expected_connector_yaml == result_connector_yaml
191+
192+
mock_replace_using_yaml.assert_called_once()

0 commit comments

Comments
 (0)