Bases: ast.NodeVisitor
Provides a simple framework for writing AST-based checks.
Subclasses should implement visit_* methods like any other AST visitor implementation. When they detect an error for a particular node the method should call self.add_error(offending_node). Details about where in the code the error occurred will be pulled from the node object.
Subclasses should also provide a class variable named CHECK_DESC to be used for the human readable error message.
Add an error caused by a node to the list of errors for pep8.
Called automatically by pep8.
Bases: nova.hacking.checks.BaseASTChecker
Checks for the use of str() or unicode() on an exception.
This currently only handles the case where str() or unicode() is used in the scope of an exception handler. If the exception is passed into a function, returned from an assertRaises, or used on an exception created in the same scope, this does not catch it.
Bases: nova.hacking.checks.BaseASTChecker
Checks for the use of concatenation on a translated string.
Translations should not be concatenated with other strings, but should instead include the string being added to the translated string to give the translators the most information.
Check for assertEqual(A in B, True), assertEqual(True, A in B), assertEqual(A in B, False) or assertEqual(False, A in B) sentences
N338
Check for assertEqual(A, None) or assertEqual(None, A) sentences
N318
Check for assertEqual(type(A), B) sentences
N317
Check for usage of deprecated assertRaisesRegexp
N335
Check for assertTrue(isinstance(a, b)) sentences
N316
Check for assertTrue/False(A in B), assertTrue/False(A not in B), assertTrue/False(A in B, message) or assertTrue/False(A not in B, message) sentences.
N334
Check for the common doubled-word typos
N343
Check for explicit import of the _ function
We need to ensure that any files that are using the _() function to translate logs are explicitly importing the _ function. We can’t trust unit test to catch whether the import has been added so we need to check for it here.
Check for use of greenthread.spawn(), greenthread.spawn_n(), eventlet.spawn(), and eventlet.spawn_n()
N340
Check for db calls from nova/virt
As of grizzly-2 all the database calls have been removed from nova/virt, and we want to keep it that way.
N307
Check virt drivers’ config vars aren’t used by other drivers
Modules under each virt driver’s directory are considered private to that virt driver. Other drivers in Nova must not use their config vars. Any config vars that are to be shared should be moved into a common module
N312
Check virt drivers’ modules aren’t imported by other drivers
Modules under each virt driver’s directory are considered private to that virt driver. Other drivers in Nova must not access those drivers. Any code that is to be shared should be refactored into a common module
N311
Check for ‘from nova.i18n import _’ N337
Disallow ‘os.popen(‘
Deprecated library function os.popen() Replace it using subprocess https://bugs.launchpad.net/tempest/+bug/1529836
N348
Check for setting CONF.* attributes directly in tests
The value can leak out of tests affecting how subsequent tests run. Using self.flags(option=value) is the preferred method to temporarily set config options in tests.
N320
Check for ‘LOG.debug(_(‘
As per our translation policy, https://wiki.openstack.org/wiki/LoggingStandards#Log_Translation we shouldn’t translate debug level logs.
N319
Check for vi editor configuration in source files.
By default vi modelines can only appear in the first or last 5 lines of a source file.
N314