allure-framework / allure-framework/allure-python

Attribute error in @allure.title when using @pytest.fixture(params=[...]

オープン
#873 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
theme:pytest
主要言語
Python
スター
814
フォーク
260
PR マージ指標
30日以内にマージされた PR はありません

説明

@allure.title decorator doesn't correctly formats a title string when using a parametrized fixture and having that fixture skip a test or raise an error:

```
import pytest
import allure

class TestClass:
@pytest.fixture(params=[1, 2]) # <-- causes AttributeError: 'int' object has no attribute 'one'
# @pytest.fixture()
def params(self):
# will cause AttributeError in allure.title
# if this fixture is skipping tests
pytest.skip('skip')

# or raising an error
raise ValueError('aa')

class _Params:
"""some params every test needs"""
one = 1
two = 2

# but no error if it returns a value
return _Params()

@allure.title('should display "1" {params.one}')
def test_func(self, params): # <-- causes AttributeError: 'int' object has no attribute 'one'
assert params.one == 1
```
```
self = , field_name = 'params.one', args = (), kwargs = {'param_id': '2', 'params': 2}

def get_field(self, field_name, args, kwargs):
first, rest = _string.formatter_field_name_split(field_name)

obj = self.get_value(first, args, kwargs)

# loop through the rest of the field_name, doing
# getattr or getitem as needed
for is_attr, i in rest:
if is_attr:
> obj = getattr(obj, i)
^^^^^^^^^^^^^^^
E AttributeError: 'int' object has no attribute 'one'

/usr/lib64/python3.12/string.py:305: AttributeError
=================================================================== short test summary info ====================================================================
ERROR p.py::TestClass::test_func[1] - AttributeError: 'int' object has no attribute 'one'
ERROR p.py::TestClass::test_func[2] - AttributeError: 'int' object has no attribute 'one'
====================================================================== 2 errors in 0.14s =======================================================================
```

This is shadowing the real error or skip in the fixture and is similar to #670

```
allure-pytest==2.15.0
pytest==8.4.1
```

コントリビューションガイド

コントリビューションガイドを開く

調査の方向性

トレースバックに示されている @allure.title のフォーマット処理経路と allure_commons.utils.SafeFormatter.get_field から開始し、#670 に記載された動作と比較します。パラメータ化されたフィクスチャの skip ケースとエラーケースを再現し、AttributeError ではなく元の pytest の skip または ValueError が報告されることを確認します。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
python
領域
testing
issue の種類
バグ
難易度
3/5
見積もり時間
1〜2日
活発さ
停滞
明瞭さ
おおむね明確
初心者へのやさしさ
45/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。