test/test_integration_ssl.rb

Summary

Maintainability
C
1 day
Test Coverage

File test_integration_ssl.rb has 274 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require_relative 'helper'
require_relative "helpers/integration"

if ::Puma::HAS_SSL # don't load any files if no ssl support
  require "net/http"
Severity: Minor
Found in test/test_integration_ssl.rb - About 2 hrs to fix

    Method test_verify_client_cert_roundtrip has 42 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      def test_verify_client_cert_roundtrip(tls1_2 = nil)
        cert_path = File.expand_path '../examples/puma/client-certs', __dir__
        bind_port
    
        config = <<~CONFIG
    Severity: Minor
    Found in test/test_integration_ssl.rb - About 1 hr to fix

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

        def test_ssl_run_with_curl_client
          skip_if :windows; require 'stringio'
      
          app = lambda { |_| [200, { 'Content-Type' => 'text/plain' }, ["HELLO", ' ', "THERE"]] }
          opts = {max_threads: 1}
      Severity: Minor
      Found in test/test_integration_ssl.rb - About 1 hr to fix

        Method test_ssl_run has 31 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def test_ssl_run
            config = <<~RUBY
              if ::Puma.jruby?
                keystore =  '#{File.expand_path '../examples/puma/keystore.jks', __dir__}'
                keystore_pass = 'jruby_puma'
        Severity: Minor
        Found in test/test_integration_ssl.rb - About 1 hr to fix

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

            def curl_and_get_response(url, method: :get, args: nil); require 'open3'
              cmd = "curl -s -v --show-error #{args} -X #{method.to_s.upcase} -k #{url}"
              begin
                out, err, status = Open3.capture3(cmd)
              rescue Errno::ENOENT
          Severity: Minor
          Found in test/test_integration_ssl.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 test_verify_client_cert_roundtrip has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

            def test_verify_client_cert_roundtrip(tls1_2 = nil)
              cert_path = File.expand_path '../examples/puma/client-certs', __dir__
              bind_port
          
              config = <<~CONFIG
          Severity: Minor
          Found in test/test_integration_ssl.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 test_ssl_run_with_curl_client has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            def test_ssl_run_with_curl_client
              skip_if :windows; require 'stringio'
          
              app = lambda { |_| [200, { 'Content-Type' => 'text/plain' }, ["HELLO", ' ', "THERE"]] }
              opts = {max_threads: 1}
          Severity: Minor
          Found in test/test_integration_ssl.rb - 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

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

            def test_ssl_run_with_encrypted_key
              skip_if :jruby
          
              config = <<~RUBY
                key_path  = '#{File.expand_path '../examples/puma/encrypted_puma_keypair.pem', __dir__}'
          Severity: Major
          Found in test/test_integration_ssl.rb and 1 other location - About 1 hr to fix
          test/test_integration_ssl.rb on lines 289..318

          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 68.

          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

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

            def test_ssl_run_with_encrypted_pem
              skip_if :jruby
          
              config = <<~RUBY
                key_path  = '#{File.expand_path '../examples/puma/encrypted_puma_keypair.pem', __dir__}'
          Severity: Major
          Found in test/test_integration_ssl.rb and 1 other location - About 1 hr to fix
          test/test_integration_ssl.rb on lines 256..285

          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 68.

          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

          There are no issues that match your filters.

          Category
          Status