????

Your IP : 18.116.60.124


Current Path : /usr/lib/python3.6/site-packages/future/tests/__pycache__/
Upload File :
Current File : //usr/lib/python3.6/site-packages/future/tests/__pycache__/base.cpython-36.pyc

3

�c�M�@s�ddlmZmZddlZddlZddlZddlZddlZddlZddl	Z	ddl
mZddlm
Z
mZmZmZmZddlmZmZmZer�ddlZdd�Zdd	�ZGd
d�de�ZGdd
�d
e�ZGdd�de�ZGdd�dej�Zejed�Zdd�Z dd�Z!dd�Z"dd�Z#e$ejd��s(ejj%ej_&d$dd�Z'e$ejd��sNe
ejde'�Gdd�de(�Z)Gd d!�d!e)�Z*d%d"d#�Z+e$ejd#��s�e
ejd#e+�dS)&�)�print_function�absolute_importN)�dedent)�bind_method�PY26�PY3�PY2�PY27)�check_output�STDOUT�CalledProcessErrorcCs|jd�r|dd�}t|�S)z,
    Removes any leading 
 and dedents.
    �
�N)�
startswithr)�code�r�/usr/lib/python3.6/base.py�
reformat_codes
rcsh|jd��dd�t��D�}dd�t��D�}dd�t��D�}|j�|ksTtd��dd�}d	d
�}||�||�ks|td��t�fdd�|D��}tt||��}t�fd
d�|D��}tt||��}	t�fdd�|D��}
tt||
��}g}xptt���D]`}
|
|k�r|j	||
�q�|
|k�r2|j	|	|
�q�|
|k�rL|j	||
�q�|j	�|
�q�Wdj
|�S)a
    Returns the code block with any ``__future__`` import lines sorted, and
    then any ``future`` import lines sorted, then any ``builtins`` import lines
    sorted.

    This only sorts the lines within the expected blocks.

    See test_order_future_lines() for an example.
    r
cSsg|]\}}|jd�r|�qS)zfrom __future__ import )r)�.0�i�linerrr�
<listcomp>*sz&order_future_lines.<locals>.<listcomp>cSs(g|] \}}|jd�s |jd�r|�qS)zfrom futurez	from past)r)rrrrrrr-s
cSsg|]\}}|jd�r|�qS)z
from builtins)r)rrrrrrr1szIinternal usage error: dedent the code before calling order_future_lines()cSst|�dkrt|�SdS)Nr)�len�max)�numbersrrr�mymax7sz!order_future_lines.<locals>.mymaxcSst|�dkrt|�Std�S)Nr�inf)r�min�float)rrrr�mymin:sz!order_future_lines.<locals>.myminz2the __future__ and future imports are out of ordercsg|]}�|�qSrr)rr)�linesrrrCscsg|]}�|�qSrr)rr)r rrrFscsg|]}�|�qSrr)rr)r rrrIs)�split�	enumerate�lstrip�AssertionError�sorted�dict�zip�ranger�append�join)rZuufuture_line_numbersZfuture_line_numbersZbuiltins_line_numbersrrZuulZsorted_uufuture_linesZflZsorted_future_linesZblZsorted_builtins_linesZ	new_linesrr)r r�order_future_liness2



r+c@s"eZdZdZddd�Zdd�ZdS)�VerboseCalledProcessErrorz�
    Like CalledProcessError, but it displays more information (message and
    script output) for diagnosing test failures etc.
    NcCs||_||_||_||_dS)N)�msg�
returncode�cmd�output)�selfr-r.r/r0rrr�__init__`sz"VerboseCalledProcessError.__init__cCsd|j|j|j|jfS)Nz>Command '%s' failed with exit status %d
Message: %s
Output: %s)r/r.r-r0)r1rrr�__str__fsz!VerboseCalledProcessError.__str__)N)�__name__�
__module__�__qualname__�__doc__r2r3rrrrr,[s
r,c@seZdZdS)�
FuturizeErrorN)r4r5r6rrrrr8jsr8c@seZdZdS)�PasteurizeErrorN)r4r5r6rrrrr9msr9c@steZdZdZdd�Zddd	�Zdd
d�Zdd
�Zd dd�Zdd�Z	d!dd�Z
d"dd�Zd$dd�Zde
jfdd�ZdS)%�CodeHandlerzt
    Handy mixin for test classes for writing / reading / futurizing /
    running .py files in the test suite.
    cCsjtd�|_td�|_tjg|_tj�tj	j
