mirror of
https://github.com/OCA/stock-logistics-reporting.git
synced 2025-02-16 17:13:21 +02:00
[FIX] stock_average_daily_sale: Don't test the not refreshed materialized view
This commit is contained in:
committed by
twalter-c2c
parent
171fd862a4
commit
ce97bf0ef3
@@ -205,22 +205,3 @@ class TestAverageSale(CommonAverageSaleTest, TransactionCase):
|
|||||||
self.env["stock.average.daily.sale"].search_read(
|
self.env["stock.average.daily.sale"].search_read(
|
||||||
[("product_id", "=", self.product_1.id)]
|
[("product_id", "=", self.product_1.id)]
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_view_not_refreshed(self):
|
|
||||||
with self.assertLogs(
|
|
||||||
"odoo.addons.stock_average_daily_sale.models.stock_average_daily_sale",
|
|
||||||
level="WARNING",
|
|
||||||
) as logger:
|
|
||||||
self.env["stock.average.daily.sale"].search(
|
|
||||||
[("product_id", "=", self.product_1.id)]
|
|
||||||
)
|
|
||||||
self.assertIn(
|
|
||||||
str("The materialized view has not been populated. Launch the cron."),
|
|
||||||
str(logger.output),
|
|
||||||
)
|
|
||||||
# Check if we can still query database
|
|
||||||
product = self.env["product.product"].search([("id", "=", self.product_1.id)])
|
|
||||||
self.assertEqual(
|
|
||||||
product,
|
|
||||||
self.product_1,
|
|
||||||
)
|
|
||||||
|
|||||||
Reference in New Issue
Block a user