Merge pull request #56526 from frappe/chore/test-stock-qty-vs-serial-no-count

test: Stock Qty vs Serial No Count report coverage
This commit is contained in:
Nabin Hait
2026-07-01 16:46:30 +05:30
committed by GitHub

View File

@@ -0,0 +1,48 @@
# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors
# See license.txt
import frappe
from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry
from erpnext.stock.report.stock_qty_vs_serial_no_count.stock_qty_vs_serial_no_count import execute
from erpnext.tests.utils import ERPNextTestSuite
class TestStockQtyVsSerialNoCount(ERPNextTestSuite):
def run_report(self, **extra):
filters = {
"company": "_Test Company",
"warehouse": "Stores - _TC",
}
filters.update(extra)
return execute(frappe._dict(filters))[1]
def test_serial_count_matches_stock_qty(self):
item = "_Test Serialized Item With Series"
make_stock_entry(
item_code=item,
to_warehouse="Stores - _TC",
qty=3,
rate=100,
posting_date="2026-06-01",
)
data = self.run_report()
row = next((entry for entry in data if entry["item_code"] == item), None)
self.assertIsNotNone(row, "Serialized item should be present in the report")
# Serial No count should equal the stock qty in this warehouse, regardless of
# how many serials the shared master has accumulated across tests.
self.assertEqual(row["total"], row["stock_qty"])
self.assertEqual(row["difference"], 0)
def test_warehouse_is_validated(self):
with self.assertRaises(frappe.ValidationError):
execute(
frappe._dict(
{
"company": "_Test Company",
"warehouse": "Non Existent Warehouse - XYZ",
}
)
)