require File.expand_path('../spec_helper', __FILE__)
load_extension("struct")
describe "C-API Struct function" do
before :each do
@s = CApiStructSpecs.new
@struct = @s.rb_struct_define("CAPIStruct", "a", "b", "c")
end
describe "rb_struct_define" do
it "creates accessors for the struct members" do
instance = @struct.new
instance.a = 1
instance.b = 2
instance.c = 3
instance.a.should == 1
instance.b.should == 2
instance.c.should == 3
end
it "has a value of nil for the member of a newly created instance" do
Struct::CAPIStruct.new.b.should be_nil
end
it "creates a constant scoped under Struct for the named Struct" do
Struct.const_defined?(:CAPIStruct).should be_true
end
it "returns the member names as Symbols" do
@struct.members.sort.should == [:a, :b, :c]
end
end
end
describe "C-API Struct function" do
before :each do
@s = CApiStructSpecs.new
@struct = @s.rb_struct_define(nil, "a", "b", "c")
end
describe "rb_struct_define for an anonymous struct" do
it "creates accessors for the struct members" do
instance = @struct.new
instance.a = 1
instance.b = 2
instance.c = 3
instance.a.should == 1
instance.b.should == 2
instance.c.should == 3
end
it "returns the member names as Symbols" do
@struct.members.sort.should == [:a, :b, :c]
end
end
end
describe "C-API Struct function" do
before :each do
@s = CApiStructSpecs.new
@klass = Struct.new(:a, :b, :c)
@struct = @klass.new
end
describe "rb_struct_aref" do
it "returns the value of a struct member with a symbol key" do
@struct[:a] = 2
@s.rb_struct_aref(@struct, :a).should == 2
end
it "returns the value of a struct member with a string key" do
@struct[:b] = 2
@s.rb_struct_aref(@struct, "b").should == 2
end
it "returns the value of a struct member by index" do
@struct[:c] = 3
@s.rb_struct_aref(@struct, 2).should == 3
end
it "raises a NameError if the struct member does not exist" do
lambda { @s.rb_struct_aref(@struct, :d) }.should raise_error(NameError)
end
end
describe "rb_struct_getmember" do
it "returns the value of a struct member" do
@struct[:a] = 2
@s.rb_struct_aref(@struct, :a).should == 2
end
it "raises a NameError if the struct member does not exist" do
lambda { @s.rb_struct_aref(@struct, :d) }.should raise_error(NameError)
end
end
describe "rb_struct_aset" do
it "sets the value of a struct member with a symbol key" do
@s.rb_struct_aset(@struct, :a, 1)
@struct[:a].should == 1
end
it "sets the value of a struct member with a string key" do
@s.rb_struct_aset(@struct, "b", 1)
@struct[:b].should == 1
end
it "sets the value of a struct member by index" do
@s.rb_struct_aset(@struct, 2, 1)
@struct[:c].should == 1
end
it "raises a NameError if the struct member does not exist" do
lambda { @s.rb_struct_aset(@struct, :d, 1) }.should raise_error(NameError)
end
end
describe "rb_struct_new" do
it "creates a new instance of a struct" do
i = @s.rb_struct_new(@klass, 1, 2, 3)
i.a.should == 1
i.b.should == 2
i.c.should == 3
end
end
end