File: introspection_spec.rb

package info (click to toggle)
ruby-dbus 0.16.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 520 kB
  • sloc: ruby: 3,786; sh: 53; makefile: 8
file content (32 lines) | stat: -rwxr-xr-x 1,013 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/env rspec
require_relative "spec_helper"
require "dbus"

describe "IntrospectionTest" do
  before(:each) do
    session_bus = DBus::ASessionBus.new
    svc = session_bus.service("org.ruby.service")
    @obj = svc.object("/org/ruby/MyInstance")
    @obj.introspect
    @obj.default_iface = "org.ruby.SampleInterface"
  end

  it "tests wrong number of arguments" do
    expect { @obj.test_variant "too", "many", "args" }.to raise_error(ArgumentError)
    # not enough
    expect { @obj.test_variant }.to raise_error(ArgumentError)
  end

  it "tests shortcut methods" do
    @obj.default_iface = nil
    expect(@obj.bounce_variant("varargs")).to eq(["varargs"])
    # test for a duplicated method name
    expect { @obj.the_answer }.to raise_error(NoMethodError)
    # ensure istance methods of ProxyObject aren't overwritten by remote
    # methods
    expect { @obj.interfaces }.not_to raise_error

    @obj.default_iface = "org.ruby.SampleInterface"
    expect(@obj.the_answer).to eq([42])
  end
end