shiwaforce/poco

View on GitHub

Showing 49 of 49 total issues

Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def __init__(self, name, token=None, user=None, passw=None, url=None):
Severity: Minor
Found in poco/services/github_repository.py - About 35 mins to fix

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

            elif isinstance(plan, dict) and 'docker-compose-dir' in plan:
                docker_files.extend(self.get_file_list(self.repo_dir, self.working_directory,
                                                       ProjectUtils.get_list_value(plan['docker-compose-dir'])))
    Severity: Minor
    Found in poco/services/command_runners.py and 1 other location - About 35 mins to fix
    poco/services/command_runners.py on lines 133..135

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 33.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function __init__ has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def __init__(self, name, token=None, user=None, passw=None, url=None):
            super(GitHubRepository, self).__init__(os.path.join(StateHolder.home_dir, 'gitHub', name))
    
            if sys.version_info[0] < 3:
                ColorPrint.exit_after_print_messages("Sorry, GitHub repository not supported with Python version below 3")
    Severity: Minor
    Found in poco/services/github_repository.py - About 35 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function checkout has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def checkout(dry_run=False):
    
            for catalog in StateHolder.catalogs:
                lst = StateHolder.catalogs[catalog]
                if StateHolder.name in lst:
    Severity: Minor
    Found in poco/commands/checkout.py - About 35 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

            if isinstance(plan, dict) and len(files) == 0 and 'kubernetes-dir' in plan:
                files.extend(self.get_file_list(self.repo_dir, self.working_directory,
                                                ProjectUtils.get_list_value(plan['kubernetes-dir'])))
    Severity: Minor
    Found in poco/services/command_runners.py and 1 other location - About 35 mins to fix
    poco/services/command_runners.py on lines 218..220

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 33.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function print_ls has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def print_ls():
            """Get catalog list"""
            if StateHolder.name is not None:
                lst = dict()
                lst[StateHolder.name] = StateHolder.catalogs[StateHolder.name]
    Severity: Minor
    Found in poco/services/catalog_handler.py - About 35 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function parse_catalog has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def parse_catalog():
            """Parse catalog file"""
            StateHolder.catalogs = dict()
    
            for key in StateHolder.catalog_repositories.keys():
    Severity: Minor
    Found in poco/services/catalog_handler.py - About 35 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function get_normalized_dir has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_normalized_dir(self):
            target_dir = StateHolder.args.get('<target-dir>')
            if target_dir is not None:
                if not os.path.exists(target_dir):
                    if os.path.exists(os.path.join(os.getcwd(), target_dir)):
    Severity: Minor
    Found in poco/commands/project_add.py - About 35 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function check_base_class has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def check_base_class(self, cls):
            for base_class in inspect.getmro(cls)[1:]:
                if base_class == AbstractCommand:
                    sub_command = getattr(cls, 'sub_command')
                    if sub_command not in self.command_classes.keys():
    Severity: Minor
    Found in poco/poco.py - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function prepare_project_repo has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def prepare_project_repo():
            """Get project parameters form catalog, if it is exists"""
            if StateHolder.name is None or StateHolder.catalogs is None:
                return
            for catalog in StateHolder.catalogs:
    Severity: Minor
    Found in poco/services/state_utils.py - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function exit_after_print_messages has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def exit_after_print_messages(message, doc=None, msg_type="error"):
            if "error" == msg_type:
                ColorPrint.print_error(message)
            elif "warn" == msg_type:
                ColorPrint.print_warning(message)
    Severity: Minor
    Found in poco/services/console_logger.py - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function get_environment_variables has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_environment_variables(self, plan):
            """Get all environment variables depends on selected plan"""
            envs = list()
            if isinstance(plan, dict):
                if 'environment' in plan and 'include' in plan['environment']:
    Severity: Minor
    Found in poco/services/command_handler.py - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function get_repo has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_repo(key, repo, silent):
            conf = StateHolder.config[key]
            if 'git' == repo:
                repository = GitRepository(target_dir=os.path.join(StateHolder.home_dir, 'catalogHome', key),
                                           url=CatalogHandler.get_url(conf),
    Severity: Minor
    Found in poco/services/catalog_handler.py - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function build_command has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def build_command(cmd, dirs, files):
            if "install" in cmd or "upgrade" in cmd:
                if len(dirs) > 0:
                    cmd.append(str(dirs[0]))
                for file in files:
    Severity: Minor
    Found in poco/services/command_runners.py - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function execute has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def execute(self):
            if StateHolder.repository is not None:
                target_file = os.path.join(ProjectUtils.get_target_dir(StateHolder.catalog_element),
                                           StateHolder.catalog_element.get('file', 'poco.yml'))
                if not os.path.exists(target_file):
    Severity: Minor
    Found in poco/commands/init.py - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function get_backward_compatible_poco_file has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_backward_compatible_poco_file(directory=None, throw_exception=False, silent=False):
            file = FileUtils.get_file_with_extension(file="poco", directory=directory)
            if file is not None:
                return file
    
    
    Severity: Minor
    Found in poco/services/file_utils.py - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function write_yaml_file has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def write_yaml_file(self, file, content, overwrite=True, create=False):
            result = self.get_file(file)
            if create:
                if not os.path.exists(os.path.dirname(file)):
                    os.makedirs(os.path.dirname(file))
    Severity: Minor
    Found in poco/services/abstract_repository.py - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Missing whitespace around operator
    Open

                content=file.read()
    Severity: Minor
    Found in poco/services/file_utils.py by pep8

    Surround operators with a single space on either side.

    - Always surround these binary operators with a single space on
      either side: assignment (=), augmented assignment (+=, -= etc.),
      comparisons (==, <, >, !=, <=, >=, in, not in, is, is not),
      Booleans (and, or, not).
    
    - If operators with different priorities are used, consider adding
      whitespace around the operators with the lowest priorities.
    
    Okay: i = i + 1
    Okay: submitted += 1
    Okay: x = x * 2 - 1
    Okay: hypot2 = x * x + y * y
    Okay: c = (a + b) * (a - b)
    Okay: foo(bar, key='word', *args, **kwargs)
    Okay: alpha[:-i]
    
    E225: i=i+1
    E225: submitted +=1
    E225: x = x /2 - 1
    E225: z = x **y
    E225: z = 1and 1
    E226: c = (a+b) * (a-b)
    E226: hypot2 = x*x + y*y
    E227: c = a|b
    E228: msg = fmt%(errno, errmsg)

    Expected 2 blank lines after class or function definition, found 1
    Open

    setup_options = dict(
    Severity: Minor
    Found in setup.py by pep8

    Separate top-level function and class definitions with two blank lines.

    Method definitions inside a class are separated by a single blank
    line.
    
    Extra blank lines may be used (sparingly) to separate groups of
    related functions.  Blank lines may be omitted between a bunch of
    related one-liners (e.g. a set of dummy implementations).
    
    Use blank lines in functions, sparingly, to indicate logical
    sections.
    
    Okay: def a():\n    pass\n\n\ndef b():\n    pass
    Okay: def a():\n    pass\n\n\nasync def b():\n    pass
    Okay: def a():\n    pass\n\n\n# Foo\n# Bar\n\ndef b():\n    pass
    Okay: default = 1\nfoo = 1
    Okay: classify = 1\nfoo = 1
    
    E301: class Foo:\n    b = 0\n    def bar():\n        pass
    E302: def a():\n    pass\n\ndef b(n):\n    pass
    E302: def a():\n    pass\n\nasync def b(n):\n    pass
    E303: def a():\n    pass\n\n\n\ndef b(n):\n    pass
    E303: def a():\n\n\n\n    pass
    E304: @decorator\n\ndef a():\n    pass
    E305: def a():\n    pass\na()
    E306: def a():\n    def b():\n        pass\n    def c():\n        pass

    Over-indented
    Open

                FileUtils.make_empty_file(directory, filename)
    Severity: Minor
    Found in poco/services/file_utils.py by pep8

    Use indent_size (PEP8 says 4) spaces per indentation level.

    For really old code that you don't want to mess up, you can continue
    to use 8-space tabs.
    
    Okay: a = 1
    Okay: if a == 0:\n    a = 1
    E111:   a = 1
    E114:   # a = 1
    
    Okay: for item in items:\n    pass
    E112: for item in items:\npass
    E115: for item in items:\n# Hi\n    pass
    
    Okay: a = 1\nb = 2
    E113: a = 1\n    b = 2
    E116: a = 1\n    # b = 2
    Severity
    Category
    Status
    Source
    Language