# -*- coding: utf-8 -*- # Copyright 2016-2017 Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from lxml import etree from odoo.tools import mute_logger from odoo.tests.common import TransactionCase from ..models import ir_fields_converter class ExtractorCase(TransactionCase): def setUp(self): super(ExtractorCase, self).setUp() # Shortcut self.imgs_from_html = self.env["ir.fields.converter"].imgs_from_html def test_mixed_images_found(self): """Images correctly found in elements and backgrounds.""" content = u"""

""" # Read all images for n, url in enumerate(self.imgs_from_html(content)): self.assertEqual("/path/%d" % n, url) self.assertEqual(n, 7) # Read only first image for n, url in enumerate(self.imgs_from_html(content, 1)): self.assertEqual("/path/%d" % n, url) self.assertEqual(n, 0) @mute_logger(ir_fields_converter.__name__) def test_empty_html(self): """Empty HTML handled correctly.""" for laps, text in self.imgs_from_html(""): self.assertTrue(False) # You should never get here with self.assertRaises(etree.XMLSyntaxError): list(self.imgs_from_html("", fail=True)) @mute_logger(ir_fields_converter.__name__) def test_false_html(self): """``False`` HTML handled correctly.""" for laps, text in self.imgs_from_html(False): self.assertTrue(False) # You should never get here with self.assertRaises(TypeError): list(self.imgs_from_html(False, fail=True)) @mute_logger(ir_fields_converter.__name__) def test_bad_html(self): """Bad HTML handled correctly.""" for laps, text in self.imgs_from_html("<"): self.assertTrue(False) # You should never get here with self.assertRaises(etree.ParserError): list(self.imgs_from_html("<", fail=True))