refactor(test): row name based utility methods

(cherry picked from commit dbc409736a)
This commit is contained in:
ruthra kumar
2026-07-03 17:02:32 +05:30
committed by Mergify
parent d759574f9a
commit 9cf7f441fb

View File

@@ -48,18 +48,27 @@ class TestProcessPeriodClosingVoucher(ERPNextTestSuite):
ppcv.save() ppcv.save()
return ppcv return ppcv
def set_processing_date_status(self, date, ppcv, rpt_type, parentfield, status): def set_processing_date_status(self, row_name, status):
frappe.db.set_value( frappe.db.set_value(
"Process Period Closing Voucher Detail", "Process Period Closing Voucher Detail",
{"processing_date": date, "parent": ppcv, "report_type": rpt_type, "parentfield": parentfield}, row_name,
"status", "status",
status, status,
) )
def get_processing_date_closing_balance(self, date, ppcv, rpt_type, parentfield): def get_row_name(self, ppcv_name, rpt_type, parentfield):
return frappe.db.get_all(
"Process Period Closing Voucher Detail",
filters={"parent": ppcv_name, "report_type": rpt_type, "parentfield": parentfield},
order_by="report_type, idx",
pluck="name",
limit=1,
)[0]
def get_processing_date_closing_balance(self, row_name):
return frappe.db.get_value( return frappe.db.get_value(
"Process Period Closing Voucher Detail", "Process Period Closing Voucher Detail",
{"processing_date": date, "parent": ppcv, "report_type": rpt_type, "parentfield": parentfield}, row_name,
"closing_balance", "closing_balance",
) )
@@ -97,11 +106,10 @@ class TestProcessPeriodClosingVoucher(ERPNextTestSuite):
parentfield = "normal_balances" parentfield = "normal_balances"
rpt_type = "Profit and Loss" rpt_type = "Profit and Loss"
# status has to be set to 'Running' for logic to run # status has to be set to 'Running' for logic to run
self.set_processing_date_status(today(), ppcv.name, rpt_type, parentfield, "Running") row_name = self.get_row_name(ppcv.name, rpt_type, parentfield)
process_individual_date(ppcv.name, today(), rpt_type, parentfield) self.set_processing_date_status(row_name, "Running")
bal = frappe.parse_json( process_individual_date(ppcv.name, row_name, today(), rpt_type, parentfield)
self.get_processing_date_closing_balance(today(), ppcv.name, rpt_type, parentfield) bal = frappe.parse_json(self.get_processing_date_closing_balance(row_name))
)
self.assertEqual(len(bal), 1) self.assertEqual(len(bal), 1)
expected_pl = { expected_pl = {
"account": "Sales - _TC", "account": "Sales - _TC",
@@ -117,11 +125,10 @@ class TestProcessPeriodClosingVoucher(ERPNextTestSuite):
# Balance sheet balance # Balance sheet balance
rpt_type = "Balance Sheet" rpt_type = "Balance Sheet"
self.set_processing_date_status(today(), ppcv.name, rpt_type, parentfield, "Running") row_name = self.get_row_name(ppcv.name, rpt_type, parentfield)
process_individual_date(ppcv.name, today(), rpt_type, parentfield) self.set_processing_date_status(row_name, "Running")
bal = frappe.parse_json( process_individual_date(ppcv.name, row_name, today(), rpt_type, parentfield)
self.get_processing_date_closing_balance(today(), ppcv.name, rpt_type, parentfield) bal = frappe.parse_json(self.get_processing_date_closing_balance(row_name))
)
self.assertEqual(len(bal), 1) self.assertEqual(len(bal), 1)
expected_bs = { expected_bs = {
"account": "Debtors - _TC", "account": "Debtors - _TC",
@@ -138,11 +145,10 @@ class TestProcessPeriodClosingVoucher(ERPNextTestSuite):
# Opening balance # Opening balance
parentfield = "z_opening_balances" parentfield = "z_opening_balances"
rpt_type = "Balance Sheet" rpt_type = "Balance Sheet"
self.set_processing_date_status(today(), ppcv.name, rpt_type, parentfield, "Running") row_name = self.get_row_name(ppcv.name, rpt_type, parentfield)
process_individual_date(ppcv.name, today(), rpt_type, parentfield) self.set_processing_date_status(row_name, "Running")
bal = frappe.parse_json( process_individual_date(ppcv.name, row_name, today(), rpt_type, parentfield)
self.get_processing_date_closing_balance(today(), ppcv.name, rpt_type, parentfield) bal = frappe.parse_json(self.get_processing_date_closing_balance(row_name))
)
self.assertEqual(len(bal), 2) self.assertEqual(len(bal), 2)
opening_cash = next(x for x in bal if x["account"] == "Cash - _TC") opening_cash = next(x for x in bal if x["account"] == "Cash - _TC")
expected_opening_cash = { expected_opening_cash = {