Skip to Content
Menu
This question has been flagged
1 Reply
7332 Views

I'm trying to create an test that it makes a http request. But I'm getting an error.


ERROR MSG:

ERROR LROERP3273 openerp.addons.report.tests.test_report_crawl: ` HTTPError: HTTP Error 302: The HTTP server returned a redirect error that would lead to an infinite loop.

2016-07-26 14:31:13,782 7084 ERROR LROERP3273 openerp.addons.report.tests.test_report_crawl: ` The last 30x error message was:

2016-07-26 14:31:13,782 7084 ERROR LROERP3273 openerp.addons.report.tests.test_report_crawl: ` FOUND

2016-07-26 14:31:13,782 7084 INFO LROERP3273 openerp.addons.report.tests.test_report_crawl: Ran 1 test in 0.124s

2016-07-26 14:31:13,782 7084 ERROR LROERP3273 openerp.addons.report.tests.test_report_crawl: FAILED

2016-07-26 14:31:13,782 7084 INFO LROERP3273 openerp.addons.report.tests.test_report_crawl:  (errors=1)

016-07-26 14:31:13,783 7084 ERROR LROERP3273 openerp.modules.module: Module report: 0 failures, 1 errors.


CODE:

import openerp

class TestReportController(openerp.tests.common.HttpCase): 

at_install = False
post_install = True

  def test_report_controller(self):
body = self.url_open('/report/barcode?type=QR&value=Test').read()
Avatar
Discard
Best Answer

Hi Jeferson M. Moreira

You can't do it using Odoo unittest cycle because unittests are running in Odoo just after all the modules are loaded into the Registry pool. Controllers as pretty much anything in Odoo are Registry dependent in most cases so after the Registry is loaded and the tests finish to run, you will not be able to reach the url '/report/barcode?type=QR&value=Test' or any other url in Odoo that it's Controller depends on the Registry. 

You need to use something external to run your test case or build an Unittest for Odoo reusing the base clases but run it externally or on demand inside Odoo but not in the normal Odoo test lifecycle.

Avatar
Discard
Related Posts Replies Views Activity
3
Jan 18
12944
3
Jul 17
4245
2
Feb 23
3253
1
Jan 23
4154
0
Oct 22
1677