a
    qJhnd                     @   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   B/var/www/shaz/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nameZ_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)rD   rF   r   r   r   rH   d   s    z_NodeReporter.appendr4   valuer   c                 C   s   | j t|t|f d S r%   )rB   rH   r    r#   rD   r4   rJ   r   r   r   add_propertyh   s    z_NodeReporter.add_propertyc                 C   s   t || jt|< d S r%   )r#   rC   r    rK   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.rB   propertyr4   rJ   N)rB   ETElementrH   rD   rB   r4   rJ   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   r5      r6   r7   r8   r2   )mangle_test_addressr;   rC   r<   prefixinsertjoinr#   locationr    hasattrr7   r+   r@   keysfamilies)rD   rU   namesZexisting_attrsZ
classnamesrC   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)rQ   rR   rC   rA   rT   rH   extendr
   )rD   r2   rB   r   r   r   to_xml   s    
z_NodeReporter.to_xml)rG   messagedatar   c                 C   s&   t j||d}t||_| | d S )N)rh   rQ   rR   r#   textrH   )rD   rG   rh   ri   rF   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-errrr   z Captured Out rs   )
system-errrt   rr   z Captured Err ru   )	r<   log_passing_testspassedZ	capstdoutZcaplogZ	capstderrlogging_prepare_content_write_content)rD   rn   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   -rp   )r\   center)rD   r|   r}   r   r   r   ry      s    z_NodeReporter._prepare_content)rn   r|   jheaderr   c                 C   s"   t |}t||_| | d S r%   rj   )rD   rn   r|   r   rG   r   r   r   rz      s    

z_NodeReporter._write_contentc                 C   s   |  d d S )Nrw   )r?   rD   rn   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^   rl   longreprgetattrrh   r    r#   )rD   rn   r   rh   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   rl   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)rl   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   rh   r    whenrl   r#   )rD   rn   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*   rh   z	Skipped: 	   :z: zpytest.skip)r^   r   
startswithr#   rQ   rR   rH   r'   r   tuplerk   r{   )rD   rn   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   ri   r   r   <lambda>      z(_NodeReporter.finalize.<locals>.<lambda>)rg   __dict__clearrD   r   r   r   finalize   s    
z_NodeReporter.finalize)N)__name__
__module____qualname__r	   r    r   rE   rQ   rR   rH   objectrL   rM   r   rT   rc   rg   rl   r{   ry   rz   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)r8   legacyzV{fixture_name} is incompatible with junit_family '{family}' (use 'legacy' or 'xunit1'))r   r@   )
_pytest.warning_typesr   configstashgetxml_keyr@   rF   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_propertyNrI   c                    s    j j| |f d S r%   )rF   user_propertiesrH   rP   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_attributeNrI   c                 S   s   d S r%   r   rP   r   r   r   add_attr_noop@  s    z+record_xml_attribute.<locals>.add_attr_noop)r   r   rF   r   r   r    r   r   r   r   r   node_reporterr;   rM   )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.
    TNrI   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   rJ   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|allro   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|xunit2r9   )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   rW   z\.py$rp   rV   )	partitionsplitreplacer
   ZSEPr!   r"   )r   r   Zpossible_open_bracketparamsra   r   r   r   rY     s    
rY   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   ro   r   r8   TN)rZ   
suite_namerx   report_durationrv   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   rw   r   r   r   r   r8   )osr   
expanduser
expandvarsnormpathabspathlogfilerZ   r   rx   rv   r   r@   dictfromkeysstatsnode_reportersnode_reporters_orderedglobal_propertiesopen_reportscnt_double_fail_tests)rD   r   rZ   r   rx   r   r@   rv   r   r   r   rE     s&    

zLogXML.__init__rm   c                 C   s\   t |d|}t |dd }| j||f}|jD ]\}}||t| q.|d urX|  d S Nr;   rF   )r   r   popr   rL   r    r   )rD   rn   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   rH   )rD   rn   r;   r   rb   r   r   r   r   r      s    



zLogXML.node_reporter)rb   r   c                 C   s    || j v r| j |  d7  < d S )NrX   )r   )rD   rb   r   r   r   r?     s    
zLogXML.add_statsc                 C   s   |  |}|| |S r%   )r   rc   rD   rn   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rn   Z	report_iiZ
report_widr   r   	<genexpr>=  s
   z2LogXML.pytest_runtest_logreport.<locals>.<genexpr>rX   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
   )rw   r   r   r   failedr   nextr   r   r   r   rH   rv   r{   r   r   r   update_testcase_durationremove)rD   rn   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   rA   r=   N)r   r   r   rA   r   r   r   r   r   r
  p  s    
zLogXML.update_testcase_durationc                 C   s0   |j s,| |}|jr"|| n
|| d S r%   )rw   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   rC   r+   rl   r    )rD   r  r   r   r   r   pytest_internalerror  s    
zLogXML.pytest_internalerrorr$   c                 C   s   t  | _d S r%   )r   re   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)encodingrw   r   r   r   z&<?xml version="1.0" encoding="utf-8"?>Z	testsuiterd   )r4   errorsZfailuresr   Ztestsre   	timestamphostname
testsuitesunicode)r   r   dirnamer   r   makedirsopenr   re   r  r   r   writerQ   rR   r   r    r   fromtimestamp	isoformatplatformrF   _get_global_properties_noderH   r   rg   Ztostring)
rD   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   )rD   r#  r   r   r   pytest_terminal_summary  s    zLogXML.pytest_terminal_summaryrI   c                 C   s&   d}t d| | j|t|f d S )NTr4   )r   r   rH   r#   )rD   r4   rJ   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 rN   )r   rQ   rR   rH   rS   r   r   r   r!    s    
z"LogXML._get_global_properties_node)r   ro   r   r8   T)r   r   r   r   r    r   rE   r   r   r	   r:   r   r?   r   r  r
  r  r   r  r  r"  r   r$  r   r   rQ   rR   r!  r   r   r   r   r     s4        #U&)9__doc__r   r   r   r!   Zxml.etree.ElementTreeetreeZElementTreerQ   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   r`   copyr:   r   Zfixturer   r   r   r   r   r   r   rY   r   r   r   r   r   <module>   sf   

 1	
'/