mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
Merge pull request #3018 from dsedivec/devel
Plug-ins loaded from top-level plug-in directory
This commit is contained in:
@@ -100,11 +100,10 @@ class PluginLoader(object):
|
||||
files = glob.glob("%s/*" % fullpath)
|
||||
for file in files:
|
||||
if os.path.isdir(file) and file not in ret:
|
||||
ret.append(file)
|
||||
else:
|
||||
ret.append(file)
|
||||
if fullpath not in ret:
|
||||
ret.append(fullpath)
|
||||
|
||||
|
||||
# look in any configured plugin paths, allow one level deep for subcategories
|
||||
configured_paths = self.config.split(os.pathsep)
|
||||
for path in configured_paths:
|
||||
|
||||
@@ -27,6 +27,7 @@ class TestRunner(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.user = getpass.getuser()
|
||||
self.runner = ansible.runner.Runner(
|
||||
basedir='test/',
|
||||
module_name='ping',
|
||||
module_path='library/',
|
||||
module_args='',
|
||||
@@ -77,6 +78,12 @@ class TestRunner(unittest.TestCase):
|
||||
assert "localhost" in results['contacted']
|
||||
return results['contacted']['localhost']
|
||||
|
||||
def test_action_plugins(self):
|
||||
result = self._run("uncategorized_plugin", [])
|
||||
assert result.get("msg") == "uncategorized"
|
||||
result = self._run("categorized_plugin", [])
|
||||
assert result.get("msg") == "categorized"
|
||||
|
||||
def test_ping(self):
|
||||
result = self._run('ping', [])
|
||||
assert "ping" in result
|
||||
|
||||
15
test/action_plugins/categorized_plugin.py
Normal file
15
test/action_plugins/categorized_plugin.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from ansible.runner import return_data
|
||||
|
||||
|
||||
class ActionModule (object):
|
||||
def __init__(self, runner):
|
||||
self.runner = runner
|
||||
|
||||
def run(self, conn, tmp, module_name, module_args, inject,
|
||||
complex_args=None, **kwargs):
|
||||
# This plug-in should be ignored in deference to
|
||||
# category/categorized_plugin.py, so it should never actually
|
||||
# run.
|
||||
return return_data.ReturnData(
|
||||
conn=conn, comm_ok=True,
|
||||
result={"msg": "this plug-in should never be run"})
|
||||
11
test/action_plugins/category/categorized_plugin.py
Normal file
11
test/action_plugins/category/categorized_plugin.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from ansible.runner import return_data
|
||||
|
||||
|
||||
class ActionModule (object):
|
||||
def __init__(self, runner):
|
||||
self.runner = runner
|
||||
|
||||
def run(self, conn, tmp, module_name, module_args, inject,
|
||||
complex_args=None, **kwargs):
|
||||
return return_data.ReturnData(conn=conn, comm_ok=True,
|
||||
result={"msg": "categorized"})
|
||||
11
test/action_plugins/uncategorized_plugin.py
Normal file
11
test/action_plugins/uncategorized_plugin.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from ansible.runner import return_data
|
||||
|
||||
|
||||
class ActionModule (object):
|
||||
def __init__(self, runner):
|
||||
self.runner = runner
|
||||
|
||||
def run(self, conn, tmp, module_name, module_args, inject,
|
||||
complex_args=None, **kwargs):
|
||||
return return_data.ReturnData(conn=conn, comm_ok=True,
|
||||
result={"msg": "uncategorized"})
|
||||
Reference in New Issue
Block a user