bblimke/webmock

View on GitHub

Showing 60 of 70 total issues

Method to_query has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

      def to_query(parent, value, options = {})
        options[:notation] ||= :subscript
        case value
        when ::Hash
          value = value.map do |key, val|
Severity: Minor
Found in lib/webmock/util/query_mapper.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 values_to_query has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def values_to_query(new_query_values, options = {})
        options[:notation] ||= :subscript
        return if new_query_values.nil?

        unless new_query_values.is_a?(Array)
Severity: Minor
Found in lib/webmock/util/query_mapper.rb - About 1 hr to fix

    Method request has 34 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            def request(request, body = nil, &block)
              request_signature = WebMock::NetHTTPUtility.request_signature_from_request(self, request, body)
    
              WebMock::RequestRegistry.instance.requested_signatures.put(request_signature)
    
    
    Severity: Minor
    Found in lib/webmock/http_lib_adapters/net_http.rb - About 1 hr to fix

      Method generate_typhoeus_response has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              def self.generate_typhoeus_response(request_signature, webmock_response)
                response = if webmock_response.should_timeout
                  ::Typhoeus::Response.new(
                    code: 0,
                    status_message: "",
      Severity: Minor
      Found in lib/webmock/http_lib_adapters/typhoeus_hydra_adapter.rb - About 1 hr to fix

        Method convert_json_to_yaml has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              def self.convert_json_to_yaml(json) #:nodoc:
                scanner, quoting, marks, times = StringScanner.new(json), false, [], []
                while scanner.scan_until(/(\\['"]|['":,\\]|\\.)/)
                  case char = scanner[1]
                  when '"', "'"
        Severity: Minor
        Found in lib/webmock/util/json.rb - About 1 hr to fix

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

                def fill_accumulator_for_dot(accumulator, key, value)
                  array_value = false
                  subkeys = key.split(".")
                  current_hash = accumulator
                  subkeys[0..-2].each do |subkey|
          Severity: Minor
          Found in lib/webmock/util/query_mapper.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 to_query has 31 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                def to_query(parent, value, options = {})
                  options[:notation] ||= :subscript
                  case value
                  when ::Hash
                    value = value.map do |key, val|
          Severity: Minor
          Found in lib/webmock/util/query_mapper.rb - About 1 hr to fix

            Method call has 30 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    def call(request)
                      request.scheme ||= self.scheme
                      request.authority ||= self.authority
            
                      request_signature = build_request_signature(request)
            Severity: Minor
            Found in lib/webmock/http_lib_adapters/async_http_client_adapter.rb - About 1 hr to fix

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

                    def send_request(head, body)
                      WebMock::RequestRegistry.instance.requested_signatures.put(request_signature)
              
                      if stubbed_webmock_response
                        WebMock::CallbackRegistry.invoke_callbacks({lib: :em_http_request}, request_signature, stubbed_webmock_response)
              Severity: Minor
              Found in lib/webmock/http_lib_adapters/em_http_request_adapter.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 to_query has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                      def self.to_query(hash)
                        string = "".dup
                        for key, values in hash
                          if values.nil?
                            string << key.to_s << '&'
              Severity: Minor
              Found in lib/webmock/http_lib_adapters/excon_adapter.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 build_net_http_response has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                      def build_net_http_response(webmock_response, request_uri, &block)
                        response = Net::HTTPResponse.send(:response_class, webmock_response.status[0].to_s).new("1.0", webmock_response.status[0].to_s, webmock_response.status[1])
                        body = webmock_response.body
                        body = nil if webmock_response.status[0].to_s == '204'
              
              
              Severity: Minor
              Found in lib/webmock/http_lib_adapters/net_http.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 build_rack_env has 27 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  def build_rack_env(request)
                    uri = request.uri
                    headers = (request.headers || {}).dup
                    body = request.body || ''
              
              
              Severity: Minor
              Found in lib/webmock/rack_response.rb - About 1 hr to fix

                Method build_webmock_response has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                Open

                    def build_webmock_response(httpclient_response, body = nil)
                      webmock_response = WebMock::Response.new
                      webmock_response.status = [httpclient_response.status, httpclient_response.reason]
                
                      webmock_response.headers = {}.tap do |hash|
                Severity: Minor
                Found in lib/webmock/http_lib_adapters/httpclient_adapter.rb - About 55 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 matches? has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                Open

                    def matches?(headers)
                      if empty_headers?(@pattern)
                        empty_headers?(headers)
                      else
                        return false if empty_headers?(headers)
                Severity: Minor
                Found in lib/webmock/request_pattern.rb - About 55 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 build_httpclient_response has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                Open

                    def build_httpclient_response(webmock_response, stream = false, req_header = nil, &block)
                      body = stream ? StringIO.new(webmock_response.body) : webmock_response.body
                      response = HTTP::Message.new_response(body, req_header)
                      response.header.init_response(webmock_response.status[0])
                      response.reason=webmock_response.status[1]
                Severity: Minor
                Found in lib/webmock/http_lib_adapters/httpclient_adapter.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 matches? has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                Open

                    def matches?(body, content_type = "")
                      assert_non_multipart_body(content_type)
                
                      if (@pattern).is_a?(Hash)
                        return true if @pattern.empty?
                Severity: Minor
                Found in lib/webmock/request_pattern.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 build_request_signature has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                Open

                      def build_request_signature
                        method = @webmock_method.to_s.downcase.to_sym
                
                        uri = WebMock::Util::URI.heuristic_parse(self.url)
                        uri.path = uri.normalized_path.gsub("[^:]//","/")
                Severity: Minor
                Found in lib/webmock/http_lib_adapters/curb_adapter.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 matches? has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                Open

                    def matches?(request_signature)
                      content_type = request_signature.headers['Content-Type'] if request_signature.headers
                      content_type = content_type.split(';').first if content_type
                      @method_pattern.matches?(request_signature.method) &&
                        @uri_pattern.matches?(request_signature.uri) &&
                Severity: Minor
                Found in lib/webmock/request_pattern.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

                Avoid deeply nested control flow statements.
                Open

                                  headers[parts[0]] = [headers[parts[0]]] unless headers[parts[0]].kind_of? Array
                Severity: Major
                Found in lib/webmock/http_lib_adapters/curb_adapter.rb - About 45 mins to fix

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

                        def self.normalize_headers(headers)
                          return nil unless headers
                  
                          headers.each_with_object({}) do |(name, value), new_headers|
                            new_headers[normalize_name(name)] =
                  Severity: Minor
                  Found in lib/webmock/util/headers.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

                  Severity
                  Category
                  Status
                  Source
                  Language