Sha256: b03364c49c5bfca6b5c71cabc4d5c4fc59fa7162baf354daf0b9f1d708524936

Contents?: true

Size: 1.36 KB

Versions: 1

Compression:

Stored size: 1.36 KB

Contents

#!/usr/bin/env ruby
# Test the signal handlers
require "test/unit"
require "dbus"

def d(msg)
  puts "#{$$} #{msg}" if $DEBUG
end

class SignalHandlerTest < Test::Unit::TestCase
  def setup
    @session_bus = DBus::ASessionBus.new
    svc = @session_bus.service("org.ruby.service")
    @obj = svc.object("/org/ruby/MyInstance")
    @obj.introspect                  # necessary
    @obj.default_iface = "org.ruby.Loop"

    @loop = DBus::Main.new
    @loop << @session_bus
  end

  # testing for commit 017c83 (kkaempf)
  def test_overriding_a_handler
    counter = 0

    @obj.on_signal "LongTaskEnd" do
      d "+10"
      counter += 10
    end
    @obj.on_signal "LongTaskEnd" do
      d "+1"
      counter += 1
    end

    d "will begin"
    @obj.LongTaskBegin 3

    quitter = Thread.new do
      d "sleep before quit"
      # FIXME if we sleep for too long
      # the socket will be drained and we deadlock in a select.
      # It could be worked around by sending ourselves a Unix signal
      # (with a dummy handler) to interrupt the select
      sleep 1
      d "will quit"
      @loop.quit
    end
    @loop.run
    quitter.join

    assert_equal 1, counter
  end

  def test_too_many_rules
    100.times do
      @obj.on_signal "Whichever" do
        puts "not called"
      end
    end
  end

  def test_removing_a_nonexistent_rule
    @obj.on_signal "DoesNotExist"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-dbus-0.8.0 test/signal_test.rb