Sha256: 145e89f25196bf11f7ae223b70ba7c6c380cf789a7ba4821e933468604af4016

Contents?: true

Size: 1.95 KB

Versions: 2

Compression:

Stored size: 1.95 KB

Contents

require 'stringio'
require 'test/unit/testcase'
require 'minitest/unit'

class MiniTestResult
  
  FAILURE_PATTERN = %r{(Failure)\:\n([^\(]+)\(([^\)]+)\) \[([^\]]+)\]\:\n(.*)\n}m
  ERROR_PATTERN   = %r{(Error)\:\n([^\(]+)\(([^\)]+)\)\:\n(.+?)\n}m
  
  def self.parse_failure(raw)
    matches = FAILURE_PATTERN.match(raw)
    return nil unless matches
    Failure.new(matches[2], matches[3], [matches[4]], matches[5])
  end
  
  def self.parse_error(raw)
    matches = ERROR_PATTERN.match(raw)
    return nil unless matches
    backtrace = raw.gsub(ERROR_PATTERN, '').split("\n").map(&:strip)
    Error.new(matches[2], matches[3], matches[4], backtrace)
  end
  
  class Failure
    attr_reader :method, :test_case, :location, :message
    def initialize(method, test_case, location, message)
      @method, @test_case, @location, @message = method, test_case, location, message
    end
  end
  
  class Error
    class Exception
      attr_reader :message, :backtrace
      def initialize(message, location)
        @message, @backtrace = message, location
      end
    end
    
    attr_reader :method, :test_case, :exception
    def initialize(method, test_case, message, backtrace)
      @method, @test_case, @exception = method, test_case, Exception.new(message, backtrace)
    end
  end
  
  def initialize(runner, test)
    @runner, @test = runner, test
  end
  
  def failure_count
    @runner.failures
  end
  
  def assertion_count
    @test._assertions
  end
  
  def error_count
    @runner.errors
  end
  
  def passed?
    @test.passed?
  end
  
  def failures
    @runner.report.map { |puked| MiniTestResult.parse_failure(puked) }.compact
  end
  
  def errors
    @runner.report.map { |puked| MiniTestResult.parse_error(puked) }.compact
  end
  
  def failure_messages
    failures.map(&:message)
  end
  
  def failure_message_lines
    failure_messages.map { |message| message.split("\n") }.flatten
  end
  
  def error_messages
    errors.map { |e| e.exception.message }
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bourne-1.1.1 test/mini_test_result.rb
bourne-1.1.0 test/mini_test_result.rb