1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
|
# -*- coding: utf-8; tab-width: 4; indent-tabs-mode: t; python-indent: 4 -*-
from . import test_settings
import unittest
import sys
import os
from configparser import ConfigParser
from io import StringIO
import tempfile
import shutil
import yapsy
from yapsy import PLUGIN_NAME_FORBIDEN_STRING
from yapsy.PluginManager import PluginManager
from yapsy.PluginManager import IPlugin
from yapsy.PluginInfo import PluginInfo
from yapsy.IPluginLocator import IPluginLocator
from yapsy.PluginFileLocator import PluginFileLocator
from yapsy.PluginFileLocator import PluginFileAnalyzerWithInfoFile
from yapsy.PluginFileLocator import PluginFileAnalyzerMathingRegex
class IPluginLocatorTest(unittest.TestCase):
def test_deprecated_method_dont_raise_notimplemetederror(self):
class DummyPluginLocator(IPluginLocator):
pass
dpl = DummyPluginLocator()
self.assertEqual((None,None,None),dpl.getPluginNameAndModuleFromStream(None))
dpl.setPluginInfoClass(PluginInfo)
self.assertEqual(None,dpl.getPluginInfoClass())
dpl.setPluginPlaces([])
dpl.updatePluginPlaces([])
class PluginFileAnalyzerWithInfoFileTest(unittest.TestCase):
"""
Test that the "info file" analyzer enforces the correct policy.
"""
def setUp(self):
"""
init
"""
self.plugin_directory = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"plugins")
self.yapsy_plugin_path = os.path.join(self.plugin_directory,"simpleplugin.yapsy-plugin")
self.version_plugin_path = os.path.join(self.plugin_directory,"versioned11.version-plugin")
self.yapsy_filter_plugin_path = os.path.join(self.plugin_directory,"simpleplugin.yapsy-filter-plugin")
def test_Contruction(self):
analyzer = PluginFileAnalyzerWithInfoFile("mouf")
self.assertEqual(analyzer.name,"mouf")
def test_isValid(self):
analyzer = PluginFileAnalyzerWithInfoFile("mouf")
self.assertTrue(analyzer.isValidPlugin(self.yapsy_plugin_path))
self.assertFalse(analyzer.isValidPlugin(self.version_plugin_path))
def test_getInfosDictFromPlugin(self):
analyzer = PluginFileAnalyzerWithInfoFile("mouf")
info_dict,cf_parser = analyzer.getInfosDictFromPlugin(self.plugin_directory,
os.path.basename(self.yapsy_plugin_path))
self.assertEqual(info_dict,
{'website': 'http://mathbench.sourceforge.net',
'description': 'A simple plugin usefull for basic testing',
'author': 'Thibauld Nion',
'version': '0.1',
'path': '%s' % os.path.join(self.plugin_directory,"SimplePlugin"),
'name': 'Simple Plugin',
'copyright': '2014'})
self.assertTrue(isinstance(cf_parser,ConfigParser))
def test_isValid_WithMultiExtensions(self):
analyzer = PluginFileAnalyzerWithInfoFile("mouf",("yapsy-plugin","yapsy-filter-plugin"))
self.assertTrue(analyzer.isValidPlugin(self.yapsy_plugin_path))
self.assertFalse(analyzer.isValidPlugin(self.version_plugin_path))
self.assertTrue(analyzer.isValidPlugin(self.yapsy_filter_plugin_path))
def test__extractCorePluginInfo_with_str_filename(self):
plugin_desc_content = str("simpleplugin.yapsy-plugin")
analyzer = PluginFileAnalyzerWithInfoFile("mouf", ("yapsy-plugin"))
infos, parser = analyzer._extractCorePluginInfo(self.plugin_directory,
plugin_desc_content)
self.assertEqual("Simple Plugin", infos["name"])
self.assertEqual(os.path.join(self.plugin_directory, "SimplePlugin"), infos["path"])
def test__extractCorePluginInfo_with_minimal_description(self):
plugin_desc_content = StringIO("""\
[Core]
Name = Simple Plugin
Module = SimplePlugin
""")
analyzer = PluginFileAnalyzerWithInfoFile("mouf",
("yapsy-plugin"))
infos, parser = analyzer._extractCorePluginInfo("bla",plugin_desc_content)
self.assertEqual("Simple Plugin", infos["name"])
self.assertEqual(os.path.join("bla","SimplePlugin"), infos["path"])
self.assertTrue(isinstance(parser,ConfigParser))
def test_getPluginNameAndModuleFromStream_with_invalid_descriptions(self):
plugin_desc_content = StringIO("""\
[Core]
Name = Bla{0}Bli
Module = SimplePlugin
""".format(PLUGIN_NAME_FORBIDEN_STRING))
analyzer = PluginFileAnalyzerWithInfoFile("mouf",
("yapsy-plugin"))
res = analyzer._extractCorePluginInfo("bla",plugin_desc_content)
self.assertEqual((None, None), res)
plugin_desc_content = StringIO("""\
[Core]
Name = Simple Plugin
""")
analyzer = PluginFileAnalyzerWithInfoFile("mouf",
("yapsy-plugin"))
res = analyzer._extractCorePluginInfo("bla",plugin_desc_content)
self.assertEqual((None, None), res)
plugin_desc_content = StringIO("""\
[Core]
Module = Simple Plugin
""")
res = analyzer._extractCorePluginInfo("bla",plugin_desc_content)
self.assertEqual((None, None), res)
plugin_desc_content = StringIO("""\
[Mouf]
Bla = Simple Plugin
""")
res = analyzer._extractCorePluginInfo("bla",plugin_desc_content)
self.assertEqual((None, None), res)
class PluginFileAnalyzerMathingRegexTest(unittest.TestCase):
"""
Test that the "regex" analyzer enforces the correct policy.
"""
def setUp(self):
"""
init
"""
self.plugin_directory = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"plugins")
self.yapsy_plugin_path = os.path.join(self.plugin_directory,"SimplePlugin.py")
self.version_plugin_10_path = os.path.join(self.plugin_directory,"VersionedPlugin10.py")
self.version_plugin_12_path = os.path.join(self.plugin_directory,"VersionedPlugin12.py")
def test_Contruction(self):
analyzer = PluginFileAnalyzerMathingRegex("mouf",".*")
self.assertEqual(analyzer.name,"mouf")
def test_isValid(self):
analyzer = PluginFileAnalyzerMathingRegex("mouf",r".*VersionedPlugin\d+\.py$")
self.assertFalse(analyzer.isValidPlugin(self.yapsy_plugin_path))
self.assertTrue(analyzer.isValidPlugin(self.version_plugin_10_path))
self.assertTrue(analyzer.isValidPlugin(self.version_plugin_12_path))
def test_getInfosDictFromPlugin(self):
analyzer = PluginFileAnalyzerMathingRegex("mouf",r".*VersionedPlugin\d+\.py$")
info_dict,cf_parser = analyzer.getInfosDictFromPlugin(self.plugin_directory,
os.path.basename(self.version_plugin_10_path))
self.assertEqual(info_dict,{'path': self.version_plugin_10_path, 'name': 'VersionedPlugin10'})
self.assertTrue(isinstance(cf_parser,ConfigParser))
class PluginFileLocatorTest(unittest.TestCase):
"""
Test that the "file" locator.
NB: backward compatible methods are not directly tested here. We
rely only on the 'indirect' tests made for the classes that still
depend on them.
"""
def setUp(self):
"""
init
"""
self.plugin_directory = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"plugins")
self.plugin_as_dir_directory = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"pluginsasdirs")
self.plugin_info_file = "simpleplugin.yapsy-plugin"
self.plugin_name = "SimplePlugin"
self.plugin_impl_file = self.plugin_name+".py"
def test_default_plugins_place_is_parent_dir(self):
"""Test a non-trivial default behaviour introduced some time ago :S"""
pl = PluginFileLocator()
expected_yapsy_module_path = os.path.dirname(yapsy.__file__)
first_plugin_place = pl.plugins_places[0]
self.assertEqual(expected_yapsy_module_path, first_plugin_place)
def test_given_string_as_plugin_places_raises_error(self):
pl = PluginFileLocator()
self.assertRaises(ValueError, pl.setPluginPlaces, "/mouf")
def test_locatePlugins(self):
pl = PluginFileLocator()
pl.setPluginPlaces([self.plugin_directory])
candidates, num = pl.locatePlugins()
self.assertEqual(num,1)
self.assertEqual(len(candidates),num)
self.assertEqual(os.path.join(self.plugin_directory,self.plugin_info_file),
candidates[0][0])
self.assertEqual(os.path.join(self.plugin_directory,self.plugin_name),
candidates[0][1])
self.assertTrue(isinstance(candidates[0][2],PluginInfo))
def test_locatePlugins_when_plugin_is_symlinked(self):
if sys.platform.startswith("win"):
return
temp_dir = tempfile.mkdtemp()
try:
plugin_info_file = "simpleplugin.yapsy-plugin"
plugin_impl_file = "SimplePlugin.py"
os.symlink(os.path.join(self.plugin_directory,plugin_info_file),
os.path.join(temp_dir,plugin_info_file))
os.symlink(os.path.join(self.plugin_directory,plugin_impl_file),
os.path.join(temp_dir,plugin_impl_file))
pl = PluginFileLocator()
pl.setPluginPlaces([temp_dir])
candidates, num = pl.locatePlugins()
self.assertEqual(num,1)
self.assertEqual(len(candidates),num)
self.assertEqual(os.path.join(temp_dir,self.plugin_info_file),
candidates[0][0])
self.assertEqual(os.path.join(temp_dir,self.plugin_name),
candidates[0][1])
self.assertTrue(isinstance(candidates[0][2],PluginInfo))
finally:
shutil.rmtree(temp_dir)
def test_locatePlugins_when_plugin_is_a_directory(self):
pl = PluginFileLocator()
pl.setPluginPlaces([self.plugin_as_dir_directory])
candidates, num = pl.locatePlugins()
self.assertEqual(num,1)
self.assertEqual(len(candidates),num)
self.assertEqual(os.path.join(self.plugin_as_dir_directory,self.plugin_info_file),
candidates[0][0])
self.assertEqual(os.path.join(self.plugin_as_dir_directory,self.plugin_name,
"__init__"),
candidates[0][1])
self.assertTrue(isinstance(candidates[0][2],PluginInfo))
def test_locatePlugins_when_plugin_is_a_symlinked_directory(self):
if sys.platform.startswith("win"):
return
temp_dir = tempfile.mkdtemp()
try:
plugin_info_file = "simpleplugin.yapsy-plugin"
plugin_impl_dir = "SimplePlugin"
os.symlink(os.path.join(self.plugin_as_dir_directory,plugin_info_file),
os.path.join(temp_dir,plugin_info_file))
os.symlink(os.path.join(self.plugin_as_dir_directory,plugin_impl_dir),
os.path.join(temp_dir,plugin_impl_dir))
pl = PluginFileLocator()
pl.setPluginPlaces([temp_dir])
candidates, num = pl.locatePlugins()
self.assertEqual(num,1)
self.assertEqual(len(candidates),num)
self.assertEqual(os.path.join(temp_dir,self.plugin_info_file),
candidates[0][0])
self.assertEqual(os.path.join(temp_dir,self.plugin_name,"__init__"),
candidates[0][1])
self.assertTrue(isinstance(candidates[0][2],PluginInfo))
finally:
shutil.rmtree(temp_dir)
def test_locatePlugins_recursively_when_plugin_is_a_directory(self):
temp_dir = tempfile.mkdtemp()
try:
temp_sub_dir = os.path.join(temp_dir,"plugins")
shutil.copytree(self.plugin_as_dir_directory,temp_sub_dir)
pl = PluginFileLocator()
pl.setPluginPlaces([temp_dir])
candidates, num = pl.locatePlugins()
self.assertEqual(num,1)
self.assertEqual(len(candidates),num)
self.assertEqual(os.path.join(temp_sub_dir,self.plugin_info_file),
candidates[0][0])
self.assertEqual(os.path.join(temp_sub_dir,self.plugin_name,
"__init__"),
candidates[0][1])
self.assertTrue(isinstance(candidates[0][2],PluginInfo))
finally:
shutil.rmtree(temp_dir)
def test_locatePlugins_recursively_fails_when_recursion_is_disabled(self):
temp_dir = tempfile.mkdtemp()
try:
temp_sub_dir = os.path.join(temp_dir,"plugins")
shutil.copytree(self.plugin_as_dir_directory,temp_sub_dir)
pl = PluginFileLocator()
pl.disableRecursiveScan()
pl.setPluginPlaces([temp_dir])
candidates, num = pl.locatePlugins()
self.assertEqual(num,0)
self.assertEqual(len(candidates),num)
finally:
shutil.rmtree(temp_dir)
def test_locatePlugins_recursively_when_plugin_is_a_symlinked_directory(self):
if sys.platform.startswith("win"):
return
temp_dir = tempfile.mkdtemp()
try:
temp_sub_dir = os.path.join(temp_dir,"plugins")
os.mkdir(temp_sub_dir)
plugin_info_file = "simpleplugin.yapsy-plugin"
plugin_impl_dir = "SimplePlugin"
os.symlink(os.path.join(self.plugin_as_dir_directory,plugin_info_file),
os.path.join(temp_sub_dir,plugin_info_file))
os.symlink(os.path.join(self.plugin_as_dir_directory,plugin_impl_dir),
os.path.join(temp_sub_dir,plugin_impl_dir))
pl = PluginFileLocator()
pl.setPluginPlaces([temp_dir])
candidates, num = pl.locatePlugins()
self.assertEqual(num,1)
self.assertEqual(len(candidates),num)
self.assertEqual(os.path.join(temp_sub_dir,self.plugin_info_file),
candidates[0][0])
self.assertEqual(os.path.join(temp_sub_dir,self.plugin_name,
"__init__"),
candidates[0][1])
self.assertTrue(isinstance(candidates[0][2],PluginInfo))
finally:
shutil.rmtree(temp_dir)
def test_locatePlugins_recursively_when_plugin_parent_dir_is_a_symlinked_directory(self):
if sys.platform.startswith("win"):
return
# This actually reproduced the "Plugin detection doesn't follow symlinks" bug
# at http://sourceforge.net/p/yapsy/bugs/19/
temp_dir = tempfile.mkdtemp()
try:
temp_sub_dir = os.path.join(temp_dir,"plugins")
os.symlink(self.plugin_as_dir_directory,temp_sub_dir)
pl = PluginFileLocator()
pl.setPluginPlaces([temp_dir])
candidates, num = pl.locatePlugins()
self.assertEqual(num,1)
self.assertEqual(len(candidates),num)
self.assertEqual(os.path.join(temp_sub_dir,self.plugin_info_file),
candidates[0][0])
self.assertEqual(os.path.join(temp_sub_dir,self.plugin_name,
"__init__"),
candidates[0][1])
self.assertTrue(isinstance(candidates[0][2],PluginInfo))
finally:
shutil.rmtree(temp_dir)
def test_gatherCorePluginInfo(self):
pl = PluginFileLocator()
plugin_info,cf_parser = pl.gatherCorePluginInfo(self.plugin_directory,"simpleplugin.yapsy-plugin")
self.assertTrue(plugin_info.name,"Simple Plugin")
self.assertTrue(isinstance(cf_parser,ConfigParser))
plugin_info,cf_parser = pl.gatherCorePluginInfo(self.plugin_directory,"notaplugin.atall")
self.assertEqual(plugin_info,None)
self.assertEqual(cf_parser,None)
def test_setAnalyzer(self):
pl = PluginFileLocator()
pl.setPluginPlaces([self.plugin_directory])
newAnalyzer = PluginFileAnalyzerMathingRegex("mouf",r".*VersionedPlugin\d+\.py$")
pl.setAnalyzers([newAnalyzer])
candidates, num = pl.locatePlugins()
self.assertEqual(num,4)
self.assertEqual(len(candidates),num)
def test_appendAnalyzer(self):
pl = PluginFileLocator()
pl.setPluginPlaces([self.plugin_directory])
newAnalyzer = PluginFileAnalyzerMathingRegex("mouf",r".*VersionedPlugin\d+\.py$")
pl.appendAnalyzer(newAnalyzer)
candidates, num = pl.locatePlugins()
self.assertEqual(num,5)
self.assertEqual(len(candidates),num)
def test_removeAnalyzers_when_analyzer_is_unknown(self):
pl = PluginFileLocator()
pl.setPluginPlaces([self.plugin_directory])
pl.removeAnalyzers("nogo")
def test_removeAnalyzers(self):
pl = PluginFileLocator()
pl.setPluginPlaces([self.plugin_directory])
newAnalyzer = PluginFileAnalyzerMathingRegex("mouf",r".*VersionedPlugin\d+\.py$")
pl.appendAnalyzer(newAnalyzer)
pl.removeAnalyzers("info_ext")
candidates, num = pl.locatePlugins()
self.assertEqual(num,4)
self.assertEqual(len(candidates),num)
def test_removeAllAnalyzers(self):
pl = PluginFileLocator()
pl.setPluginPlaces([self.plugin_directory])
pl.removeAllAnalyzer()
candidates, num = pl.locatePlugins()
self.assertEqual(num,0)
self.assertEqual(len(candidates),num)
def test_setPluginInfoClass_for_named_analyzer(self):
class SpecificPluginInfo(PluginInfo):
pass
pl = PluginFileLocator()
pl.setPluginPlaces([self.plugin_directory])
newAnalyzer = PluginFileAnalyzerMathingRegex("mouf",r".*VersionedPlugin\d+\.py$")
pl.appendAnalyzer(newAnalyzer)
pl.setPluginInfoClass(SpecificPluginInfo,"info_ext")
candidates, num = pl.locatePlugins()
self.assertEqual(num,5)
self.assertEqual(len(candidates),num)
versioned_plugins = [c for c in candidates if "VersionedPlugin" in c[0]]
self.assertEqual(4,len(versioned_plugins))
for p in versioned_plugins:
self.assertTrue(isinstance(p[2],PluginInfo))
simple_plugins = [c for c in candidates if "VersionedPlugin" not in c[0]]
self.assertEqual(1,len(simple_plugins))
for p in simple_plugins:
self.assertTrue(isinstance(p[2],SpecificPluginInfo))
class PluginManagerSetUpTest(unittest.TestCase):
def test_default_init(self):
pm = PluginManager()
self.assertEqual(["Default"],pm.getCategories())
self.assertTrue(isinstance(pm.getPluginLocator(),PluginFileLocator))
def test_init_with_category_filter(self):
pm = PluginManager(categories_filter={"Mouf": IPlugin})
self.assertEqual(["Mouf"],pm.getCategories())
self.assertTrue(isinstance(pm.getPluginLocator(),PluginFileLocator))
def test_init_with_plugin_info_ext(self):
pm = PluginManager(plugin_info_ext="bla")
self.assertEqual(["Default"],pm.getCategories())
self.assertTrue(isinstance(pm.getPluginLocator(),PluginFileLocator))
def test_init_with_plugin_locator(self):
class SpecificLocator(IPluginLocator):
pass
pm = PluginManager(plugin_locator=SpecificLocator())
self.assertEqual(["Default"],pm.getCategories())
self.assertTrue(isinstance(pm.getPluginLocator(),SpecificLocator))
def test_init_with_plugin_info_ext_and_locator(self):
class SpecificLocator(IPluginLocator):
pass
self.assertRaises(ValueError,
PluginManager,plugin_info_ext="bla",
plugin_locator=SpecificLocator())
def test_updatePluginPlaces(self):
class SpecificLocator(IPluginLocator):
pass
pm = PluginManager()
pm.setPluginPlaces(["bla/bli"])
pm.updatePluginPlaces(["mif/maf"])
self.assertEqual(set(["bla/bli","mif/maf"]),set(pm.getPluginLocator().plugins_places))
def test_getPluginCandidates_too_early(self):
pm = PluginManager()
self.assertRaises(RuntimeError,pm.getPluginCandidates)
def test_setPluginLocator_with_plugin_info_class(self):
class SpecificLocator(IPluginLocator):
def getPluginInfoClass(self):
return self.picls
def setPluginInfoClass(self,picls):
self.picls = picls
class SpecificPluginInfo(PluginInfo):
pass
pm = PluginManager()
pm.setPluginLocator(SpecificLocator(),picls=SpecificPluginInfo)
self.assertEqual(SpecificPluginInfo,pm.getPluginInfoClass())
def test_setPluginLocator_with_invalid_locator(self):
class SpecificLocator:
pass
pm = PluginManager()
self.assertRaises(TypeError,
pm.setPluginLocator,SpecificLocator())
def test_setPluginInfoClass_with_strategies(self):
class SpecificPluginInfo(PluginInfo):
pass
class SpecificLocator(IPluginLocator):
def setPluginInfoClass(self,cls,name):
if not hasattr(self,"icls"):
self.icls = {}
self.icls[name] = cls
loc = SpecificLocator()
pm = PluginManager(plugin_locator=loc)
pm.setPluginInfoClass(SpecificPluginInfo,["mouf","hop"])
self.assertEqual({"mouf":SpecificPluginInfo,"hop":SpecificPluginInfo},loc.icls)
suite = unittest.TestSuite([
unittest.TestLoader().loadTestsFromTestCase(IPluginLocatorTest),
unittest.TestLoader().loadTestsFromTestCase(PluginFileAnalyzerWithInfoFileTest),
unittest.TestLoader().loadTestsFromTestCase(PluginFileAnalyzerMathingRegexTest),
unittest.TestLoader().loadTestsFromTestCase(PluginFileLocatorTest),
unittest.TestLoader().loadTestsFromTestCase(PluginManagerSetUpTest),
])
|