У меня есть этот код, который работал:
import unittest
from flask import url_for
from dm.web import create_app, db
class TestApi(unittest.TestCase):
def setUp(self):
"""Create and configure a new app instance for each test."""
self.app = create_app('test')
self.app_context = self.app.app_context()
self.app_context.push()
db.create_all()
self.client = self.app.test_client(use_cookies=True)
def tearDown(self) -> None:
db.session.remove()
db.drop_all()
self.app_context.pop()
def test_url(self):
self.assertEqual('/', url_for('root.home'))
if __name__ == '__main__':
unittest.main()
Но так как сегодня я получаю эту ошибку:
ERROR: test_url (__main__.TestApi)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/joan/.PyCharmCE2019.3/config/scratches/scratch.py", line 17, in test_url
self.assertEqual('/', url_for('root.home'))
File "/home/joan/venvs/dimensigon3.7/lib/python3.7/site-packages/flask/helpers.py", line 333, in url_for
"Application was not able to create a URL adapter for request"
RuntimeError: Application was not able to create a URL adapter for request independent URL generation. You might be able to fix this by setting the SERVER_NAME config variable.
Из того, что я вижу в url_for, я получаю Нет в appctx.url_adapter, который я не знаю, когда он установлен.
Спасибо!