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
|
#!/usr/bin/env rspec
# frozen_string_literal: true
# Test thread safety
require_relative "spec_helper"
require "dbus"
class TestSignalRace < DBus::Object
dbus_interface "org.ruby.ServerTest" do
dbus_signal :signal_without_arguments
end
end
# Run *count* threads all doing *body*, wait for their finish
def race_threads(count, &body)
jobs = count.times.map do |j|
Thread.new do
Thread.current.abort_on_exception = true
body.call(j)
end
end
jobs.each(&:join)
end
# Repeat *count* times: { random sleep, *body* }, printing progress
def repeat_with_jitter(count, &body)
count.times do |i|
sleep 0.1 * rand
print "#{i} "
$stdout.flush
body.call
end
end
describe "thread safety" do
context "R/W: when the threads call methods with return values" do
it "it works with separate bus connections" do
race_threads(5) do |_j|
# use separate connections to avoid races
bus = DBus::ASessionBus.new
svc = bus.service("org.ruby.service")
obj = svc.object("/org/ruby/MyInstance")
obj.default_iface = "org.ruby.SampleInterface"
repeat_with_jitter(10) do
expect(obj.the_answer[0]).to eq(42)
end
end
puts
end
end
context "W/O: when the threads only send signals" do
it "it works with a shared bus connection" do
# shared connection
bus = DBus::SessionBus.instance
svc = bus.object_server
obj = TestSignalRace.new "/org/ruby/Foo"
svc.export obj
race_threads(5) do |_j|
repeat_with_jitter(10) do
obj.signal_without_arguments
end
end
svc.unexport(obj)
puts
end
end
end
|