Sha256: 6e1831f6849236bdaee7e2bd59d90f49324e3ad21ca4674d03afdf089866d64c

Contents?: true

Size: 1.75 KB

Versions: 7

Compression:

Stored size: 1.75 KB

Contents

require 'gir_ffi_test_helper'

describe GirFFI::Builders::ObjectBuilder do
  let(:obj_builder) do
    GirFFI::Builders::ObjectBuilder.new(
      get_introspection_data('Regress', 'TestObj'))
  end
  let(:sub_obj_builder) do
    GirFFI::Builders::ObjectBuilder.new(
      get_introspection_data('Regress', 'TestSubObj'))
  end

  describe '#find_signal' do
    it 'finds the signal "test" for TestObj' do
      sig = obj_builder.find_signal 'test'
      sig.name.must_equal 'test'
    end

    it 'finds the signal "test" for TestSubObj' do
      sig = sub_obj_builder.find_signal 'test'
      sig.name.must_equal 'test'
    end

    it 'finds the signal "changed" for Gtk::Entry' do
      builder = GirFFI::Builders::ObjectBuilder.new get_introspection_data('Gtk', 'Entry')
      sig = builder.find_signal 'changed'
      sig.name.must_equal 'changed'
    end

    it "raises an error for a signal that doesn't exist" do
      msg = nil
      begin
        obj_builder.find_signal 'foo'
      rescue RuntimeError => e
        msg = e.message
      end
      assert_match(/^Signal/, msg)
    end
  end

  describe '#find_property' do
    it 'finds a property specified on the class itself' do
      prop = obj_builder.find_property('int')
      prop.name.must_equal 'int'
    end

    it 'finds a property specified on the parent class' do
      prop = sub_obj_builder.find_property('int')
      prop.name.must_equal 'int'
    end

    it 'raises an error if the property is not found' do
      proc do
        sub_obj_builder.find_property('this-property-does-not-exist')
      end.must_raise RuntimeError
    end
  end

  describe '#object_class_struct' do
    it 'returns the class struct type' do
      obj_builder.object_class_struct.must_equal Regress::TestObjClass
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
gir_ffi-0.8.6 test/gir_ffi/builders/object_builder_test.rb
gir_ffi-0.8.5 test/gir_ffi/builders/object_builder_test.rb
gir_ffi-0.8.4 test/gir_ffi/builders/object_builder_test.rb
gir_ffi-0.8.3 test/gir_ffi/builders/object_builder_test.rb
gir_ffi-0.8.2 test/gir_ffi/builders/object_builder_test.rb
gir_ffi-0.8.1 test/gir_ffi/builders/object_builder_test.rb
gir_ffi-0.8.0 test/gir_ffi/builders/object_builder_test.rb