o
    ÕjCE  ã                   @   s0  d Z ddlmZ ddlZddlZddlZzddlmZ W n e	y+   ddl
mZ Y nw g d¢Ze d¡Ze d¡Ze d¡ZejZd	d
„ Zdd„ ZejdddZdd„ Ze d¡Ze d¡ZG dd„ deƒZG dd„ deƒZd#dd„Zd$dd„ZG dd„ dƒZdd„ Zd d!iZe d"kr–ddlZe !¡  dS dS )%aÑ  
lxml-based doctest output comparison.

Note: normally, you should just import the `lxml.usedoctest` and
`lxml.html.usedoctest` modules from within a doctest, instead of this
one::

    >>> import lxml.usedoctest # for XML output

    >>> import lxml.html.usedoctest # for HTML output

To use this module directly, you must call ``lxmldoctest.install()``,
which will cause doctest to use this in all subsequent calls.

This changes the way output is checked and comparisons are made for
XML or HTML-like content.

XML or HTML content is noticed because the example starts with ``<``
(it's HTML if it starts with ``<html``).  You can also use the
``PARSE_HTML`` and ``PARSE_XML`` flags to force parsing.

Some rough wildcard-like things are allowed.  Whitespace is generally
ignored (except in attributes).  In text (attributes and text in the
body) you can use ``...`` as a wildcard.  In an example it also
matches any trailing tags in the element, though it does not match
leading tags.  You may create a tag ``<any>`` or include an ``any``
attribute in the tag.  An ``any`` tag matches any tag, while the
attribute matches any and all attributes.

When a match fails, the reformatted example and gotten text is
displayed (indented), and a rough diff-like output is given.  Anything
marked with ``+`` is in the output but wasn't supposed to be, and
similarly ``-`` means its in the example but wasn't in the output.

You can disable parsing on one line with ``# doctest:+NOPARSE_MARKUP``
é    )ÚetreeN)Úescape)Ú
PARSE_HTMLÚ	PARSE_XMLÚNOPARSE_MARKUPÚLXMLOutputCheckerÚLHTMLOutputCheckerÚinstallÚtemp_installr   r   r   c                 C   s   | d u rd S |   ¡ S ©N)Ústrip©Úv© r   úT/var/www/html/Deteccion_Ine/venv/lib/python3.10/site-packages/lxml/doctestcompare.pyr   8   s   r   c                 C   s   t  d| ¡S )Nú )Ú_norm_whitespace_reÚsubr   r   r   r   Únorm_whitespace>   ó   r   FT)ZrecoverZremove_blank_textc                 C   s   t  | t¡S r   )r   Z
fromstringÚ_html_parser©Úhtmlr   r   r   Úhtml_fromstringC   r   r   z^<[^>]+ (at|object) z[ \t\n][ \t\n]+c                   @   s    e Zd ZdZdd„ Zdd„ Zdd„ Zdd	„ Zd
d„ Zdd„ Z	dd„ Z
dd„ Zd'dd„Zd(dd„Zd'dd„Zdd„ Zdd„ Zdd„ Zd d!„ Zd"d#„ Zd'd$d%„Zd&S ))r   )
ÚparamZimgZareaÚbrZbasefontÚinputÚbaseÚmetaÚlinkÚcolc                 C   s   t jS r   )r   ÚXML©Úselfr   r   r   Úget_default_parserP   s   z$LXMLOutputChecker.get_default_parserc           	      C   sš   t | dd ƒ}|d ur| j}|} ntj}|  |||¡}|s#|| |||ƒS z||ƒ}W n tjy4   Y dS w z||ƒ}W n tjyF   Y dS w |  ||¡S )NÚ_temp_override_selfF)ÚgetattrÚ_temp_call_super_check_outputÚOutputCheckerÚcheck_outputÚ
get_parserr   ÚXMLSyntaxErrorÚcompare_docs)	r#   ÚwantÚgotÚoptionflagsZalt_selfZsuper_methodÚparserÚwant_docÚgot_docr   r   r   r)   S   s*   ÿÿÿzLXMLOutputChecker.check_outputc                 C   sz   d }t |@ rd S t|@ rt}|S t|@ rtj}|S | ¡  ¡  d¡r-| ¡  d¡r-t}|S |  	|¡r;|  	|¡r;|  
¡ }|S )Nz<html)r   r   r   r   r   r!   r   ÚlowerÚ
startswithÚ_looks_like_markupr$   )r#   r-   r.   r/   r0   r   r   r   r*   h   s&   	øúÿ
ýÿzLXMLOutputChecker.get_parserc                 C   s   |  ¡ }| d¡ot |¡ S )Nú<)r   r4   Ú_repr_reÚsearch)r#   Úsr   r   r   r5   x   s   

