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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
require File.expand_path('../spec_helper', __FILE__)
require "stringio"
load_extension("globals")
describe "CApiGlobalSpecs" do
before :each do
@f = CApiGlobalSpecs.new
end
it "correctly gets global values" do
@f.sb_gv_get("$BLAH").should == nil
@f.sb_gv_get("$\\").should == nil
@f.sb_gv_get("\\").should == nil # rb_gv_get should change \ to $\
end
it "returns $~" do
'a' =~ /a/
@f.sb_gv_get("$~").to_a.should == ['a']
@f.sb_gv_get("~").to_a.should == ['a']
end
it "correctly sets global values" do
@f.sb_gv_get("$BLAH").should == nil
@f.sb_gv_set("$BLAH", 10)
@f.sb_gv_get("$BLAH").should == 10
end
it "lists all global variables" do
@f.rb_f_global_variables.should == Kernel.global_variables
end
not_supported_on :rubinius, :jruby do
it "rb_define_variable should define a new global variable" do
@f.rb_define_variable("my_gvar", "ABC")
$my_gvar.should == "ABC"
$my_gvar = "XYZ"
@f.sb_get_global_value.should == "XYZ"
end
end
it "rb_define_readonly_variable should define a new readonly global variable" do
@f.rb_define_readonly_variable("ro_gvar", 15)
$ro_gvar.should == 15
lambda { $ro_gvar = 10 }.should raise_error(NameError)
end
not_supported_on :rubinius, :jruby do
it "rb_define_hooked_variable should define a C hooked global variable" do
@f.rb_define_hooked_variable_2x("$hooked_gvar")
$hooked_gvar = 2
$hooked_gvar.should == 4
end
end
ruby_version_is ""..."1.9" do
describe "rb_set_kcode" do
before :each do
@kcode = $KCODE
end
after :each do
$KCODE = @kcode
end
it "sets the value of $KCODE" do
@f.rb_set_kcode("U")
$KCODE.should == "UTF8"
end
end
end
describe "rb_rs" do
before :each do
@dollar_slash = $/
end
after :each do
$/ = @dollar_slash
end
it "returns \\n by default" do
@f.rb_rs.should == "\n"
end
it "returns the value of $/" do
$/ = "foo"
@f.rb_rs.should == "foo"
end
end
describe "rb_default_rs" do
it "returns \\n" do
@f.rb_default_rs.should == "\n"
end
end
describe "rb_output_rs" do
before :each do
@dollar_backslash = $\
end
after :each do
$\ = @dollar_backslash
end
it "returns nil by default" do
@f.rb_output_rs.should be_nil
end
it "returns the value of $\\" do
$\ = "foo"
@f.rb_output_rs.should == "foo"
end
end
describe "rb_output_fs" do
before :each do
@dollar_comma = $,
end
after :each do
$, = @dollar_comma
end
it "returns nil by default" do
@f.rb_output_fs.should be_nil
end
it "returns the value of $\\" do
$, = "foo"
@f.rb_output_fs.should == "foo"
end
end
describe "rb_lastline_set" do
it "sets the value of $_" do
@f.rb_lastline_set("last line")
$_.should == "last line"
end
it "sets a Thread-local value" do
$_ = nil
running = false
thr = Thread.new do
@f.rb_lastline_set("last line")
$_.should == "last line"
running = true
end
Thread.pass until running
$_.should be_nil
thr.join
end
end
describe "rb_lastline_get" do
before do
@io = StringIO.new("last line")
end
it "gets the value of $_" do
@io.gets
@f.rb_lastline_get.should == "last line"
end
it "gets a Thread-local value" do
$_ = nil
running = false
thr = Thread.new do
@io.gets
@f.rb_lastline_get.should == "last line"
running = true
end
Thread.pass until running
$_.should be_nil
thr.join
end
end
end
|