Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
7559 Widoki

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()
Awatar
Odrzuć
Najlepsza odpowiedź

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.

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
3
sty 18
13276
3
lip 17
4449
2
lut 23
3598
1
sty 23
4498
0
paź 22
1908