3
0
Fork 0

[FIX] web_favicon: Ensure web favicon is displayed on the website

17.0
Rocío Vega 2024-07-04 11:25:55 -03:00
parent e2d9b8e81c
commit e836b6b4da
2 changed files with 29 additions and 0 deletions

View File

@ -68,6 +68,9 @@ class ResCompany(models.Model):
@api.model
def _get_favicon(self):
"""Returns a local url that points to the image field of a given record."""
if self.env.context.get("website_id"):
website = self.env["website"].browse(self.env.context.get("website_id"))
return website.image_url(website, "favicon")
company_id = (
request.httprequest.cookies.get("cids")
if request.httprequest.cookies.get("cids")

View File

@ -46,3 +46,29 @@ class TestWebFavicon(TransactionCase):
Company = self.env["res.company"]
company = Company.create({"name": "Test Company"})
self.assertTrue(company.favicon, "Default favicon not set on company creation.")
def test_03_website_favicon(self):
"""Test if favicon URL is correctly returned when website_id is in context."""
if self.env["ir.module.module"].search(
[("name", "=", "website"), ("state", "=", "installed")]
):
company = self.env["res.company"].create(
{
"name": "Test Company with Website",
}
)
website = self.env["website"].create(
{
"name": "Test Website",
"domain": "www.test.com",
"company_id": company.id,
}
)
website.favicon = website._default_favicon()
favicon_url = company.with_context(website_id=website.id)._get_favicon()
expected_favicon_url = website.image_url(website, "favicon")
self.assertEqual(
favicon_url,
expected_favicon_url,
"The favicon URL should match the expected value.",
)