|_tjd�}|rXdtj
�tj|i|_ndtj
�i|_dS)zi
        The outputs from the various futurize stages should have the
        following headers:
        z�
        from __future__ import absolute_import
        from __future__ import division
        from __future__ import print_function
        a4
        from __future__ import absolute_import
        from __future__ import division
        from __future__ import print_function
        from __future__ import unicode_literals
        from future import standard_library
        standard_library.install_aliases()
        from builtins import *
        �
PYTHONPATHN)r�headers1�headers2�sys�
executable�interpreters�tempfileZmkdtemp�os�path�sep�tempdir�getenv�getcwd�pathsep�env)r1Zpypathrrr�setUpvs

zCodeHandler.setUpr�FTcCsT|rt|�}|j|�|j||||d�|j�}|rPx|jD]}	|j|	d�}
q<W|S)a�
        Converts the code block using ``futurize`` and returns the
        resulting code.

        Passing stages=[1] or stages=[2] passes the flag ``--stage1`` or
        ``stage2`` to ``futurize``. Passing both stages runs ``futurize``
        with both stages by default.

        If from3 is False, runs ``futurize``, converting from Python 2 to
        both 2 and 3. If from3 is True, runs ``pasteurize`` to convert
        from Python 3 to both 2 and 3.

        Optionally reformats the code block first using the reformat() function.

        If run is True, runs the resulting code under all Python
        interpreters in self.interpreters.
        )�stages�all_imports�from3�conservative)�interpreter)r�_write_test_script�_futurize_test_script�_read_test_scriptr@�_run_test_script)r1rrLrMrNZreformat�runrOr0rP�_rrr�convert�s

zCodeHandler.convertcCst|r|j|�}|j|�}t|t�r8t|t�r8|jd�}t|t�rXt|t�rX|jd�}|jt|j��|j��dS)a�
        Compares whether the code blocks are equal. If not, raises an
        exception so the test fails. Ignores any trailing whitespace like
        blank lines.

        If ignore_imports is True, passes the code blocks into the
        strip_future_imports method.

        If one code block is a unicode string and the other a
        byte-string, it assumes the byte-string is encoded as utf-8.
        zutf-8N)�strip_future_imports�
isinstance�bytes�decodeZassertEqualr+�rstrip)r1r0�expected�ignore_importsrrr�compare�s



zCodeHandler.comparecCsdg}xT|jd�D]F}|jd�pJ|jd�pJ|jd�pJd|kpJd|kpJ|jd�s|j|�qWdj|�S)a
        Strips any of these import lines:

            from __future__ import <anything>
            from future <anything>
            from future.<anything>
            from builtins <anything>

        or any line containing:
            install_hooks()
        or:
            install_aliases()

        Limitation: doesn't handle imports split across multiple lines like
        this:

            from __future__ import (absolute_import, division, print_function,
                                    unicode_literals)
        r
zfrom __future__ import zfrom future zfrom builtins zinstall_hooks()zinstall_aliases()zfrom future.)r!rr)r*)r1rr0rrrrrX�s



