Skip to content

Commit

Permalink
Enclose in ruby_version_is blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Jun 7, 2024
1 parent 5f6a4ed commit d51883e
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 68 deletions.
76 changes: 37 additions & 39 deletions spec/ruby/optional/capi/data_spec.rb
Original file line number Diff line number Diff line change
@@ -1,55 1,53 @@
require_relative 'spec_helper'
ruby_version_is "3.4" do
return
end

load_extension("data")

describe "CApiAllocSpecs (a class with an alloc func defined)" do
it "calls the alloc func" do
@s = CApiAllocSpecs.new
@s.wrapped_data.should == 42 # not defined in initialize
end
end

describe "CApiWrappedStruct" do
before :each do
@s = CApiWrappedStructSpecs.new
end
ruby_version_is ""..."3.4" do
load_extension("data")

it "wraps with Data_Wrap_Struct and Data_Get_Struct returns data" do
a = @s.wrap_struct(1024)
@s.get_struct(a).should == 1024
describe "CApiAllocSpecs (a class with an alloc func defined)" do
it "calls the alloc func" do
@s = CApiAllocSpecs.new
@s.wrapped_data.should == 42 # not defined in initialize
end
end

describe "RDATA()" do
it "returns the struct data" do
a = @s.wrap_struct(1024)
@s.get_struct_rdata(a).should == 1024
describe "CApiWrappedStruct" do
before :each do
@s = CApiWrappedStructSpecs.new
end

it "allows changing the wrapped struct" do
it "wraps with Data_Wrap_Struct and Data_Get_Struct returns data" do
a = @s.wrap_struct(1024)
@s.change_struct(a, 100)
@s.get_struct(a).should == 100
@s.get_struct(a).should == 1024
end

it "raises a TypeError if the object does not wrap a struct" do
-> { @s.get_struct(Object.new) }.should raise_error(TypeError)
describe "RDATA()" do
it "returns the struct data" do
a = @s.wrap_struct(1024)
@s.get_struct_rdata(a).should == 1024
end

it "allows changing the wrapped struct" do
a = @s.wrap_struct(1024)
@s.change_struct(a, 100)
@s.get_struct(a).should == 100
end

it "raises a TypeError if the object does not wrap a struct" do
-> { @s.get_struct(Object.new) }.should raise_error(TypeError)
end
end
end

describe "rb_check_type" do
it "does not raise an exception when checking data objects" do
a = @s.wrap_struct(1024)
@s.rb_check_type(a, a).should == true
describe "rb_check_type" do
it "does not raise an exception when checking data objects" do
a = @s.wrap_struct(1024)
@s.rb_check_type(a, a).should == true
end
end
end

describe "DATA_PTR" do
it "returns the struct data" do
a = @s.wrap_struct(1024)
@s.get_struct_data_ptr(a).should == 1024
describe "DATA_PTR" do
it "returns the struct data" do
a = @s.wrap_struct(1024)
@s.get_struct_data_ptr(a).should == 1024
end
end
end
end
56 changes: 27 additions & 29 deletions spec/ruby/optional/capi/rbasic_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,37 14,35 @@
it_should_behave_like :rbasic
end

ruby_version_is "3.4" do
return
end

describe "RBasic support for RData" do
before :all do
@specs = CApiRBasicRDataSpecs.new
@wrapping = CApiWrappedStructSpecs.new
@data = -> { [@wrapping.wrap_struct(1024), @wrapping.wrap_struct(1025)] }
end
it_should_behave_like :rbasic
ruby_version_is ""..."3.4" do
describe "RBasic support for RData" do
before :all do
@specs = CApiRBasicRDataSpecs.new
@wrapping = CApiWrappedStructSpecs.new
@data = -> { [@wrapping.wrap_struct(1024), @wrapping.wrap_struct(1025)] }
end
it_should_behave_like :rbasic

it "supports user flags" do
obj, _ = @data.call
initial = @specs.get_flags(obj)
@specs.set_flags(obj, 1 << 14 | 1 << 16 | initial).should == 1 << 14 | 1 << 16 | initial
@specs.get_flags(obj).should == 1 << 14 | 1 << 16 | initial
@specs.set_flags(obj, initial).should == initial
end
it "supports user flags" do
obj, _ = @data.call
initial = @specs.get_flags(obj)
@specs.set_flags(obj, 1 << 14 | 1 << 16 | initial).should == 1 << 14 | 1 << 16 | initial
@specs.get_flags(obj).should == 1 << 14 | 1 << 16 | initial
@specs.set_flags(obj, initial).should == initial
end

it "supports copying the flags from one object over to the other" do
obj1, obj2 = @data.call
initial = @specs.get_flags(obj1)
@specs.get_flags(obj2).should == initial
@specs.set_flags(obj1, 1 << 14 | 1 << 16 | initial)
@specs.get_flags(obj1).should == 1 << 14 | 1 << 16 | initial
it "supports copying the flags from one object over to the other" do
obj1, obj2 = @data.call
initial = @specs.get_flags(obj1)
@specs.get_flags(obj2).should == initial
@specs.set_flags(obj1, 1 << 14 | 1 << 16 | initial)
@specs.get_flags(obj1).should == 1 << 14 | 1 << 16 | initial

@specs.copy_flags(obj2, obj1)
@specs.get_flags(obj2).should == 1 << 14 | 1 << 16 | initial
@specs.set_flags(obj1, initial)
@specs.copy_flags(obj2, obj1)
@specs.get_flags(obj2).should == initial
@specs.copy_flags(obj2, obj1)
@specs.get_flags(obj2).should == 1 << 14 | 1 << 16 | initial
@specs.set_flags(obj1, initial)
@specs.copy_flags(obj2, obj1)
@specs.get_flags(obj2).should == initial
end
end
end

0 comments on commit d51883e

Please sign in to comment.