Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
7520 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
3
led 18
13192
3
čvc 17
4399
2
úno 23
3551
1
led 23
4447
0
říj 22
1866