Class: ActiveSupport::Testing::Parallelization::Server

Inherits:
Object
  • Object
show all
Includes:
DRb::DRbUndumped
Defined in:
activesupport/lib/active_support/testing/parallelization/server.rb

Instance Method Summary collapse

Constructor Details

#initializeServer

Returns a new instance of Server.



12
13
14
15
16
# File 'activesupport/lib/active_support/testing/parallelization/server.rb', line 12

def initialize
  @queue = Queue.new
  @active_workers = Concurrent::Map.new
  @in_flight = Concurrent::Map.new
end

Instance Method Details

#<<(o) ⇒ Object



28
29
30
31
# File 'activesupport/lib/active_support/testing/parallelization/server.rb', line 28

def <<(o)
  o[2] = DRbObject.new(o[2]) if o
  @queue << o
end

#active_workers?Boolean

Returns:

  • (Boolean)


48
49
50
# File 'activesupport/lib/active_support/testing/parallelization/server.rb', line 48

def active_workers?
  @active_workers.size > 0
end

#interruptObject



52
53
54
# File 'activesupport/lib/active_support/testing/parallelization/server.rb', line 52

def interrupt
  @queue.clear
end

#popObject



33
34
35
36
37
38
# File 'activesupport/lib/active_support/testing/parallelization/server.rb', line 33

def pop
  if test = @queue.pop
    @in_flight[[test[0].to_s, test[1]]] = test
    test
  end
end

#record(reporter, result) ⇒ Object

Raises:

  • (DRb::DRbConnError)


18
19
20
21
22
23
24
25
26
# File 'activesupport/lib/active_support/testing/parallelization/server.rb', line 18

def record(reporter, result)
  raise DRb::DRbConnError if result.is_a?(DRb::DRbUnknown)

  @in_flight.delete([result.klass, result.name])

  reporter.synchronize do
    reporter.record(result)
  end
end

#shutdownObject



56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'activesupport/lib/active_support/testing/parallelization/server.rb', line 56

def shutdown
  # Wait for initial queue to drain
  while @queue.length != 0
    sleep 0.1
  end

  @queue.close

  # Wait until all workers have finished
  while active_workers?
    sleep 0.1
  end

  @in_flight.values.each do |(klass, name, reporter)|
    result = Minitest::Result.from(klass.new(name))
    error = RuntimeError.new("result not reported")
    error.set_backtrace([""])
    result.failures << Minitest::UnexpectedError.new(error)
    reporter.synchronize do
      reporter.record(result)
    end
  end
end

#start_worker(worker_id) ⇒ Object



40
41
42
# File 'activesupport/lib/active_support/testing/parallelization/server.rb', line 40

def start_worker(worker_id)
  @active_workers[worker_id] = true
end

#stop_worker(worker_id) ⇒ Object



44
45
46
# File 'activesupport/lib/active_support/testing/parallelization/server.rb', line 44

def stop_worker(worker_id)
  @active_workers.delete(worker_id)
end