a
    !fnd                     @   s  d Z ddlZddlZddlZddlZddlm  mZ ddl	m	Z	 ddl
mZ ddl
mZ ddl
mZ ddl
mZ ddl
mZ dd	l
mZ dd
l
mZ ddlZddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddlmZ ddl m!Z! ddl"m#Z# ddl$m%Z% e#d  Z&e'e(dddZ)ddddZ*i Z+dddgie+d < dg d!ie+d"< e+d  , e+d#< e*e+d# e+d"  e+d  e+d$< G d%d& d&Z-ee(dd'd(d)Z.ej/eee(e'gdf d*d+d,Z0ej/eee(e'gdf d*d-d.Z1e(e(dd/d0d1Z2ej/d2d3eee(e'gdf d*d4d5Z3edd6d7d8Z4edd9d:d;Z5edd9d<d=Z6e(ee( d>d?d@Z7G dAd dZ8dS )Ba  Report test results in JUnit-XML format, for use with Jenkins and build
integration servers.

Based on initial code from Ross Lawley.

Output conforms to
https://github.com/jenkinsci/xunit-plugin/blob/master/src/main/resources/org/jenkinsci/plugins/xunit/types/model/xsd/junit-10.xsd
    N)datetime)Callable)Dict)List)Match)Optional)Tuple)Union)nodes)timing)ExceptionRepr)ReprFileLocation)Config)filename_arg)Parser)FixtureRequest)
TestReport)StashKey)TerminalReporterLogXML)argreturnc                 C   s*   t t tddd}d}t||t| S )a!  Visually escape invalid XML characters.

    For example, transforms
        'hello\aworld\b'
    into
        'hello#x07world#x08'
    Note that the #xABs are *not* XML escapes - missing the ampersand &#xAB.
    The idea is to escape visually for the user rather than for XML itself.
    )matchobjr   c                 S   s(   t |  }|dkrd| S d| S d S )N   z#x%02Xz#x%04X)ordgroup)r   i r   Q/var/www/html/python-backend/venv/lib/python3.9/site-packages/_pytest/junitxml.pyrepl3   s    zbin_xml_escape.<locals>.replu    [^	
 -~-퟿-�က0-ჿFF])r   strresub)r   r   Zillegal_xml_rer   r   r   bin_xml_escape(   s    r#   r   c                 C   sX   i }|   D ]<\}}|  D ]*\}}t|ts:tt||| ||< qq| | d S N)items
isinstancelist	TypeErrortypeupdate)leftrightresultklZvlkrZvrr   r   r   merge_familyC   s    
r1   testcase	classnamename_base)filelineurlZ_base_legacyxunit1xunit2c                   @   sN  e Zd Zeeef dddddZejddddZ	ee
dd	d
dZee
dd	ddZeej dddZeddddZejdddZd0eeee ddddZeddddZeeedddZeeeddd d!Zeddd"d#Zeddd$d%Zeddd&d'Zeddd(d)Zeddd*d+Zeddd,d-Zddd.d/ZdS )1_NodeReporterr   N)nodeidxmlr   c                 C   s<   || _ || _| jj| _| jj| _d| _g | _g | _i | _d S )N        )idr=   	add_statsfamilyduration
propertiesr
   attrs)selfr<   r=   r   r   r   __init__Z   s    

z_NodeReporter.__init__)noder   c                 C   s   | j |j | j| d S r%   )r=   r@   tagr
   append)rE   rG   r   r   r   rI   d   s    z_NodeReporter.appendr4   valuer   c                 C   s   | j t|t|f d S r%   )rC   rI   r    r#   rE   r4   rK   r   r   r   add_propertyh   s    z_NodeReporter.add_propertyc                 C   s   t || jt|< d S r%   )r#   rD   r    rL   r   r   r   add_attributek   s    z_NodeReporter.add_attributer$   c                 C   s>   | j r:td}| j D ]\}}|tjd||d q|S dS z9Return a Junit node containing custom properties, if any.rC   propertyr4   rK   N)rC   ETElementrI   rE   rC   r4   rK   r   r   r   make_properties_noden   s    
