gpt4 book ai didi

django - 运行测试时出现 TransactionManagementError,但找不到原子 block

转载 作者:行者123 更新时间:2023-12-05 03:12:38 26 4
gpt4 key购买 nike

我在运行测试时遇到了问题,我一开始运行测试就收到 TransactionManagementError。我尝试了各种不同的测试,但都遇到了这个错误:

.ve/lib/python2.7/site-packages/django/test/testcases.py:189: in __call__
self._post_teardown()
.ve/lib/python2.7/site-packages/cms/test_utils/testcases.py:97: in _post_teardown
menu_pool.clear()
.ve/lib/python2.7/site-packages/menus/menu_pool.py:156: in clear
if to_be_deleted:
.ve/lib/python2.7/site-packages/django/db/models/query.py:145: in __nonzero__
self._fetch_all()
.ve/lib/python2.7/site-packages/django/db/models/query.py:966: in _fetch_all
self._result_cache = list(self.iterator())
.ve/lib/python2.7/site-packages/django/db/models/query.py:1202: in iterator
for row in self.query.get_compiler(self.db).results_iter():
.ve/lib/python2.7/site-packages/django/db/models/sql/compiler.py:701: in results_iter
for rows in self.execute_sql(MULTI):
.ve/lib/python2.7/site-packages/django/db/models/sql/compiler.py:787: in execute_sql
cursor.execute(sql, params)
.ve/lib/python2.7/site-packages/django/db/backends/utils.py:59: in execute
self.db.validate_no_broken_transaction()
.ve/lib/python2.7/site-packages/django/db/backends/__init__.py:386: in validate_no_broken_transaction
"An error occurred in the current transaction. You can't "
E TransactionManagementError: An error occurred in the current transaction. You can't execute queries until the end of the 'atomic' block.

您可以在 _post_teardown 方法中看到堆栈跟踪,所以我猜问题出在这个测试之前的某个地方。我查看了堆栈跟踪的每一行上的代码,但看不到代码的那些位中正在启动的事务,因此它一定发生在此处之前,但我如何找出位置?

如果我单独测试应用程序 A 或单独测试应用程序 B,我不确定如何追踪有问题的代码。欢迎提出任何建议。

我正在使用 Django 1.7、Django CMS 3.1(在上面的堆栈跟踪中包含菜单应用程序)和 pytest 作为测试运行程序。我正在使用 --create-db 参数进行此测试,以确保干净地重新创建数据库。

最佳答案

我通过回滚提交直到测试通过并比较更改的内容来跟踪更改。事实证明,它添加了一个保存后信号处理程序来自动创建一个链接模型,该模型是阻止测试通过的更改。我有一个 User 模型和一个 UserProfile 模型,其中 OneToOneField 指向 User 模型。

问题在于测试通常是手动创建 UserProfile。添加 post_save 处理程序后,将导致手动创建的 UserProfile 出现重复 ID 错误,因为自动创建的 UserProfile 已经使用了该 ID。我猜这导致围绕单元测试的事务严重失败,导致所有其他错误。

但最初的错误隐藏在许多交易错误的噪音中。

关于django - 运行测试时出现 TransactionManagementError,但找不到原子 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33101129/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com