mirror of
https://github.com/bringout/oca-report.git
synced 2026-04-20 15:22:01 +02:00
Initial commit: OCA Report packages (45 packages)
This commit is contained in:
commit
2f4db400df
2543 changed files with 469120 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
from . import test_report_qr
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
# Copyright 2019 Creu Blanca
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo.tests.common import HttpCase
|
||||
|
||||
|
||||
class TestReportQr(HttpCase):
|
||||
def test_qr_generation(self):
|
||||
data = "TEST"
|
||||
image = self.url_open("/report/qr?value=%s" % data)
|
||||
self.assertEqual(image.headers["Content-type"], "image/png")
|
||||
|
||||
def test_qr_overflow(self):
|
||||
"""There is a QR limitation for 4296 characters, we will test that an
|
||||
Exception is raised"""
|
||||
new_data = "".join(["TEST"] * 1500)
|
||||
with self.assertRaises(ValueError):
|
||||
self.env["ir.actions.report"].qr_generate(new_data)
|
||||
Loading…
Add table
Add a link
Reference in a new issue