RuntimeError: working outside of application context
RuntimeError: working outside of application context
app.py
from flask import Flask, render_template, request,jsonify,json,g
import mysql.connector
app = Flask(__name__)
**class TestMySQL():**
@app.before_request
def before_request():
try:
g.db = mysql.connector.connect(user='root', password='root', database='mysql')
except mysql.connector.errors.Error as err:
resp = jsonify({'status': 500, 'error': "Error:{}".format(err)})
resp.status_code = 500
return resp
@app.route('/')
def input_info(self):
try:
cursor = g.db.cursor()
cursor.execute ('CREATE TABLE IF NOT EXISTS testmysql (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(40) NOT NULL, \
email VARCHAR(40) NOT NULL UNIQUE)')
cursor.close()
test.py
from app import *
class Test(unittest.TestCase):
def test_connection1(self):
with patch('__main__.mysql.connector.connect') as mock_mysql_connector_connect:
object=TestMySQL()
object.before_request() """Runtime error on calling this"
我正在将 app 导入 test.py 以供单元 testing.On 调用 'before_request' 函数进入 test.py ,它抛出 RuntimeError: working outside of application context
调用 'input_info()'
时也会发生同样的情况
Flask 有一个 Application Context,看来您需要执行以下操作:
def test_connection(self):
with app.app_context():
#test code
您也可以将 app.app_context()
调用推入测试设置方法中。希望这有帮助。
当我 运行 在使用 pytest
时遇到类似问题时,我遵循了 @brenns10 的答案。
我遵循了将其放入测试设置的建议,这有效:
import pytest
from src.app import app
@pytest.fixture
def app_context():
with app.app_context():
yield
def some_test(app_context):
# <test code that needs the app context>
app.py
from flask import Flask, render_template, request,jsonify,json,g
import mysql.connector
app = Flask(__name__)
**class TestMySQL():**
@app.before_request
def before_request():
try:
g.db = mysql.connector.connect(user='root', password='root', database='mysql')
except mysql.connector.errors.Error as err:
resp = jsonify({'status': 500, 'error': "Error:{}".format(err)})
resp.status_code = 500
return resp
@app.route('/')
def input_info(self):
try:
cursor = g.db.cursor()
cursor.execute ('CREATE TABLE IF NOT EXISTS testmysql (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(40) NOT NULL, \
email VARCHAR(40) NOT NULL UNIQUE)')
cursor.close()
test.py
from app import *
class Test(unittest.TestCase):
def test_connection1(self):
with patch('__main__.mysql.connector.connect') as mock_mysql_connector_connect:
object=TestMySQL()
object.before_request() """Runtime error on calling this"
我正在将 app 导入 test.py 以供单元 testing.On 调用 'before_request' 函数进入 test.py ,它抛出 RuntimeError: working outside of application context 调用 'input_info()'
时也会发生同样的情况Flask 有一个 Application Context,看来您需要执行以下操作:
def test_connection(self):
with app.app_context():
#test code
您也可以将 app.app_context()
调用推入测试设置方法中。希望这有帮助。
当我 运行 在使用 pytest
时遇到类似问题时,我遵循了 @brenns10 的答案。
我遵循了将其放入测试设置的建议,这有效:
import pytest
from src.app import app
@pytest.fixture
def app_context():
with app.app_context():
yield
def some_test(app_context):
# <test code that needs the app context>