Sha256: 2efe0efc823cec3d49abfc7f88c40a2540887ea3b3559308df197b8075d30902

Contents?: true

Size: 1.19 KB

Versions: 14

Compression:

Stored size: 1.19 KB

Contents

if defined?(JRUBY_VERSION) && JRUBY_VERSION.to_f < 1.7
  require "jruby"
  java_import "org.jruby.ast.NodeType"

  # Coverage for JRuby < 1.7.0 does not work correctly
  #
  #  - does not distinguish lines that cannot be executed
  #  - does (partial) coverage for files loaded before `Coverage.start`.
  #  - does not expand a path like `lib/../spec` to `spec`.
  #
  # This monkey patches Coverage to address those issues
  module Coverage
    class << self
      alias_method :__broken_result__, :result

      def result # rubocop:disable Metrics/MethodLength
        fixed = {}
        __broken_result__.each do |path, executed_lines|
          next unless File.file? path

          covered_lines = executed_lines.dup

          process = lambda do |node|
            if node.node_type == NodeType::NEWLINENODE
              pos = node.position
              covered_lines[pos.line] ||= 0
            end
            node.child_nodes.each(&process)
          end

          process[JRuby.parse(File.read(path), path)]

          if (first = covered_lines.detect { |x| x }) && first > 0
            fixed[File.expand_path(path)] = covered_lines
          end
        end

        fixed
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 5 rubygems

Version Path
simplecov-0.11.1 lib/simplecov/jruby_fix.rb
simplecov-0.11.0 lib/simplecov/jruby_fix.rb
suzuko-0.1.8 vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
suzuko-0.1.7 vendor/bundle/ruby/2.0.0/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
mastermind_adeybee-0.1.4 vendor/bundle/ruby/2.2.0/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
mastermind_adeybee-0.1.3 vendor/bundle/ruby/2.2.0/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
mastermind_adeybee-0.1.2 vendor/bundle/ruby/2.2.0/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
mastermind_adeybee-0.1.1 vendor/bundle/ruby/2.2.0/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/simplecov-0.10.0/lib/simplecov/jruby_fix.rb
simplecov-0.10.0 lib/simplecov/jruby_fix.rb