79
80
if getattr(bzrlib.plugins, name, None) is not None:
80
81
delattr(bzrlib.plugins, name)
83
def _unregister_plugin_submodule(self, plugin_name, submodule_name):
84
"""Remove the submodule from sys.modules and the bzrlib namespace."""
85
py_name = 'bzrlib.plugins.%s.%s' % (plugin_name, submodule_name)
86
if py_name in sys.modules:
87
del sys.modules[py_name]
88
plugin = getattr(bzrlib.plugins, plugin_name, None)
89
if plugin is not None:
90
if getattr(plugin, submodule_name, None) is not None:
91
delattr(plugin, submodule_name)
82
93
def assertPluginUnknown(self, name):
83
94
self.failIf(getattr(bzrlib.plugins, name, None) is not None)
84
95
self.failIf('bzrlib.plugins.%s' % name in sys.modules)
798
809
self.assertLength(0, self.warnings)
812
class TestLoadPluginAtSyntax(tests.TestCase):
814
def _get_paths(self, paths):
815
return plugin._get_specific_plugin_paths(paths)
817
def test_empty(self):
818
self.assertEquals([], self._get_paths(None))
819
self.assertEquals([], self._get_paths(''))
821
def test_one_path(self):
822
self.assertEquals([('b', 'man')], self._get_paths('b@man'))
824
def test_bogus_path(self):
826
self.assertRaises(errors.BzrCommandError, self._get_paths, 'batman')
827
# Too much '@' isn't good either
828
self.assertRaises(errors.BzrCommandError, self._get_paths,
829
'batman@mobile@cave')
830
# An empty description probably indicates a problem
831
self.assertRaises(errors.BzrCommandError, self._get_paths,
832
os.pathsep.join(['batman@cave', '', 'robin@mobile']))
801
835
class TestLoadPluginAt(tests.TestCaseInTempDir, TestPluginMixin):
804
838
super(TestLoadPluginAt, self).setUp()
805
839
# Make sure we don't pollute the plugins namespace
806
840
self.overrideAttr(plugins, '__path__')
807
# Be paranoid in case a test fail
808
self.addCleanup(self._unregister_plugin, 'test_foo')
809
841
# Reset the flag that protect against double loading
810
842
self.overrideAttr(plugin, '_loaded', False)
811
843
# Create the same plugin in two directories
813
845
# The "normal" directory, we use 'standard' instead of 'plugins' to
814
846
# avoid depending on the precise naming.
815
847
self.create_plugin_package('test_foo', dir='standard/test_foo')
848
# All the tests will load the 'test_foo' plugin from various locations
849
self.addCleanup(self._unregister_plugin, 'test_foo')
817
851
def assertTestFooLoadedFrom(self, path):
818
852
self.assertPluginKnown('test_foo')
860
894
def test_submodule_loading(self):
861
895
# We create an additional directory under the one for test_foo
862
896
self.create_plugin_package('test_bar', dir='non-standard-dir/test_bar')
897
self.addCleanup(self._unregister_plugin_submodule,
898
'test_foo', 'test_bar')
863
899
osutils.set_or_unset_env('BZR_PLUGINS_AT', 'test_foo@non-standard-dir')
864
900
plugin.set_plugins_path(['standard'])
865
901
import bzrlib.plugins.test_foo
869
905
self.assertIsSameRealPath('non-standard-dir/test_bar/__init__.py',
870
906
bzrlib.plugins.test_foo.test_bar.__file__)
908
def test_relative_submodule_loading(self):
909
self.create_plugin_package('test_foo', dir='another-dir', source='''
912
# We create an additional directory under the one for test_foo
913
self.create_plugin_package('test_bar', dir='another-dir/test_bar')
914
self.addCleanup(self._unregister_plugin_submodule,
915
'test_foo', 'test_bar')
916
osutils.set_or_unset_env('BZR_PLUGINS_AT', 'test_foo@another-dir')
917
plugin.set_plugins_path(['standard'])
918
import bzrlib.plugins.test_foo
919
self.assertEqual('bzrlib.plugins.test_foo',
920
bzrlib.plugins.test_foo.__package__)
921
self.assertIsSameRealPath('another-dir/test_bar/__init__.py',
922
bzrlib.plugins.test_foo.test_bar.__file__)
872
924
def test_loading_from___init__only(self):
873
925
# We rename the existing __init__.py file to ensure that we don't load