z"_NodeReporter.make_properties_node)
testreportr   c                 C   s   t |j}| j}|d d }| jjr4|d| jj d|t|d |jd d}|jd d urtt	|jd |d< t
|dr|j|d< || _| j| | jdkrd S i }| j D ]$}|t| j d	 v r| j| ||< q|| _d S )
Nr   .)r3   r4   r6      r7   r8   r9   r2   )mangle_test_addressr<   rD   r=   prefixinsertjoinr#   locationr    hasattrr8   r+   rA   keysfamilies)rE   rV   namesZexisting_attrsZ
classnamesrD   Z
temp_attrskeyr   r   r   record_testreportw   s,    




z_NodeReporter.record_testreportc                 C   sB   t jd| jd| j d}|  }|d ur2|| || j |S )Nr2   %.3f)time)rR   rS   rD   rB   rU   rI   extendr
   )rE   r2   rC   r   r   r   to_xml   s    
z_NodeReporter.to_xml)rH   messagedatar   c                 C   s&   t j||d}t||_| | d S )N)ri   rR   rS   r#   textrI   )rE   rH   ri   rj   rG   r   r   r   _add_simple   s    
z_NodeReporter._add_simplereportr   c                 C   s   | j js|jrd S |j}|j}|j}| j jdkr4d S d}| j jdv rP| |d}| j jdv r~|| |d7 }| ||d d}| j jdv r|| |d	7 }| ||d
 d}|r| ||d d S )Nno )logallz Captured Log )
system-outout-errrs   z Captured Out rt   )
system-errru   rs   z Captured Err rv   )	r=   log_passing_testspassedZ	capstdoutZcaplogZ	capstderrlogging_prepare_content_write_content)rE   ro   Zcontent_outZcontent_logZcontent_errZcontent_allr   r   r   write_captured_output   s(    z#_NodeReporter.write_captured_output)contentheaderr   c                 C   s   d |dd|dgS )N
P   -rq   )r]   center)rE   r}   r~   r   r   r   rz      s    z_NodeReporter._prepare_content)ro   r}   jheaderr   c                 C   s"   t |}t||_| | d S r%   rk   )rE   ro   r}   r   rH   r   r   r   r{      s    

z_NodeReporter._write_contentc                 C   s   |  d d S )Nrx   )r@   rE   ro   r   r   r   append_pass   s    z_NodeReporter.append_passc                 C   sn   t |dr| dd nR|jd us&J t|jdd }|d urD|j}n
t|j}t|}| d|t|j d S )Nwasxfailskippedz%xfail-marked test passes unexpectedly	reprcrashfailure)r_   rm   longreprgetattrri   r    r#   )rE   ro   r   ri   r   r   r   append_failure   s    

z_NodeReporter.append_failurec                 C   s&   |j d usJ | ddt|j  d S )Nerrorzcollection failure)r   rm   r    r   r   r   r   append_collect_error   s    z"_NodeReporter.append_collect_errorc                 C   s   |  ddt|j d S )Nr   zcollection skipped)rm   r    r   r   r   r   r   append_collect_skipped   s    z$_NodeReporter.append_collect_skippedc                 C   sv   |j d usJ t|j dd }|d ur,|j}n
t|j }|jdkrNd| d}nd| d}| dt|t|j  d S )Nr   teardownzfailed on teardown with ""zfailed on setup with "r   )r   r   ri   r    whenrm   r#   )rE   ro   r   reasonmsgr   r   r   append_error   s    

z_NodeReporter.append_errorc                 C   s   t |drJ|j}|dr&|dd  }t|}tjdd|d}| | ntt|jt	sZJ |j\}}}|dr||dd  }| d	| d
| }tjdd|d}t||_
| | | | d S )Nr   zreason:    r   zpytest.xfail)r*   ri   z	Skipped: 	   :z: zpytest.skip)r_   r   
startswithr#   rR   rS   rI   r'   r   tuplerl   r|   )rE   ro   Zxfailreasonr   filenamelinenoZ
skipreasondetailsr   r   r   append_skipped   s     




