digidentity/libsaml

View on GitHub
lib/saml/util.rb

Summary

Maintainability
A
3 hrs
Test Coverage

Method sign_xml has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

      def sign_xml(message, format = :xml, include_nested_prefixlist = false, &block)
        message.add_signature

        document = Xmldsig::SignedDocument.new(message.send("to_#{format}"))

Severity: Minor
Found in lib/saml/util.rb - About 1 hr 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

Method encrypt_assertion has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def encrypt_assertion(assertion, key_descriptor_or_certificate, include_certificate: false, include_key_retrieval_method: false)
        case key_descriptor_or_certificate
        when OpenSSL::X509::Certificate
          certificate = key_descriptor_or_certificate
          key_name    = nil
Severity: Minor
Found in lib/saml/util.rb - About 1 hr to fix

    Method encrypt_assertion has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

          def encrypt_assertion(assertion, key_descriptor_or_certificate, include_certificate: false, include_key_retrieval_method: false)
            case key_descriptor_or_certificate
            when OpenSSL::X509::Certificate
              certificate = key_descriptor_or_certificate
              key_name    = nil
    Severity: Minor
    Found in lib/saml/util.rb - About 45 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

    Method verify_xml has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

          def verify_xml(message, raw_body)
            document = Xmldsig::SignedDocument.new(raw_body)
    
            signature_valid = document.validate do |signature, data, signature_algorithm|
              node = document.signatures.find { |s| s.signature_value == signature }.signature.at_xpath('descendant::ds:KeyName', Xmldsig::NAMESPACES)
    Severity: Minor
    Found in lib/saml/util.rb - 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

    There are no issues that match your filters.

    Category
    Status