53 lines
2.2 KiB
Python
53 lines
2.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
import odoo.tests
|
|
|
|
|
|
@odoo.tests.tagged('post_install', '-at_install')
|
|
class TestWebsiteBlogUi(odoo.tests.HttpCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
blog = cls.env['blog.blog'].create({
|
|
"name": 'aaa Blog Test',
|
|
"subtitle": 'Blog Test Subtitle',
|
|
"cover_properties": """{"background-image": "url('/website_blog/static/src/img/blog_1.jpeg')", "resize_class": "o_record_has_cover o_half_screen_height", "opacity": "0.4"}""",
|
|
})
|
|
|
|
blog_tag = cls.env.ref('website_blog.blog_tag_2', raise_if_not_found=False)
|
|
if not blog_tag:
|
|
blog_tag = cls.env['blog.tag'].create({'name': 'adventure'})
|
|
cls.env['blog.post'].create({
|
|
"name": "Post Test",
|
|
"subtitle": "Subtitle Test",
|
|
"blog_id": blog.id,
|
|
"author_id": cls.env.user.id,
|
|
"tag_ids": [(4, blog_tag.id)],
|
|
"is_published": True,
|
|
"cover_properties": """{"background-image": "url('/website_blog/static/src/img/cover_1.jpg')", "resize_class": "o_record_has_cover o_half_screen_height", "opacity": "0"}""",
|
|
})
|
|
|
|
def test_admin(self):
|
|
# Ensure at least two blogs exist for the step asking to select a blog
|
|
self.env['blog.blog'].create({'name': 'Travel'})
|
|
|
|
# Ensure at least one image exists for the step that chooses one
|
|
self.env['ir.attachment'].create({
|
|
'public': True,
|
|
'type': 'url',
|
|
'url': '/web/image/123/transparent.png',
|
|
'name': 'transparent.png',
|
|
'mimetype': 'image/png',
|
|
})
|
|
|
|
self.start_tour(self.env['website'].get_client_action_url('/'), 'blog', login='admin')
|
|
|
|
def test_blog_post_tags(self):
|
|
self.start_tour(self.env['website'].get_client_action_url('/blog'), 'blog_tags', login='admin')
|
|
|
|
def test_autocomplete_with_date(self):
|
|
self.env.ref('website_blog.opt_blog_sidebar_show').active = True
|
|
self.env.ref('website_blog.opt_sidebar_blog_index_follow_us').active = False
|
|
self.start_tour("/blog", 'blog_autocomplete_with_date')
|