mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update tests to use 127.0.0.2 to bypass the smart "use local connection" code, and also to reflect
that commands now trigger change events.
This commit is contained in:
parent
da9d4eb29a
commit
eed4a2b717
3 changed files with 35 additions and 26 deletions
|
@ -66,8 +66,8 @@ class TestRunner(unittest.TestCase):
|
|||
# when using nosetests this will only show up on failure
|
||||
# which is pretty useful
|
||||
print "RESULTS=%s" % results
|
||||
assert "127.0.0.1" in results['contacted']
|
||||
return results['contacted']['127.0.0.1']
|
||||
assert "127.0.0.2" in results['contacted']
|
||||
return results['contacted']['127.0.0.2']
|
||||
|
||||
def test_ping(self):
|
||||
result = self._run('ping',[])
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
[somegroup]
|
||||
127.0.0.1
|
||||
127.0.0.2
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"answer": "Wuh, I think so, Brain, but if we didn't have ears, we'd look like weasels.",
|
||||
"changed": true,
|
||||
|
@ -23,21 +23,21 @@
|
|||
[
|
||||
"import",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
"/home/mdehaan/ansible/test/common_vars.yml"
|
||||
]
|
||||
],
|
||||
[
|
||||
"import",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
"/home/mdehaan/ansible/test/CentOS.yml"
|
||||
]
|
||||
],
|
||||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"answer": "Wuh, I think so, Brain, but if we didn't have ears, we'd look like weasels.",
|
||||
"changed": true,
|
||||
|
@ -60,8 +60,9 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"changed": true,
|
||||
"cmd": [
|
||||
"/bin/true"
|
||||
],
|
||||
|
@ -81,8 +82,9 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"changed": true,
|
||||
"cmd": [
|
||||
"/bin/true"
|
||||
],
|
||||
|
@ -102,8 +104,9 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"changed": true,
|
||||
"cmd": "echo $HOME 5150 5150 ",
|
||||
"rc": 0,
|
||||
"stderr": "",
|
||||
|
@ -121,8 +124,9 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"changed": true,
|
||||
"cmd": "echo quack moo default ",
|
||||
"rc": 0,
|
||||
"stderr": "",
|
||||
|
@ -140,7 +144,7 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"changed": true,
|
||||
"group": "root",
|
||||
|
@ -154,7 +158,7 @@
|
|||
[
|
||||
"notify",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
"on change 1"
|
||||
]
|
||||
],
|
||||
|
@ -168,7 +172,7 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"changed": true,
|
||||
"group": "root",
|
||||
|
@ -182,14 +186,14 @@
|
|||
[
|
||||
"notify",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
"on change 1"
|
||||
]
|
||||
],
|
||||
[
|
||||
"notify",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
"on change 2"
|
||||
]
|
||||
],
|
||||
|
@ -203,7 +207,7 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"started": 1
|
||||
}
|
||||
|
@ -212,7 +216,7 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"started": 1
|
||||
}
|
||||
|
@ -221,14 +225,15 @@
|
|||
[
|
||||
"async poll",
|
||||
[
|
||||
"127.0.0.1"
|
||||
"127.0.0.2"
|
||||
]
|
||||
],
|
||||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"changed": true,
|
||||
"cmd": "sleep 5 ",
|
||||
"finished": 1,
|
||||
"rc": 0,
|
||||
|
@ -247,7 +252,7 @@
|
|||
[
|
||||
"skipped",
|
||||
[
|
||||
"127.0.0.1"
|
||||
"127.0.0.2"
|
||||
]
|
||||
],
|
||||
[
|
||||
|
@ -260,8 +265,9 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"changed": true,
|
||||
"cmd": "echo 'this should fire once' ",
|
||||
"rc": 0,
|
||||
"stderr": "",
|
||||
|
@ -272,8 +278,9 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"changed": true,
|
||||
"cmd": "echo 'this should fire once' ",
|
||||
"rc": 0,
|
||||
"stderr": "",
|
||||
|
@ -291,8 +298,9 @@
|
|||
[
|
||||
"ok",
|
||||
[
|
||||
"127.0.0.1",
|
||||
"127.0.0.2",
|
||||
{
|
||||
"changed": true,
|
||||
"cmd": "echo 'this should fire once also' ",
|
||||
"rc": 0,
|
||||
"stderr": "",
|
||||
|
@ -302,8 +310,8 @@
|
|||
]
|
||||
],
|
||||
"results": {
|
||||
"127.0.0.1": {
|
||||
"changed": 2,
|
||||
"127.0.0.2": {
|
||||
"changed": 9,
|
||||
"failures": 0,
|
||||
"ok": 12,
|
||||
"skipped": 1,
|
||||
|
@ -311,3 +319,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue