Skip to content

Commit 0446e7a

Browse files
committed
Fix unittests.
1 parent b895a4b commit 0446e7a

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

koku/api/report/test/util/model_bakery_loader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ def load_openshift_data(self, cluster_id, on_cloud=False):
425425
report_period_ids = [report_period.id for report_period in report_periods]
426426
with patch(
427427
"masu.database.ocp_report_db_accessor.OCPReportDBAccessor._execute_trino_multipart_sql_query"
428-
), patch(
428+
), patch("masu.database.ocp_report_db_accessor.trino_table_exists"), patch(
429429
"masu.database.ocp_report_db_accessor.OCPReportDBAccessor._execute_trino_raw_sql_query_with_description"
430430
) as mock_description_sql:
431431
mock_description_sql.return_value = ([], [])

koku/masu/database/ocp_report_db_accessor.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,7 @@ def _populate_virtualization_storage_costs(self, sql_params):
118118
sql_params["month"] = start_date.strftime("%m")
119119
pvc_to_vm_sql = pkgutil.get_data("masu.database", "trino_sql/openshift/pvc_to_vm_name_mapping.sql")
120120
pvc_to_vm_sql = pvc_to_vm_sql.decode("utf-8")
121-
rows = self._execute_trino_raw_sql_query(
122-
pvc_to_vm_sql, sql_params=sql_params, context=sql_params, log_ref="retrieve pvc to vm mapping"
123-
)
121+
rows = self._execute_trino_multipart_sql_query(pvc_to_vm_sql, bind_params=sql_params)
124122
try:
125123
pvc_to_vm_json_str = rows[0][0]
126124
except IndexError:
@@ -132,9 +130,7 @@ def _populate_virtualization_storage_costs(self, sql_params):
132130
sql_params["pvc_to_vm_json_str"] = pvc_to_vm_json_str
133131
sql = pkgutil.get_data("masu.database", "sql/openshift/reporting_ocp_vm_summary_p_storage.sql")
134132
sql = sql.decode("utf-8")
135-
self._prepare_and_execute_raw_sql_query(
136-
"reporting_ocp_vm_summary_p", sql, sql_params, operation="DELETE/INSERT"
137-
)
133+
self._prepare_and_execute_raw_sql_query("reporting_ocp_vm_summary_p", sql, sql_params, operation="INSERT")
138134

139135
def update_line_item_daily_summary_with_tag_mapping(self, start_date, end_date, report_period_ids=None):
140136
"""Maps child keys to parent key.

0 commit comments

Comments
 (0)