Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
1 Vastaa
7325 Näkymät

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
Hylkää
Paras vastaus

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
Hylkää
Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
3
tammik. 18
12942
3
heinäk. 17
4245
2
helmik. 23
3253
1
tammik. 23
4152
0
lokak. 22
1676