Pytest 和 PostgreSQL:每次测试的新数据库
来源:dev.to
时间:2024-08-22 09:18:42 468浏览 收藏
学习知识要善于思考,思考,再思考!今天golang学习网小编就给大家带来《Pytest 和 PostgreSQL:每次测试的新数据库》,以下内容主要包含等知识点,如果你正在学习或准备学习文章,就都不要错过本文啦~让我们一起来看看吧,能帮助到你就更好了!
在 pytest(每个人最喜欢的 python 测试框架)中,fixture 是一段可重用的代码,它在测试进入之前安排一些事情,并在测试退出后进行清理。例如,临时文件或文件夹、设置环境、启动 web 服务器等。在这篇文章中,我们将了解如何创建 pytest 夹具,该夹具创建一个可以清理的测试数据库(空或已知状态) ,允许每个测试在完全干净的数据库上运行.
目标我们将使用 psycopg 3 创建一个 pytest 夹具来准备和清理测试数据库。因为空数据库对测试几乎没有帮助,所以我们将选择应用 yoyo 迁移(在撰写本文时网站已关闭,请转到 archive.org 快照)来填充它。
因此,对本博文中创建的名为 test_db 的 pytest 夹具的要求是:
- 删除测试数据库如果在测试之前存在
- 测试前创建一个空数据库 可选地 在测试之前应用迁移或创建测试数据
- 提供到测试数据库 的连接到测试
- 测试后删除测试数据库 (即使失败)
- 任何通过列出测试方法参数来请求它的测试方法:
def test_create_admin_table(test_db): ...
将收到连接到测试数据库的常规 psycopg connection 实例。测试可以做任何需要做的事情,就像普通的 psycopg 常见用法一样,例如:
def test_create_admin_table(test_db): # open a cursor to perform database operations cur = test_db.cursor() # pass data to fill a query placeholders and let psycopg perform # the correct conversion (no sql injections!) cur.execute( "insert into test (num, data) values (%s, %s)", (100, "abc'def")) # query the database and obtain data as python objects. cur.execute("select * from test") cur.fetchone() # will return (1, 100, "abc'def") # you can use `cur.fetchmany()`, `cur.fetchall()` to return a list # of several records, or even iterate on the cursor for record in cur: print(record)
我尝试过 pytest-postgresql ,它也有同样的承诺。在编写自己的装置之前我已经尝试过它,但我无法让它为我工作。也许是因为他们的文档让我很困惑。
另一个,pytest-dbt-postgres,我根本没有尝试过。
├── src │ └── tuvok │ ├── __init__.py │ └── sales │ └── new_user.py ├── tests │ ├── conftest.py │ └── sales │ └── test_new_user.py ├── requirements.txt └── yoyo.ini
如果你使用像 fantasyal yoyo 这样的迁移库,迁移脚本很可能在migrations/:
├── migrations ├── 20240816_01_yn3ca-sales-user-user-add-last-run-table.py ├── ...
配置
连接 url
- - (无数据库)
- 测试数据库名称 - 将为每个测试重新创建
- (可选)迁移文件夹 - 应用于每个测试的迁移脚本
- pytest 有一个天然的地方 conftest.py 用于跨多个文件共享固定装置。灯具配置也会在那里:
# without db name! test_db_url = "postgresql://localhost" test_db_name = "test_tuvok" test_db_migrations_dir = str(path(__file__, "../../migrations").resolve())
您可以从环境变量或任何适合您情况的值来设置这些值。
有了
postgresql和psycopg库的知识
,在conftest.py中编写fixture:
@pytest.fixture
def test_db():
# autocommit=true start no transaction because create/drop database
# cannot be executed in a transaction block.
with psycopg.connect(test_db_url, autocommit=true) as conn:
cur = conn.cursor()
# create test db, drop before
cur.execute(f'drop database if exists "{test_db_name}" with (force)')
cur.execute(f'create database "{test_db_name}"')
# return (a new) connection to just created test db
# unfortunately, you cannot directly change the database for an existing psycopg connection. once a connection is established to a specific database, it's tied to that database.
with psycopg.connect(test_db_url, dbname=test_db_name) as conn:
yield conn
cur.execute(f'drop database if exists "{test_db_name}" with (force)')
创建迁移固定装置
yoyo 迁移
。将应用迁移编写为另一个名为 yoyo 的固定装置:
@pytest.fixture
def yoyo():
# yoyo expect `driver://user:pass@host:port/database_name?param=value`.
# in passed url we need to
url = (
urlparse(test_db_url)
.
# 1) change driver (schema part) with `postgresql+psycopg` to use
# psycopg 3 (not 2 which is `postgresql+psycopg2`)
_replace(scheme="postgresql+psycopg")
.
# 2) change database to test db (in which migrations will apply)
_replace(path=test_db_name)
.geturl()
)
backend = get_backend(url)
migrations = read_migrations(test_db_migrations_dir)
if len(migrations) == 0:
raise valueerror(f"no yoyo migrations found in '{test_db_migrations_dir}'")
with backend.lock():
backend.apply_migrations(backend.to_apply(migrations))
如果你想
将迁移应用到每个测试数据库
@pytest.fixture
def test_db(yoyo):
...
要
仅将迁移应用于某些测试
def test_create_admin_table(test_db, yoyo):
...
结论
我希望这篇文章对您自己的数据库测试套件有所帮助。请随时在评论中留下您的问题,祝您编码愉快!
以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于文章的相关知识,也可关注golang学习网公众号。
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
164 收藏
-
394 收藏
-
277 收藏
-
368 收藏
-
353 收藏
-
214 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习