1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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
|
#!/usr/bin/env rspec
# Test the main loop
require_relative "spec_helper"
require "dbus"
describe "MainLoopTest" do
before(:each) do
@session_bus = DBus::ASessionBus.new
svc = @session_bus.service("org.ruby.service")
@obj = svc.object("/org/ruby/MyInstance")
@obj.default_iface = "org.ruby.Loop"
@loop = DBus::Main.new
@loop << @session_bus
end
# Hack the library internals so that there is a delay between
# sending a DBus call and listening for its reply, so that
# the bus has a chance to join the server messages and a race is reproducible
def call_lazily
class << @session_bus
alias_method :wait_for_message_orig, :wait_for_message
def wait_for_message_lazy
DBus.logger.debug "I am so lazy"
sleep 1 # Give the server+bus a chance to join the messages
wait_for_message_orig
end
alias_method :wait_for_message, :wait_for_message_lazy
end
yield
# undo
class << @session_bus
remove_method :wait_for_message
remove_method :wait_for_message_lazy
alias_method :wait_for_message, :wait_for_message_orig
end
end
def test_loop_quit(delay)
@obj.on_signal "LongTaskEnd" do
DBus.logger.debug "Telling loop to quit"
@loop.quit
end
call_lazily do
# The method will sleep the requested amount of seconds
# (in another thread) before signalling LongTaskEnd
@obj.LongTaskBegin delay
end
# this thread will make the test fail if @loop.run does not return
dynamite = Thread.new do
DBus.logger.debug "Dynamite burning"
sleep 2
DBus.logger.debug "Dynamite explodes"
# We need to raise in the main thread.
# Simply raising here means the exception is ignored
# (until dynamite.join which we don't call) or
# (if abort_on_exception is set) it terminates the whole script.
Thread.main.raise RuntimeError, "The main loop did not quit in time"
end
@loop.run
DBus.logger.debug "Defusing dynamite"
# if we get here, defuse the bomb
dynamite.exit
# remove signal handler
@obj.on_signal "LongTaskEnd"
end
it "tests loop quit" do
test_loop_quit 1
end
# https://bugzilla.novell.com/show_bug.cgi?id=537401
it "tests loop drained socket" do
test_loop_quit 0
end
end
|