RuntimeError:在应用程序上下文之外工作

时间:2015-07-16 01:41:08

标签: python mysql flask werkzeug flask-restful

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 进行单元测试。在调用' before_request '函数进入test.py,它抛出RuntimeError:在应用程序上下文之外工作 在调用' input_info()'

时也会发生同样的情况

2 个答案:

答案 0 :(得分:55)

Flask有一个Application Context,看起来你需要做类似的事情:

def test_connection(self):
    with app.app_context():
        #test code

您也可以将app.app_context()调用推送到测试设置方法中。希望这会有所帮助。

答案 1 :(得分:0)

使用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>