allure-framework / allure-framework/allure-python
Attribute error in @allure.title when using @pytest.fixture(params=[...]
- Lingua principale
- Python
- Stelle
- 814
- Fork
- 260
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
@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
```
Guida per i contributori
Apri la guida per i contributori
Direzione di ricerca
Inizia dal percorso di formattazione di @allure.title e da allure_commons.utils.SafeFormatter.get_field mostrati nel traceback; confrontali con il comportamento descritto in #670. Riproduci i casi di skip ed errore di una fixture parametrizzata, quindi verifica che venga segnalato lo skip originale di pytest o ValueError invece di AttributeError.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- python
- Ambito
- testing
- Tipo di issue
- Bug
- Difficoltà
- 3/5
- Tempo stimato
- 1-2 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 45/100