z CodeHandler.strip_future_importsc	Cs`|j||||||d�}	|r0d|kr(|jn|j}
nd}
t|�}|
|krHd}
|j|	|
||d�dS)a<
        Convenience method that calls convert() and compare().

        Reformats the code blocks automatically using the reformat_code()
        function.

        If all_imports is passed, we add the appropriate import headers
        for the stage(s) selected to the ``expected`` code-block, so they
        needn't appear repeatedly in the test code.

        If ignore_imports is True, ignores the presence of any lines
        beginning:

            from __future__ import ...
            from future import ...

        for the purpose of the comparison.
        )rLrMrNrUrOrK�)r^N)rWr=r<rr_)r1Zbeforer]rLrMr^rNrUrOr0ZheadersZreformattedrrr�
convert_check�s
zCodeHandler.convert_checkcKs|j||f|�dS)ze
        Convenience method to ensure the code is unchanged by the
        futurize process.
        N)ra)r1r�kwargsrrr�	unchangedszCodeHandler.unchanged�mytestscript.pyc
CsHt|t�r|jd�}tj|j|ddd��}|jt|��WdQRXdS)z�
        Dedents the given code (a multiline string) and writes it out to
        a file in a temporary folder like /tmp/tmpUDCn7x/mytestscript.py.
        zutf-8Zwt)�encodingN)rYrZr[�io�openrE�writer)r1r�filename�frrrrQ!s

zCodeHandler._write_test_scriptc	Cs.tj|j|ddd��}|j�}WdQRX|S)NZrtzutf-8)re)rfrgrE�read)r1rirjZ	newsourcerrrrS,szCodeHandler._read_test_scriptcCs@g}t|�}|r|jd�|r$d}nNd}|dgkr>|jd�n&|dgkrT|jd�n|ddgksdt�|rr|jd�|j|}tj|g|d	|g}	yt|	t|jd
�}
Wn�t	k
�r:}zvt
|��*}ddj|	�d
|j|d|j�f}
WdQRXd|kr�t
nt}t|d��sd|_||
|j|j|jd��WYdd}~XnX|
S)Nz
--all-importsz
pasteurize.pyzfuturize.pyrz--stage1rKz--stage2z--conservativez-w)�stderrrIz8Error running the command %s
%s
Contents of file %s:

%s� zenv=%sz----
%s
----Zfuturizer0)r0)�listr)r$rEr>r?r
rrIrrgr*rkr8r9�hasattrr0r.r/)r1rirLrMrNrOZparamsZscript�fn�	call_argsr0�erjr-Z
ErrorClassrrrrR1s<





(z!CodeHandler._futurize_test_scriptcCs�|j|}yt||g|jtd�}Wn�tk
r�}zht|��.}ddj||g�d|j|d|j�f}WdQRXt|d�s�d|_	t
||j|j|j	d��WYdd}~XnX|S)N)rIrlz8Error running the command %s
%s
Contents of file %s:

%srmzenv=%sz----
%s
----r0)r0)
rEr
rIrrrgr*rkror0r,r.r/)r1rirPrpr0rrrjr-rrrrT`s


(zCodeHandler._run_test_scriptN�rrK)rsFFTTF)T�rrK)rtFTFTF)rd)rd�rrK)rdruFFF)r4r5r6r7rJrWr_rXrarcrQrSrRr>r?rTrrrrr:qs"+

"
!


-r:z#this test is known to fail on Py2.6cCsts|Stj|�S)N)r�unittest�expectedFailure)�funcrrr�expectedFailurePY3srycCsts|Stj|�S)N)rrvrw)rxrrr�expectedFailurePY26�srzcCsts|Stj|�S)N)r	rvrw)rxrrr�expectedFailurePY27�sr{cCsts|Stj|�S)N)rrvrw)rxrrr�expectedFailurePY2�sr|�assertRaisesRegexcCsTt|ttf�r$|std��tj|�}|j|�sP|p4d}d||j|f}|j|��dS)z=Fail the test unless the text matches the regular expression.z!expected_regex must not be empty.zRegex didn't matchz%s: %r not found in %rN)	rY�strZunicoder$�re�compile�search�pattern�failureException)r1�text�expected_regexr-rrr�assertRegex�s

