Class: Minitest::ServerReporter

Inherits:
AbstractReporter show all
Defined in:
lib/minitest/server_plugin.rb

Instance Method Summary collapse

Methods inherited from AbstractReporter

#passed?, #prerecord, #synchronize

Constructor Details

#initialize(pid) ⇒ ServerReporter

Returns a new instance of ServerReporter.



23
24
25
26
27
# File 'lib/minitest/server_plugin.rb', line 23

def initialize pid
  uri = Minitest::Server.path(pid)
  @mt_server = DRbObject.new_with_uri uri
  super()
end

Instance Method Details

#record(result) ⇒ Object



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/minitest/server_plugin.rb', line 33

def record result
  r = result
  c = r.class

  case r
  when Minitest::Result then
    file, = r.source_location
    cn = r.klass
  else
    # TODO: remove? when is this used?
    file, = r.method(r.name).source_location
    cn = c.name
  end

  sanitize r.failures

  @mt_server.result file, cn, r.name, r.failures, r.assertions, r.time
end

#reportObject



83
84
85
# File 'lib/minitest/server_plugin.rb', line 83

def report
  @mt_server.report
end

#sanitize(failures) ⇒ Object



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/minitest/server_plugin.rb', line 52

def sanitize failures
  failures.map! { |e|
    case e
    when Minitest::UnexpectedError then
      # embedded exception might not be able to be marshaled.
      bt = e.error.backtrace

      ex = RuntimeError.new(e.error.message)
      e.error = ex
      ex.set_backtrace bt

      e = Minitest::UnexpectedError.new ex # ugh. some rails plugin. ugh.

      if ex.instance_variables.include? :@bindings then # web-console is Evil
        ex.instance_variable_set :@bindings, nil
        e.instance_variable_set  :@bindings, nil
      end
    when Minitest::Skip then
      # do nothing
    when Minitest::Assertion then
      bt = e.backtrace
      e = e.class.new(e.message)
      e.set_backtrace bt
    else
      warn "Unhandled exception type: #{e.class}\n\n#{e.inspect}"
    end

    e
  }
end

#startObject



29
30
31
# File 'lib/minitest/server_plugin.rb', line 29

def start
  @mt_server.start
end