summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdrian Likins <alikins@redhat.com>2016-10-13 17:47:29 -0400
committerMichael Scherer <mscherer@users.noreply.github.com>2016-10-23 13:36:20 +0200
commitc0331d50dcb1fec063b9bf6af631a42d7b83a98c (patch)
tree8182d0bd13c726f98f2cbd61a9dafff7db52044c /test
parent39e86ae2bc3a0090d4dca3ae9a7eedfe6b2be5ae (diff)
downloadansible-c0331d50dcb1fec063b9bf6af631a42d7b83a98c.tar.gz
Remove callback.CallbackBase._copy_result_exclude
Nothing seems to use this now. Was added originally added in2d11cfab92f9d26448461b4bc81f466d1910a15e but the code that used it was removed in e02b98274b60cdbc12ef4a4c74ae0f74207384e8
Diffstat (limited to 'test')
-rw-r--r--test/units/plugins/callback/test_callback.py61
1 files changed, 5 insertions, 56 deletions
diff --git a/test/units/plugins/callback/test_callback.py b/test/units/plugins/callback/test_callback.py
index 54964ac9df..2cdf45fb25 100644
--- a/test/units/plugins/callback/test_callback.py
+++ b/test/units/plugins/callback/test_callback.py
@@ -19,64 +19,13 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
-from six import PY3
-from copy import deepcopy
-
from ansible.compat.tests import unittest
-from ansible.compat.tests.mock import patch, mock_open
from ansible.plugins.callback import CallbackBase
-import ansible.plugins.callback as callish
-
-class TestCopyResultExclude(unittest.TestCase):
- def setUp(self):
- class DummyClass():
- def __init__(self):
- self.bar = [ 1, 2, 3 ]
- self.a = {
- "b": 2,
- "c": 3,
- }
- self.b = {
- "c": 3,
- "d": 4,
- }
- self.foo = DummyClass()
- self.cb = CallbackBase()
-
- def tearDown(self):
- pass
-
- def test_copy_logic(self):
- res = self.cb._copy_result_exclude(self.foo, ())
- self.assertEqual(self.foo.bar, res.bar)
-
- def test_copy_deep(self):
- res = self.cb._copy_result_exclude(self.foo, ())
- self.assertNotEqual(id(self.foo.bar), id(res.bar))
-
- def test_no_exclude(self):
- res = self.cb._copy_result_exclude(self.foo, ())
- self.assertEqual(self.foo.bar, res.bar)
- self.assertEqual(self.foo.a, res.a)
- self.assertEqual(self.foo.b, res.b)
-
- def test_exclude(self):
- res = self.cb._copy_result_exclude(self.foo, ['bar', 'b'])
- self.assertIsNone(res.bar)
- self.assertIsNone(res.b)
- self.assertEqual(self.foo.a, res.a)
-
- def test_result_unmodified(self):
- bar_id = id(self.foo.bar)
- a_id = id(self.foo.a)
- res = self.cb._copy_result_exclude(self.foo, ['bar', 'a'])
-
- self.assertEqual(self.foo.bar, [ 1, 2, 3 ])
- self.assertEqual(bar_id, id(self.foo.bar))
-
- self.assertEqual(self.foo.a, dict(b=2, c=3))
- self.assertEqual(a_id, id(self.foo.a))
- self.assertRaises(AttributeError, self.cb._copy_result_exclude, self.foo, ['a', 'c', 'bar'])
+class TestCallback(unittest.TestCase):
+ # FIXME: This doesn't really test anything...
+ def test(self):
+ cb = CallbackBase()
+ cb.v2_on_any('foo', 'bar', blip='blippy')