z_NodeReporter.append_skippedc                    s$   |    | j   fdd| _ d S )Nc                      s    S r%   r   r   rj   r   r   <lambda>      z(_NodeReporter.finalize.<locals>.<lambda>)rh   __dict__clearrE   r   r   r   finalize   s    
z_NodeReporter.finalize)N)__name__
__module____qualname__r	   r    r   rF   rR   rS   rI   objectrM   rN   r   rU   rd   rh   rm   r|   rz   r{   r   r   r   r   r   r   r   r   r   r   r   r;   Y   s$   
	r;   )requestfixture_namer   c                 C   sN   ddl m} | jjtd}|durJ|jdvrJ| j|dj	||jd dS )z[Emit a PytestWarning about the given fixture being incompatible with newer xunit revisions.r   )PytestWarningN)r9   legacyzV{fixture_name} is incompatible with junit_family '{family}' (use 'legacy' or 'xunit1'))r   rA   )
_pytest.warning_typesr   configstashgetxml_keyrA   rG   warnformat)r   r   r   r=   r   r   r   !_warn_incompatibility_with_xunit2  s    r   )r   r   c                    s$   t  d ttdd fdd}|S )an  Add extra properties to the calling test.

    User properties become part of the test report and are available to the
    configured reporters, like JUnit XML.

    The fixture is callable with ``name, value``. The value is automatically
    XML-encoded.

    Example::

        def test_function(record_property):
            record_property("example_key", 1)
    record_propertyNrJ   c                    s    j j| |f d S r%   )rG   user_propertiesrI   rQ   r   r   r   append_property*  s    z(record_property.<locals>.append_property)r   r    r   )r   r   r   r   r   r     s    
r   c                 C   sl   ddl m} | j|d t| d ttdddd}|}| jj	t
d}|durh|| jj}|j}|S )	zAdd extra xml attributes to the tag for the calling test.

    The fixture is callable with ``name, value``. The value is
    automatically XML-encoded.
    r   )PytestExperimentalApiWarningz/record_xml_attribute is an experimental featurerecord_xml_attributeNrJ   c                 S   s   d S r%   r   rQ   r   r   r   add_attr_noop@  s    z+record_xml_attribute.<locals>.add_attr_noop)r   r   rG   r   r   r    r   r   r   r   r   node_reporterr<   rN   )r   r   r   Z	attr_funcr=   r   r   r   r   r   0  s    
r   )paramvr   c                 C   s.   d}t |ts*d}t|j| t|jddS )zcUsed by record_testsuite_property to check that the given parameter name is of the proper
    type.Tz5{param} parameter needs to be a string, but {g} given)r   gN)r'   r    r)   r   r*   r   )r   r   __tracebackhide__r   r   r   r   _check_record_param_typeM  s    
r   session)scopec                 C   s8   d}t tdddd}| jjtd}|dur4|j}|S )a+  Record a new ``<property>`` tag as child of the root ``<testsuite>``.

    This is suitable to writing global information regarding the entire test
    suite, and is compatible with ``xunit2`` JUnit family.

    This is a ``session``-scoped fixture which is called with ``(name, value)``. Example:

    .. code-block:: python

        def test_foo(record_testsuite_property):
            record_testsuite_property("ARCH", "PPC")
            record_testsuite_property("STORAGE_TYPE", "CEPH")

    :param name:
        The property name.
    :param value:
        The property value. Will be converted to a string.

    .. warning::

        Currently this fixture **does not work** with the
        `pytest-xdist <https://github.com/pytest-dev/pytest-xdist>`__ plugin. See
        :issue:`7767` for details.
    TNrJ   c                 S   s   d}t d|  dS )zFNo-op function in case --junit-xml was not passed in the command-line.Tr4   N)r   )r4   rK   r   r   r   r   record_funcs  s    z.record_testsuite_property.<locals>.record_func)r    r   r   r   r   r   add_global_property)r   r   r   r=   r   r   r   record_testsuite_propertyV  s    r   )parserr   c              
   C   s   |  d}|jdddddtjtddd dd	 |jd