ÿz$LXMLOutputChecker._looks_like_markupc           
      C   s  |   |j|j¡s
dS |  |j|jd¡sdS |  |j|jd¡s dS d|jvrNt|j ¡ ƒ}t|j ¡ ƒ}||kr9dS |D ]}|  |j| |j| d¡sM dS q;|jdksWt|ƒr‰t	|ƒ}t	|ƒ}|sc|r‰|rg|sidS | 
d¡}| 
d¡}	|  ||	¡s{dS |s…|jdkr…	 dS |sc|scdS )NFTÚanyz...r   )Útag_compareÚtagÚtext_compareÚtextÚtailÚattribÚsortedÚkeysÚlenÚlistÚpopr,   )
r#   r-   r.   Z	want_keysZgot_keysÚkeyÚwant_childrenÚgot_childrenZ
want_firstZ	got_firstr   r   r   r,   }   s<   
ÿ

÷	zLXMLOutputChecker.compare_docsc                 C   sZ   |pd}|pd}|rt |ƒ ¡ }t |ƒ ¡ }dt |¡ }| dd¡}t ||¡r+dS dS )NÚ z^%s$z\.\.\.z.*TF)r   r   Úrer   Úreplacer8   )r#   r-   r.   r   r   r   r   r=   š   s   zLXMLOutputChecker.text_comparec                 C   sn   |dkrdS t |ttfƒrt |ttfƒs||kS |pd}|pd}| d¡r3| d¡d | d¡d kS ||kS )Nr:   TrI   z{...}Ú}éÿÿÿÿ)Ú
isinstanceÚstrÚbytesr4   Úsplit)r#   r-   r.   r   r   r   r;   §   s   ÿ
zLXMLOutputChecker.tag_comparec                 C   s  |j }|  |||¡}g }|d urLz||ƒ}W n tjy-   t ¡ d }| d| ¡ Y nw z||ƒ}	W n tjyK   t ¡ d }| d| ¡ Y nw |d u sR|rht | |||¡}
|rf| |
¡ d 	|¡S |
S |t
u }d|  ||d¡d|  |	|d¡d|  ||	|d¡g}d 	|¡S )	Né   zIn example: %szIn actual output: %sÚ
z	Expected:é   zGot:zDiff:)r-   r*   r   r+   ÚsysÚexc_infoÚappendr(   Úoutput_differenceÚjoinr   Ú
format_docÚcollect_diff)r#   Zexampler.   r/   r-   r0   Úerrorsr1   Úer2   Úvaluer   Z
diff_partsr   r   r   rX   µ   sB   þþÿ

û
z#LXMLOutputChecker.output_differenceTc                 C   s.   |sdS |j | jvrdS |jst|ƒrdS dS )NFT)r<   Ú
empty_tagsr>   rC   )r#   Úelr   r   r   r   Úhtml_empty_tagÕ   s   z LXMLOutputChecker.html_empty_tagrI   c              	   C   s–  g }t |ƒsN| d| ¡ | |¡ | |  |¡¡ |  ||¡s6t|jƒr.| |  |j¡¡ | |  |¡¡ t|jƒrD| |  |j¡¡ | d¡ d 	|¡S | d| ¡ | |¡ | |  |¡¡ |  ||¡s¬| d¡ t|jƒr‡| d| ¡ | |  |j¡¡ | d¡ |D ]}| |  
|||d ¡¡ q‰| d| ¡ | |  |¡¡ | d¡ t|jƒrÆ| d| ¡ | |  |j¡¡ | d¡ d 	|¡S )Nr   rS   rI   rT   )rC   rW   Ú
format_tagra   r   r>   Úformat_textÚformat_end_tagr?   rY   rZ   )r#   Údocr   ÚindentÚprefixÚpartsr`   r   r   r   rZ   ß   s@   












