HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //usr/lib/python3/dist-packages/twisted/trial/test/__pycache__/packages.cpython-310.pyc
o

�b+�@sjdZddlZddlZddlmZddlmZdZe�	dd�Z
dZd	ZGd
d�dej
�ZGdd
�d
e�ZdS)zf
Classes and functions used by L{twisted.trial.test.test_util}
and L{twisted.trial.test.test_loader}.
�N)�invalidate_caches)�unittestzv
from twisted.trial import unittest

class FooTest(unittest.SynchronousTestCase):
    def testFoo(self):
        pass
�
z
a�
'''This module is used by test_loader to test the Trial test loading
functionality. Do NOT change the number of tests in this module.
Do NOT change the names the tests in this module.
'''

import unittest as pyunit
from twisted.trial import unittest

class FooTest(unittest.SynchronousTestCase):
    def test_foo(self):
        pass

    def test_bar(self):
        pass


class PyunitTest(pyunit.TestCase):
    def test_foo(self):
        pass

    def test_bar(self):
        pass


class NotATest:
    def test_foo(self):
        pass


class AlphabetTest(unittest.SynchronousTestCase):
    def test_a(self):
        pass

    def test_b(self):
        pass

    def test_c(self):
        pass
az
'''This module is used by test_loader to test the Trial test loading
functionality. Do NOT change the number of tests in this module.
Do NOT change the names the tests in this module.
'''

from twisted.trial import unittest

class X:

    def test_foo(self):
        pass

class A(unittest.SynchronousTestCase, X):
    pass

class B(unittest.SynchronousTestCase, X):
    pass

c@s�eZdZddddddddd	d
efddefd
defddefddefgZdd�Zdd�Z	dd�Z
d#dd�Zdd�Zd$dd �Z
d!d"�ZdS)%�PackageTest)zbadpackage/__init__.py�frotz
)zbadpackage/test_module.py�)zunimportablepackage/__init__.pyr)z"unimportablepackage/test_module.pyzimport notarealmoduleok
)zpackage2/__init__.pyr)zpackage2/test_module.pyz
import frotz
)zpackage/__init__.pyr)zpackage/frotz.pyr)zpackage/test_bad_module.pyz%raise ZeroDivisionError("fake error")zpackage/test_dos_module.py)zpackage/test_import_module.pyzimport frotzzpackage/test_module.py)zgoodpackage/__init__.pyrzgoodpackage/test_sample.py)zgoodpackage/sub/__init__.pyrzgoodpackage/sub/test_sample.py)zinheritancepackage/__init__.pyrzinheritancepackage/test_x.pycCs<tj�|�d}|�d�}|ddkr|dd�}d�|�S)Nr�/����__init__�.)�os�path�splitext�split�join)�self�filename�name�segs�r�=/usr/lib/python3/dist-packages/twisted/trial/test/packages.py�
_toModuleNamets


zPackageTest._toModuleNamecs�fdd��jD�S)zQ
        Return matching module names for files listed in C{self.files}.
        csg|]	\}}��|��qSr)r)�.0r�code�rrr�
<listcomp>sz*PackageTest.getModules.<locals>.<listcomp>)�filesrrrr�
getModules{szPackageTest.getModulesc	CsD|��}|��|��|D]}ztj|=WqtyYqwdS�N)r�sort�reverse�sys�modules�KeyError)rr"�modulerrr�cleanUpModules�s��zPackageTest.cleanUpModulesrc	Cs`|jD]*\}}tj�||�}|�|�t|d��
}|�|�Wd�n1s(wYqdS)N�w)rrr
r�_createDirectory�open�write)rr�	parentDirr�contents�fdrrr�createFiles�s
���zPackageTest.createFilescCs*tj�|�}tj�|�st�|�dSdSr)rr
�dirname�exists�makedirs)rr�	directoryrrrr'�s�zPackageTest._createDirectoryNcCs.t�|dur|��}||_|�|j|�dSr)�invalidateImportCaches�mktemp�parentr-r)rr*rrr�setUp�s
zPackageTest.setUpcCs|��dSr)r%rrrr�tearDown�szPackageTest.tearDown)rr)�__name__�
__module__�__qualname__�	dosModule�
testModule�
testSample�testInheritanceSamplerrrr%r-r'r5r6rrrrr^s6�


rc@s&eZdZddd�Zdd�Zdd�ZdS)	�SysPathManglingTestNcCs`t�tjdd�|_tjdd�|_|dur|��}t�||�|j�|j	�|�
|j�dSr)r2r!r
�oldPath�newPathr3rr5�appendr4�
mangleSysPath)rr4rrrr5�szSysPathManglingTest.setUpcCst�|�|�|j�dSr)rr6rBr?rrrrr6�s
zSysPathManglingTest.tearDowncCs|tjdd�<dSr)r!r
)r�pathVarrrrrB�sz!SysPathManglingTest.mangleSysPathr)r7r8r9r5r6rBrrrrr>�s

r>)�__doc__rr!�	importlibrr2�
twisted.trialrr;�replacer:r<r=�SynchronousTestCaserr>rrrr�<module>s)D