dddd dd | jdddd | jdddd | jddddd | jdddd | jddd d d S )!Nzterminal reportingz
--junitxmlz--junit-xmlstorexmlpathpath)optnamez0Create junit-xml style report file at given path)actiondestmetavarr*   defaulthelpz--junitprefixz--junit-prefixr    z0Prepend prefix to classnames in junit-xml output)r   r   r   r   junit_suite_namez Test suite name for JUnit reportpytest)r   junit_loggingz\Write captured log messages to JUnit report: one of no|log|system-out|system-err|out-err|allrp   junit_log_passing_testsz;Capture log information for passing tests to JUnit report: boolT)r*   r   junit_duration_reportz*Duration time to report: one of total|calltotaljunit_familyz0Emit XML for schema: one of legacy|xunit1|xunit2r:   )ZgetgroupZ	addoption	functoolspartialr   Zaddini)r   r   r   r   r   pytest_addoption~  sV    

r   )r   r   c              
   C   sl   | j j}|rht| dsh| d}t|| j j| d| d| d|| d| jt< | j	| jt  d S )NZworkerinputr   r   r   r   r   )
optionr   r_   Zgetinir   Zjunitprefixr   r   pluginmanagerregister)r   r   r   r   r   r   pytest_configure  s    

	r   c                 C   s*   | j td }|r&| j t= | j| d S r%   )r   r   r   r   
unregister)r   r=   r   r   r   pytest_unconfigure  s    r   )addressr   c                 C   s^   |  d\}}}|d}|d tjd|d< tdd|d |d< |d  || 7  < |S )N[z::r   rX   z\.py$rq   rW   )	partitionsplitreplacer
   ZSEPr!   r"   )r   r   Zpossible_open_bracketparamsrb   r   r   r   rZ     s    
rZ   c                   @   s  e Zd Zd*ee eeeedddd	Zedd
ddZe	eef e
d
ddZeddddZee
d
ddZedd
ddZedd
ddZedd
ddZeddddZddddZddd d!Zedd"d#d$Zeedd%d&d'Zeej dd(d)ZdS )+r   r   rp   r   r9   TN)r[   
suite_namery   report_durationrw   r   c                 C   s   t jt j|}t jt j|| _|| _|| _|| _	|| _
|| _|| _tg dd| _i | _g | _g | _g | _d| _| jdkrd| _d S )N)r   rx   r   r   r   r   r9   )osr   
expanduser
expandvarsnormpathabspathlogfiler[   r   ry   rw   r   rA   dictfromkeysstatsnode_reportersnode_reporters_orderedglobal_propertiesopen_reportscnt_double_fail_tests)rE   r   r[   r   ry   r   rA   rw   r   r   r   rF     s&    

zLogXML.__init__rn   c                 C   s\   t |d|}t |dd }| j||f}|jD ]\}}||t| q.|d urX|  d S Nr<   rG   )r   r   popr   rM   r    r   )rE   ro   r<   
workernodereporterZpropnameZ	propvaluer   r   r   r     s    zLogXML.finalizec                 C   sX   t |d|}t |dd }||f}|| jv r4| j| S t|| }|| j|< | j| |S r   )r   r   r;   r   rI   )rE   ro   r<   r   rc   r   r   r   r   r      s    



zLogXML.node_reporter)rc   r   c                 C   s    || j v r| j |  d7  < d S )NrY   )r   )rE   rc   r   r   r   r@     s    
zLogXML.add_statsc                 C   s   |  |}|| |S r%   )r   rd   rE   ro   r   r   r   r   _opentestcase  s    

zLogXML._opentestcasec                    sn  d} j r* jdkr|  }|  nĈ jrԈ jdkrt ddt ddt fdd| jD d}|r| | |  j	d7  _	|  } jdkr|
  | j  | js|  q|  n jr|  }|  |    jdkrj|  }|  |   t ddt ddt fd	d| jD d}|rj| j| dS )
a  Handle a setup/call/teardown report, generating the appropriate
        XML tags as necessary.

        Note: due to plugins like xdist, this hook may be called in interlaced
        order with reports from other nodes. For example:

        Usual call order:
            -> setup node1
            -> call node1
            -> teardown node1
            -> setup node2
            -> call node2
            -> teardown node2

        Possible call order in xdist:
            -> setup node1
            -> call node1
            -> setup node2
            -> call node2
            -> teardown node2
            -> teardown node1
        Ncallr   	worker_id