zLXMLOutputChecker.format_docc                 C   s"   |d u rdS |r|  ¡ }t|dƒS )NrI   rR   )r   Úhtml_escape)r#   r>   r   r   r   r   rc     s
   
zLXMLOutputChecker.format_textc              	   C   sh   g }t |tjƒr
dS t|j ¡ ƒD ]\}}| d||  |d¡f ¡ q|s*d|j S d|jd 	|¡f S )Nz<!--ú%s="%s"Fú<%s>ú<%s %s>r   )
rN   r   ÚCommentBaserA   r@   ÚitemsrW   rc   r<   rY   )r#   r`   ÚattrsÚnamer^   r   r   r   rb   	  s   
zLXMLOutputChecker.format_tagc                 C   s   t |tjƒrdS d|j S )Nz-->ú</%s>)rN   r   rm   r<   )r#   r`   r   r   r   rd     s   
z LXMLOutputChecker.format_end_tagc              	   C   s  g }t |ƒsIt |ƒsI| d| ¡ | |  ||¡¡ |  ||¡s4| |  |j|j¡¡ | |  ||¡¡ | |  |j|j¡¡ | d¡ d |¡S | d| ¡ | |  ||¡¡ | d¡ t	|jƒsht	|jƒr| d| ¡ | |  |j|j¡¡ | d¡ t
|ƒ}t
|ƒ}|s‹|rÈ|sž| |  | d¡||d d¡¡ q‡|s±| |  | d¡||d d¡¡ q‡| |  | d¡| d¡||d ¡¡ |s‹|s‹| d| ¡ | |  ||¡¡ | d¡ t	|jƒsçt	|jƒrþ| d| ¡ | |  |j|j¡¡ | d¡ d |¡S )Nr   rS   rI   r   rT   ú+ú-)rC   rW   Úcollect_diff_tagra   Úcollect_diff_textr>   Úcollect_diff_end_tagr?   rY   r   rD   rZ   rE   r[   )r#   r-   r.   r   rf   rh   rG   rH   r   r   r   r[     sL   



  ÿù	


zLXMLOutputChecker.collect_diffc           	   	   C   s(  |   |j|j¡sd|j|jf }n|j}g }|jdkpd|jv }t|j ¡ ƒD ]8\}}||jvr@|s@| d||  |d¡f ¡ q'||jv rP|  |j| |d¡}n|  |d¡}| d||f ¡ q'|st|j ¡ ƒD ]\}}||jv rsqi| d||  |d¡f ¡ qi|rŽd|d |¡f }|S d	| }|S )
Nú%s (got: %s)r:   z+%s="%s"Frj   z-%s="%s"rl   r   rk   )	r;   r<   r@   rA   rn   rW   rc   ru   rY   )	r#   r-   r.   r<   ro   r:   rp   r^   r>   r   r   r   rt   @  s,   

ÿz"LXMLOutputChecker.collect_diff_tagc                 C   s2   |j |j krd|j |j f }d| S |j }d| S )Nrw   rq   )r<   )r#   r-   r.   r<   r   r   r   rv   [  s
   ÿz&LXMLOutputChecker.collect_diff_end_tagc                 C   s:   |   |||¡r|sdS |  ||¡S d||f }|  ||¡S )NrI   rw   )r=   rc   )r#   r-   r.   r   r>   r   r   r   ru   b  s   z#LXMLOutputChecker.collect_diff_textN)T)rI   )Ú__name__Ú
