nathan-v/aws_okta_keyman

View on GitHub
aws_okta_keyman/aws.py

Summary

Maintainability
B
5 hrs
Test Coverage

File aws.py has 313 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#
# Credits: Portions of this code were copied/modified from
# https://github.com/ThoughtWorksInc/aws_role_credentials
#
# Copyright (c) 2015, Peter Gillard-Moss
Severity: Minor
Found in aws_okta_keyman/aws.py - About 3 hrs to fix

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

        def __init__(
    Severity: Minor
    Found in aws_okta_keyman/aws.py - About 45 mins to fix

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

          def assume_role(self, print_only=False):
              """Use the SAML Assertion to actually get the credentials.
      
              Uses the supplied (one time use!) SAML Assertion to go out to Amazon
              and get back a set of temporary credentials. These are written out to
      Severity: Minor
      Found in aws_okta_keyman/aws.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 available_roles has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def available_roles(self):
              """Return the roles available from AWS.
      
              Returns: Tuple, list of roles as dicts and a bool that is true when
              multiple accounts were found
      Severity: Minor
      Found in aws_okta_keyman/aws.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

      Line too long (85 > 79 characters)
      Open

              params = ("?Action=login&Issuer={}&Destination={}" "&SigninToken={}").format(
      Severity: Minor
      Found in aws_okta_keyman/aws.py by pep8

      Limit all lines to a maximum of 79 characters.

      There are still many devices around that are limited to 80 character
      lines; plus, limiting windows to 80 characters makes it possible to
      have several windows side-by-side.  The default wrapping on such
      devices looks ugly.  Therefore, please limit all lines to a maximum
      of 79 characters. For flowing long blocks of text (docstrings or
      comments), limiting the length to 72 characters is recommended.
      
      Reports error E501.

      There are no issues that match your filters.

      Category
      Status