r�c@s&eZdZddd�Zdd�Zdd�ZdS)	�_AssertRaisesBaseContextNcCsp||_||_|dk	rBy|j|_WqHtk
r>t|�|_YqHXnd|_t|ttf�r`tj	|�}||_
d|_dS)N)r]�	test_caser4�obj_name�AttributeErrorr~rYrZrr�r�r-)r1r]r��callable_objr�rrrr2�s
z!_AssertRaisesBaseContext.__init__cCs |jj|j|�}|jj|��dS)N)r�Z_formatMessager-r�)r1ZstandardMsgr-rrr�
_raiseFailure�sz&_AssertRaisesBaseContext._raiseFailurec
Cs8|dkr|jdd�|_|S|�|||�WdQRXdS)z�
        If callable_obj is None, assertRaises/Warns is being used as a
        context manager, so check for a 'msg' kwarg and return self.
        If callable_obj is not None, call it passing args and kwargs.
        Nr-)�popr-)r1�namer��argsrbrrr�handle�s
z_AssertRaisesBaseContext.handle)NN)r4r5r6r2r�r�rrrrr��s
r�c@s eZdZdZdd�Zdd�ZdS)�_AssertWarnsContextzBA context manager used to implement TestCase.assertWarns* methods.cCsRx$tjj�D]}t|dd�ri|_qWtjdd�|_|jj�|_tj	d|j
�|S)N�__warningregistry__T)�record�always)r>�modules�values�getattrr��warnings�catch_warnings�warnings_manager�	__enter__�simplefilterr])r1�vrrrr��s
z_AssertWarnsContext.__enter__c
Cs|jj|||�|dk	rdSy|jj}Wntk
rFt|j�}YnXd}xd|jD]Z}|j}t||j�slqT|dkrx|}|j	dk	r�|j	j
t|��r�qT||_|j|_|j
|_
dSW|dk	r�|jdj|j	jt|���|jr�|jdj||j��n|jdj|��dS)Nz"{}" does not match "{}"z{} not triggered by {}z{} not triggered)r��__exit__r]r4r�r~r��messagerYr�r�Zwarningri�linenor��formatr�r�)r1�exc_type�	exc_value�tbZexc_nameZfirst_matching�m�wrrrr��s8

z_AssertWarnsContext.__exit__N)r4r5r6r7r�r�rrrrr��sr�cOst|||�}|jd|||�S)a�Fail unless a warning of class warnClass is triggered
       by callable_obj when invoked with arguments args and keyword
       arguments kwargs.  If a different type of warning is
       triggered, it will not be handled: depending on the other
       warning filtering rules in effect, it might be silenced, printed
       out, or raised as an exception.

       If called with callable_obj omitted or None, will return a
       context object used like this::

            with self.assertWarns(SomeWarning):
                do_something()

       An optional keyword argument 'msg' can be provided when assertWarns
       is used as a context object.

       The context manager keeps a reference to the first matching
       warning as the 'warning' attribute; similarly, the 'filename'
       and 'lineno' attributes give you information about the line
       of Python code from which the warning was triggered.
       This allows you to inspect the warning after the assertion::

           with self.assertWarns(SomeWarning) as cm:
               do_something()
           the_warning = cm.warning
           self.assertEqual(the_warning.some_attribute, 147)
    �assertWarns)r�r�)r1Zexpected_warningr�r�rb�contextrrrr��sr�)N)N),Z
__future__rrrBrArvr>rr�rf�textwraprZfuture.utilsrrrrr	Zfuture.moves.subprocessr
rrZ	unittest2rr+r,r8r9ZTestCaser:ZskipIfZskip26ryrzr{r|roZassertRaisesRegexpr}r��objectr�r�r�rrrr�<module>sF	@


"1