__module__Ú__qualname__r_   r$   r)   r*   r5   r,   r=   r;   rX   ra   rZ   rc   rb   rd   r[   rt   rv   ru   r   r   r   r   r   J   s&    
 


#&r   c                   @   s   e Zd Zdd„ ZdS )r   c                 C   s   t S r   )r   r"   r   r   r   r$   k  s   z%LHTMLOutputChecker.get_default_parserN)rx   ry   rz   r$   r   r   r   r   r   j  s    r   c                 C   s   | rt t_dS tt_dS )z£
    Install doctestcompare for all future doctests.

    If html is true, then by default the HTML parser will be used;
    otherwise the XML parser is used.
    N)r   Údoctestr(   r   r   r   r   r   r	   n  s   

r	   c           	      C   s`   | rt }nt}tƒ }|jd }|ƒ }|j}||_|jd j}|jj}tt_t	||||||ƒ dS )zÁ
    Use this *inside* a doctest to enable this checker for this
    doctest only.

    If html is true, then by default the HTML parser will be used;
    otherwise the XML parser is used.
    r#   ÚcheckN)
r   r   Ú_find_doctest_frameÚf_localsZ_checkerÚ__func__r)   r   r{   Ú_RestoreChecker)	r   Ú
del_moduleZCheckerÚframeÚdt_selfÚcheckerÚold_checkerÚ
check_funcZchecker_check_funcr   r   r   r
   z  s   

þr
   c                   @   sL   e Zd Zdd„ Zdd„ Zdd„ Zdd„ Zd	d
„ Zdd„ Zdd„ Z	dd„ Z
dS )r€   c                 C   sD   || _ || _| j| j_|| j_|| _|| _|| _|  ¡  |  	¡  d S r   )
rƒ   r„   Ú
call_superr'   r%   r†   Ú
clone_funcr   Úinstall_cloneÚinstall_dt_self)r#   rƒ   r…   Znew_checkerr†   rˆ   r   r   r   r   Ú__init__ž  s   
z_RestoreChecker.__init__c                 C   s$   | j j| _| j j| _| jj| j _d S r   )r†   Ú__code__Ú	func_codeÚ__globals__Zfunc_globalsrˆ   r"   r   r   r   r‰   ©  s   

z_RestoreChecker.install_clonec                 C   ó   | j | j_d S r   )r   r†   rŒ   r"   r   r   r   Úuninstall_clone­  ó   z_RestoreChecker.uninstall_clonec                 C   s   | j j| _| | j _d S r   )rƒ   Ú_DocTestRunner__record_outcomeÚ	prev_funcr"   r   r   r   rŠ   ¯  s   
z_RestoreChecker.install_dt_selfc                 C   r   r   )r“   rƒ   r’   r"   r   r   r   Úuninstall_dt_self²  r‘   z!_RestoreChecker.uninstall_dt_selfc                 C   sT   | j r&dd l}|j| j = d| j v r(| j  dd¡\}}|j| }t||ƒ d S d S d S )Nr   Ú.rR   )r   rU   ÚmodulesÚrsplitÚdelattr)r#   rU   ÚpackageÚmoduleZpackage_modr   r   r   Úuninstall_module´  s   


úz _RestoreChecker.uninstall_modulec                 O   s8   |   ¡  |  ¡  | j`| j`| j|i |¤Ž}|  ¡  |S r   )r   r”   r„   r%   r'   r“   r›   )r#   ÚargsÚkwÚresultr   r   r   Ú__call__¼  s   z_RestoreChecker.__call__c                 O   s.   |   ¡  z| j|i |¤ŽW |  ¡  S |  ¡  w r   )r   r†   r‰   )r#   rœ   r   r   r   r   r‡   Ä  s   z_RestoreChecker.call_superN)rx   ry   rz   r‹   r‰   r   rŠ   r”   r›   rŸ   r‡   r   r   r   r   r€     s    r€   c                  C   s:   dd l } |  d¡}|r|j}d|v r|S |j}|stdƒ‚)Nr   rR   ZBOOMzBCould not find doctest (only use this function *inside* a doctest))rU   Ú	_getframer~   Úf_backÚLookupError)rU   r‚   Úlr   r   r   r}   Ë  s   
ûÿr}   Úbasicai  
    >>> temp_install()
    >>> print """<xml a="1" b="2">stuff</xml>"""
    <xml b="2" a="1">...</xml>
    >>> print """<xml xmlns="http://example.com"><tag   attr="bar"   /></xml>"""
    <xml xmlns="...">
      <tag attr="..." />
    </xml>
    >>> print """<xml>blahblahblah<foo /></xml>""" # doctest: +NOPARSE_MARKUP, +ELLIPSIS
    <xml>...foo /></xml>
    Ú__main__)F)FN)"Ú__doc__Zlxmlr   rU   rJ   r{   r   r   ri   ÚImportErrorZcgiÚ__all__Zregister_optionflagr   r   r   r(   r   r   Ú
HTMLParserr   r   Úcompiler7   r   r   r   r	   r
   r€   r}   Z__test__rx   Útestmodr   r   r   r   Ú<module>   sF    %ÿ




  "

#.ÿþ