item_indexc                 3   s>   | ]6}|j  j krt|d dkrt|ddkr|V  qdS r  Nr   r<   r   .0repro   Z	report_iiZ
report_widr   r   	<genexpr>=  s
   z2LogXML.pytest_runtest_logreport.<locals>.<genexpr>rY   c                 3   s>   | ]6}|j  j krt|d dkrt|ddkr|V  qdS r  r  r  r  r   r   r  b  s
   )rx   r   r   r   failedr   nextr   r   r   r   rI   rw   r|   r   r   r   update_testcase_durationremove)rE   ro   Zclose_reportr   r   r  r   pytest_runtest_logreport  sV    


	









	zLogXML.pytest_runtest_logreportc                 C   s:   | j dks|j| j kr6| |}| jt|dd7  _dS )zAccumulate total duration for nodeid from given report and update
        the Junit.testcase with the new total if already created.r   rB   r>   N)r   r   r   rB   r   r   r   r   r   r  p  s    
zLogXML.update_testcase_durationc                 C   s0   |j s,| |}|jr"|| n
|| d S r%   )rx   r   r	  r   r   r   r   r   r   pytest_collectreportw  s
    
zLogXML.pytest_collectreport)excreprr   c                 C   s0   |  d}|jjddd |ddt| d S )NZinternalr   )r3   r4   r   zinternal error)r   rD   r+   rm   r    )rE   r  r   r   r   r   pytest_internalerror  s    
zLogXML.pytest_internalerrorr$   c                 C   s   t  | _d S r%   )r   rf   suite_start_timer   r   r   r   pytest_sessionstart  s    zLogXML.pytest_sessionstartc           
      C   sV  t jt j| j}t j|dd t| jddd
}t }|| j	 }| j
d | j
d  | j
d  | j
d	  | j }|d
 tjd| jt| j
d	 t| j
d t| j
d t|d| t| j	 t d	}|  }|d ur|| | jD ]}||  qtd}	|	| |tj|	dd W d    n1 sH0    Y  d S )NT)exist_okwzutf-8)encodingrx   r   r   r   z&<?xml version="1.0" encoding="utf-8"?>Z	testsuitere   )r4   errorsZfailuresr   testsrf   	timestamphostname
testsuitesunicode)r   r   dirnamer   r   makedirsopenr   rf   r  r   r   writerR   rS   r   r    r   fromtimestamp	isoformatplatformrG   _get_global_properties_noderI   r   rh   Ztostring)
rE   r  r   Zsuite_stop_timeZsuite_time_deltaZnumtestsZ
suite_noder   r   r  r   r   r   pytest_sessionfinish  sF    





zLogXML.pytest_sessionfinish)terminalreporterr   c                 C   s   | dd| j  d S )Nr   zgenerated xml file: )Z	write_sepr   )rE   r%  r   r   r   pytest_terminal_summary  s    zLogXML.pytest_terminal_summaryrJ   c                 C   s&   d}t d| | j|t|f d S )NTr4   )r   r   rI   r#   )rE   r4   rK   r   r   r   r   r     s    
zLogXML.add_global_propertyc                 C   s>   | j r:td}| j D ]\}}|tjd||d q|S dS rO   )r   rR   rS   rI   rT   r   r   r   r#    s    
z"LogXML._get_global_properties_node)r   rp   r   r9   T)r   r   r   r   r    r   rF   r   r   r	   r;   r   r@   r   r  r  r  r   r  r  r$  r   r&  r   r   rR   rS   r#  r   r   r   r   r     s4        #U&)9__doc__r   r   r"  r!   Zxml.etree.ElementTreeetreeZElementTreerR   r   typingr   r   r   r   r   r   r	   r   Z_pytestr
   r   Z_pytest._code.coder   r   Z_pytest.configr   r   Z_pytest.config.argparsingr   Z_pytest.fixturesr   Z_pytest.reportsr   Z_pytest.stashr   Z_pytest.terminalr   r   r   r    r#   r1   ra   copyr;   r   Zfixturer   r   r   r   r   r   r   rZ   r   r   r   r   r   <module>   sf   

 1	
'/