我已经看到了几个类似于此处发布的问题,但我发现没有任何帮助。我正在尝试使用Flask-Testing和Flask-Fixtures编写单元测试。我遇到了一个问题,因为Flask-Fixtures在传递给它的db上调用了create_all
,在这种情况下它实际上并没有创建表。我查看了db.metadata.tables.keys
,其中显示了使用db.Model
config.py
:
import os
from config import BASE_DIR
# SQLALCHEMY_DATABASE_URI = 'sqlite:///test-db'
SQLALCHEMY_DATABASE_URI = 'sqlite:////Users/XXX/projects/XXX-api/app/inventory/test-db'
testing = True
debug = True
FIXTURES_DIRS = (
os.path.join(BASE_DIR, "inventory/"),
)
我这样做时表创建失败:
from flask_api import FlaskAPI
from flask.ext.sqlalchemy import SQLAlchemy
from .models import db
app = FlaskAPI(__name__)
app.config.from_object('app.test_config')
ctx = app.app_context()
ctx.push()
db.init_app(app)
db.create_all()
vars(db.metadata)
给出了这个:
{'_bind': None,
'_fk_memos': defaultdict(list, {}),
'_schemas': set(),
'_sequences': {},
'naming_convention': immutabledict({'ix': 'ix_%(column_0_label)s'}),
'schema': None,
'tables': immutabledict({'gr_merchant_ftp_info': Table('gr_merchant_ftp_info', MetaData(bind=None), Column('id', BigInteger(), table=<gr_merchant_ftp_info>, primary_key=True, nullable=False), Column('merchant_id', BigInteger(), table=<gr_merchant_ftp_info>), Column('chain_id', BigInteger(), table=<gr_merchant_ftp_info>), Column('hostname', String(length=128), table=<gr_merchant_ftp_info>, nullable=False), Column('username', String(length=128), table=<gr_merchant_ftp_info>, nullable=False), Column('password', String(length=128), table=<gr_merchant_ftp_info>, nullable=False), Column('path', String(length=512), table=<gr_merchant_ftp_info>, nullable=False), Column('install_ts', DateTime(timezone=True), table=<gr_merchant_ftp_info>, server_default=DefaultClause(<sqlalchemy.sql.elements.TextClause object at 0x11007dd10>, for_update=False)), Column('parsed_file_base_path', String(length=256), table=<gr_merchant_ftp_info>), schema=None), 'gr_article_product_mapping': Table('gr_article_product_mapping', MetaData(bind=None), Column('id', BigInteger(), table=<gr_article_product_mapping>, primary_key=True, nullable=False, server_default=DefaultClause(<sqlalchemy.sql.elements.TextClause object at 0x11006fc10>, for_update=False)), Column('product_id', BigInteger(), table=<gr_article_product_mapping>), Column('article_id', String(length=128), table=<gr_article_product_mapping>), Column('install_ts', DateTime(timezone=True), table=<gr_article_product_mapping>, server_default=DefaultClause(<sqlalchemy.sql.elements.TextClause object at 0x11007d090>, for_update=False)), Column('store_code', String(length=128), table=<gr_article_product_mapping>), Column('conversion_factor', Float(precision=53), table=<gr_article_product_mapping>, server_default=DefaultClause(<sqlalchemy.sql.elements.TextClause object at 0x11007d210>, for_update=False)), schema=None), 'gr_store_merchant_mapping': Table('gr_store_merchant_mapping', MetaData(bind=None), Column('id', BigInteger(), table=<gr_store_merchant_mapping>, primary_key=True, nullable=False, server_default=DefaultClause(<sqlalchemy.sql.elements.TextClause object at 0x10f67f790>, for_update=False)), Column('merchant_id', BigInteger(), table=<gr_store_merchant_mapping>), Column('store_id', BigInteger(), table=<gr_store_merchant_mapping>), Column('install_ts', DateTime(timezone=True), table=<gr_store_merchant_mapping>, server_default=DefaultClause(<sqlalchemy.sql.elements.TextClause object at 0x11007d650>, for_update=False)), Column('store_code', String(length=128), table=<gr_store_merchant_mapping>), schema=None)})}
非常感谢任何指示,谢谢!
答案 0 :(得分:1)
我明白了。问题是我使用的是多个数据库而我没有在test_config中指定SQLALCHEMY_BINDS
。之后我遇到了一个新问题,即使create_all
现在可以创建我的表,因为它经历了所有绑定,Flask-Fixtures显然不支持它,它只是在插入数据时使用默认引擎。我通过使SQLALCHEMY_DATABASE_URI
与我的绑定相同来解决它,因此两者都连接到同一个数据库。一个非常粗糙的解决方案,但这就是我现在所拥有的。