%PDF- %PDF-
Direktori : /proc/227033/root/opt/alt/python27/lib/python2.7/site-packages/nose/plugins/ |
Current File : //proc/227033/root/opt/alt/python27/lib/python2.7/site-packages/nose/plugins/isolate.pyc |
� �fPc @ sW d Z d d l Z d d l Z d d l m Z e j d � Z d e f d � � YZ d S( s� The isolation plugin resets the contents of sys.modules after running each test module or package. Use it by setting ``--with-isolation`` or the NOSE_WITH_ISOLATION environment variable. The effects are similar to wrapping the following functions around the import and execution of each test module:: def setup(module): module._mods = sys.modules.copy() def teardown(module): to_del = [ m for m in sys.modules.keys() if m not in module._mods ] for mod in to_del: del sys.modules[mod] sys.modules.update(module._mods) Isolation works only during lazy loading. In normal use, this is only during discovery of modules within a directory, where the process of importing, loading tests and running tests from each module is encapsulated in a single loadTestsFromName call. This plugin implements loadTestsFromNames to force the same lazy-loading there, which allows isolation to work in directed mode as well as discovery, at the cost of some efficiency: lazy-loading names forces full context setup and teardown to run for each name, defeating the grouping that is normally used to ensure that context setup and teardown are run the fewest possible times for a given set of names. .. warning :: This plugin should not be used in conjunction with other plugins that assume that modules, once imported, will stay imported; for instance, it may cause very odd results when used with the coverage plugin. i����N( t Plugins nose.plugins.isolationt IsolationPluginc B sJ e Z d Z d Z d Z d � Z d � Z d � Z d d � Z d � Z RS( s� Activate the isolation plugin to isolate changes to external modules to a single test module or package. The isolation plugin resets the contents of sys.modules after each test module or package runs to its state before the test. PLEASE NOTE that this plugin should not be used with the coverage plugin, or in any other case where module reloading may produce undesirable side-effects. i t isolationc C s t j | | | � g | _ d S( s Configure plugin. N( R t configuret _mod_stack( t selft optionst conf( ( sE /opt/alt/python27/lib/python2.7/site-packages/nose/plugins/isolate.pyR : s c C s# t j j � } | j j | � d S( s+ Copy sys.modules onto my mod stack N( t syst modulest copyR t append( R t mods( ( sE /opt/alt/python27/lib/python2.7/site-packages/nose/plugins/isolate.pyt beforeContext@ s c C s� | j j � } g t j j � D] } | | k r | ^ q } | rq t j d | � x | D] } t j | =qZ Wn t j j | � d S( sk Pop my mod stack and restore sys.modules to the state it was in when mod stack was pushed. s removing sys modules entries: %sN( R t popR R t keyst logt debugt update( R R t mt to_delt mod( ( sE /opt/alt/python27/lib/python2.7/site-packages/nose/plugins/isolate.pyt afterContextF s . c s] � s t � � d k r d S| j � | j j � � � � � f d � } � j | � g f S( s� Create a lazy suite that calls beforeContext and afterContext around each name. The side-effect of this is that full context fixtures will be set up and torn down around each test named. i Nc 3 s= x6 � D]. } � j � � j | d � �V� j � q Wd S( Nt module( R t loadTestsFromNameR ( t name( t loaderR t namest plugins( sE /opt/alt/python27/lib/python2.7/site-packages/nose/plugins/isolate.pyt lazy\ s ( t lenR R R t suiteClass( R R R R ( ( R R R R sE /opt/alt/python27/lib/python2.7/site-packages/nose/plugins/isolate.pyt loadTestsFromNamesR s c C s | | _ d S( sJ Get handle on test loader so we can use it in loadTestsFromNames. N( R ( R R ( ( sE /opt/alt/python27/lib/python2.7/site-packages/nose/plugins/isolate.pyt prepareTestLoaderc s N( t __name__t __module__t __doc__t scoreR R R R t NoneR R! ( ( ( sE /opt/alt/python27/lib/python2.7/site-packages/nose/plugins/isolate.pyR . s ( R$ t loggingR t nose.pluginsR t getLoggerR R ( ( ( sE /opt/alt/python27/lib/python2.7/site-packages/nose/plugins/isolate.pyt <module>$ s