a785ad3441
get_wrapped_function() assumes that any function which is a closure is a decorator, and therefore has a function argument. This assumption fails when the function is just a regular closure, and we end up falling through and returning None. Change-Id: I18da02d83fd9884e2e8c2173acf124140bd43525
90 lines
3.0 KiB
Python
90 lines
3.0 KiB
Python
# Copyright 2011 Justin Santa Barbara
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import functools
|
|
|
|
from nova import safe_utils
|
|
from nova import test
|
|
|
|
|
|
def get_closure():
|
|
x = 1
|
|
|
|
def wrapper(self, instance, red=None, blue=None):
|
|
return x
|
|
|
|
return wrapper
|
|
|
|
|
|
class WrappedCodeTestCase(test.NoDBTestCase):
|
|
"""Test the get_wrapped_function utility method."""
|
|
|
|
def _wrapper(self, function):
|
|
@functools.wraps(function)
|
|
def decorated_function(self, *args, **kwargs):
|
|
function(self, *args, **kwargs)
|
|
return decorated_function
|
|
|
|
def test_single_wrapped(self):
|
|
@self._wrapper
|
|
def wrapped(self, instance, red=None, blue=None):
|
|
pass
|
|
|
|
func = safe_utils.get_wrapped_function(wrapped)
|
|
func_code = func.__code__
|
|
self.assertEqual(4, len(func_code.co_varnames))
|
|
self.assertIn('self', func_code.co_varnames)
|
|
self.assertIn('instance', func_code.co_varnames)
|
|
self.assertIn('red', func_code.co_varnames)
|
|
self.assertIn('blue', func_code.co_varnames)
|
|
|
|
def test_double_wrapped(self):
|
|
@self._wrapper
|
|
@self._wrapper
|
|
def wrapped(self, instance, red=None, blue=None):
|
|
pass
|
|
|
|
func = safe_utils.get_wrapped_function(wrapped)
|
|
func_code = func.__code__
|
|
self.assertEqual(4, len(func_code.co_varnames))
|
|
self.assertIn('self', func_code.co_varnames)
|
|
self.assertIn('instance', func_code.co_varnames)
|
|
self.assertIn('red', func_code.co_varnames)
|
|
self.assertIn('blue', func_code.co_varnames)
|
|
|
|
def test_triple_wrapped(self):
|
|
@self._wrapper
|
|
@self._wrapper
|
|
@self._wrapper
|
|
def wrapped(self, instance, red=None, blue=None):
|
|
pass
|
|
|
|
func = safe_utils.get_wrapped_function(wrapped)
|
|
func_code = func.__code__
|
|
self.assertEqual(4, len(func_code.co_varnames))
|
|
self.assertIn('self', func_code.co_varnames)
|
|
self.assertIn('instance', func_code.co_varnames)
|
|
self.assertIn('red', func_code.co_varnames)
|
|
self.assertIn('blue', func_code.co_varnames)
|
|
|
|
def test_closure(self):
|
|
closure = get_closure()
|
|
func = safe_utils.get_wrapped_function(closure)
|
|
func_code = func.__code__
|
|
self.assertEqual(4, len(func_code.co_varnames))
|
|
self.assertIn('self', func_code.co_varnames)
|
|
self.assertIn('instance', func_code.co_varnames)
|
|
self.assertIn('red', func_code.co_varnames)
|
|
self.assertIn('blue', func_code.co_varnames)
|