rubyjedi/soap4r

View on GitHub
lib/soap/wsdlDriver.rb

Summary

Maintainability
B
5 hrs
Test Coverage

Method dump_method_signatures has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

  def dump_method_signatures(servicename = nil, portname = nil)
    targetservice = XSD::QName.new(@wsdl.targetnamespace, servicename) if servicename
    targetport = XSD::QName.new(@wsdl.targetnamespace, portname) if portname
    sig = []
    element_definitions = @wsdl.collect_elements
Severity: Minor
Found in lib/soap/wsdlDriver.rb - About 2 hrs 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 add_operation has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def add_operation(drv, binding)
    name_creator = WSDL::SOAP::ClassNameCreator.new
    modulepath = 'WSDLDriverFactory'
    methoddefcreator =
      WSDL::SOAP::MethodDefCreator.new(@wsdl, name_creator, modulepath, {})
Severity: Minor
Found in lib/soap/wsdlDriver.rb - About 1 hr to fix

    Method find_port has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

      def find_port(servicename = nil, portname = nil)
        service = port = nil
        if servicename
          service = @wsdl.service(
            XSD::QName.new(@wsdl.targetnamespace, servicename))
    Severity: Minor
    Found in lib/soap/wsdlDriver.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 add_operation has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def add_operation(drv, binding)
        name_creator = WSDL::SOAP::ClassNameCreator.new
        modulepath = 'WSDLDriverFactory'
        methoddefcreator =
          WSDL::SOAP::MethodDefCreator.new(@wsdl, name_creator, modulepath, {})
    Severity: Minor
    Found in lib/soap/wsdlDriver.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