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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
|
describe :kernel_require_basic, :shared => true do
describe "(path resolution)" do
it "loads an absolute path" do
path = File.expand_path "load_fixture.rb", CODE_LOADING_DIR
@object.send(@method, path).should be_true
ScratchPad.recorded.should == [:loaded]
end
it "loads a non-canonical absolute path" do
dir, file = File.split(File.expand_path("load_fixture.rb", CODE_LOADING_DIR))
path = File.join dir, ["..", "code"], file
@object.send(@method, path).should be_true
ScratchPad.recorded.should == [:loaded]
end
it "loads a file defining many methods" do
path = File.expand_path "methods_fixture.rb", CODE_LOADING_DIR
@object.send(@method, path).should be_true
ScratchPad.recorded.should == [:loaded]
end
it "raises a LoadError if the file does not exist" do
path = File.expand_path "nonexistent.rb", CODE_LOADING_DIR
File.exists?(path).should be_false
lambda { @object.send(@method, path) }.should raise_error(LoadError)
ScratchPad.recorded.should == []
end
# Can't make a file unreadable on these platforms
platform_is_not :os => [:windows, :cygwin] do
describe "with an unreadable file" do
before :each do
@path = tmp("unreadable_file.rb")
touch @path
File.chmod 0000, @path
end
after :each do
File.chmod 0666, @path
rm_r @path
end
it "raises a LoadError" do
File.exists?(@path).should be_true
lambda { @object.send(@method, @path) }.should raise_error(LoadError)
end
end
end
it "calls #to_str on non-String objects" do
path = File.expand_path "load_fixture.rb", CODE_LOADING_DIR
name = mock("load_fixture.rb mock")
name.should_receive(:to_str).and_return(path)
@object.send(@method, name).should be_true
ScratchPad.recorded.should == [:loaded]
end
it "raises a TypeError if passed nil" do
lambda { @object.send(@method, nil) }.should raise_error(TypeError)
end
it "raises a TypeError if passed a Fixnum" do
lambda { @object.send(@method, 42) }.should raise_error(TypeError)
end
it "raises a TypeError if passed an Array" do
lambda { @object.send(@method, []) }.should raise_error(TypeError)
end
it "raises a TypeError if passed an object that does not provide #to_str" do
lambda { @object.send(@method, mock("not a filename")) }.should raise_error(TypeError)
end
it "raises a TypeError if passed an object that has #to_s but not #to_str" do
name = mock("load_fixture.rb mock")
name.stub!(:to_s).and_return("load_fixture.rb")
$LOAD_PATH << "."
Dir.chdir CODE_LOADING_DIR do
lambda { @object.send(@method, name) }.should raise_error(TypeError)
end
end
it "raises a TypeError if #to_str does not return a String" do
name = mock("#to_str returns nil")
name.should_receive(:to_str).at_least(1).times.and_return(nil)
lambda { @object.send(@method, name) }.should raise_error(TypeError)
end
ruby_version_is "".."1.9" do
it "raises a TypeError if passed an object that has #to_path but not #to_str" do
name = mock("load_fixture.rb mock")
name.stub!(:to_path).and_return("load_fixture.rb")
$LOAD_PATH << "."
Dir.chdir CODE_LOADING_DIR do
lambda { @object.send(@method, name) }.should raise_error(TypeError)
end
end
end
ruby_version_is "1.9" do
it "calls #to_path on non-String objects" do
name = mock("load_fixture.rb mock")
name.stub!(:to_path).and_return("load_fixture.rb")
$LOAD_PATH << "."
Dir.chdir CODE_LOADING_DIR do
@object.send(@method, name).should be_true
end
ScratchPad.recorded.should == [:loaded]
end
it "calls #to_path on a String" do
path = File.expand_path "load_fixture.rb", CODE_LOADING_DIR
str = mock("load_fixture.rb mock")
str.should_receive(:to_path).and_return(path)
@object.send(@method, str).should be_true
ScratchPad.recorded.should == [:loaded]
end
it "calls #to_str on non-String objects returned by #to_path" do
path = File.expand_path "load_fixture.rb", CODE_LOADING_DIR
name = mock("load_fixture.rb mock")
to_path = mock("load_fixture_rb #to_path mock")
name.should_receive(:to_path).and_return(to_path)
to_path.should_receive(:to_str).and_return(path)
@object.send(@method, name).should be_true
ScratchPad.recorded.should == [:loaded]
end
end
ruby_bug "http://redmine.ruby-lang.org/issues/show/2578", "1.8" do
it "loads a ./ relative path from the current working directory with empty $LOAD_PATH" do
Dir.chdir CODE_LOADING_DIR do
@object.send(@method, "./load_fixture.rb").should be_true
end
ScratchPad.recorded.should == [:loaded]
end
it "loads a ../ relative path from the current working directory with empty $LOAD_PATH" do
Dir.chdir CODE_LOADING_DIR do
@object.send(@method, "../code/load_fixture.rb").should be_true
end
ScratchPad.recorded.should == [:loaded]
end
end
it "loads a ./ relative path from the current working directory with non-empty $LOAD_PATH" do
$LOAD_PATH << "an_irrelevant_dir"
Dir.chdir CODE_LOADING_DIR do
@object.send(@method, "./load_fixture.rb").should be_true
end
ScratchPad.recorded.should == [:loaded]
end
it "loads a ../ relative path from the current working directory with non-empty $LOAD_PATH" do
$LOAD_PATH << "an_irrelevant_dir"
Dir.chdir CODE_LOADING_DIR do
@object.send(@method, "../code/load_fixture.rb").should be_true
end
ScratchPad.recorded.should == [:loaded]
end
it "loads a non-canonical path from the current working directory with non-empty $LOAD_PATH" do
$LOAD_PATH << "an_irrelevant_dir"
Dir.chdir CODE_LOADING_DIR do
@object.send(@method, "../code/../code/load_fixture.rb").should be_true
end
ScratchPad.recorded.should == [:loaded]
end
it "resolves a filename against $LOAD_PATH entries" do
$LOAD_PATH << CODE_LOADING_DIR
@object.send(@method, "load_fixture.rb").should be_true
ScratchPad.recorded.should == [:loaded]
end
it "does not resolve a ./ relative path against $LOAD_PATH entries" do
$LOAD_PATH << CODE_LOADING_DIR
lambda do
@object.send(@method, "./load_fixture.rb")
end.should raise_error(LoadError)
ScratchPad.recorded.should == []
end
it "does not resolve a ../ relative path against $LOAD_PATH entries" do
$LOAD_PATH << CODE_LOADING_DIR
lambda do
@object.send(@method, "../code/load_fixture.rb")
end.should raise_error(LoadError)
ScratchPad.recorded.should == []
end
it "resolves a non-canonical path against $LOAD_PATH entries" do
$LOAD_PATH << File.dirname(CODE_LOADING_DIR)
@object.send(@method, "code/../code/load_fixture.rb").should be_true
ScratchPad.recorded.should == [:loaded]
end
it "loads a path with duplicate path separators" do
$LOAD_PATH << "."
sep = File::Separator + File::Separator
path = ["..", "code", "load_fixture.rb"].join(sep)
Dir.chdir CODE_LOADING_DIR do
@object.send(@method, path).should be_true
end
ScratchPad.recorded.should == [:loaded]
end
end
end
describe :kernel_require, :shared => true do
describe "(path resolution)" do
ruby_version_is "1.9" do
# For reference see [ruby-core:24155] in which matz confirms this feature is
# intentional for security reasons.
it "does not load a bare filename unless the current working directory is in $LOAD_PATH" do
Dir.chdir CODE_LOADING_DIR do
lambda { @object.require("load_fixture.rb") }.should raise_error(LoadError)
ScratchPad.recorded.should == []
end
end
it "does not load a relative path unless the current working directory is in $LOAD_PATH" do
Dir.chdir File.dirname(CODE_LOADING_DIR) do
lambda do
@object.require("code/load_fixture.rb")
end.should raise_error(LoadError)
ScratchPad.recorded.should == []
end
end
end
it "loads a file that recursively requires itself" do
path = File.expand_path "recursive_require_fixture.rb", CODE_LOADING_DIR
@object.require(path).should be_true
ScratchPad.recorded.should == [:loaded]
end
end
describe "(file extensions)" do
it "loads a .rb extensioned file when passed a non-extensioned path" do
path = File.expand_path "load_fixture", CODE_LOADING_DIR
File.exists?(path).should be_true
@object.require(path).should be_true
ScratchPad.recorded.should == [:loaded]
end
it "loads a .rb extensioned file when a C-extension file of the same name is loaded" do
$LOADED_FEATURES << File.expand_path("load_fixture.bundle", CODE_LOADING_DIR)
$LOADED_FEATURES << File.expand_path("load_fixture.dylib", CODE_LOADING_DIR)
$LOADED_FEATURES << File.expand_path("load_fixture.so", CODE_LOADING_DIR)
$LOADED_FEATURES << File.expand_path("load_fixture.dll", CODE_LOADING_DIR)
path = File.expand_path "load_fixture", CODE_LOADING_DIR
@object.require(path).should be_true
ScratchPad.recorded.should == [:loaded]
end
it "does not load a C-extension file if a .rb extensioned file is already loaded" do
$LOADED_FEATURES << File.expand_path("load_fixture.rb", CODE_LOADING_DIR)
path = File.expand_path "load_fixture", CODE_LOADING_DIR
@object.require(path).should be_false
ScratchPad.recorded.should == []
end
it "loads a .rb extensioned file when passed a non-.rb extensioned path" do
path = File.expand_path "load_fixture.ext", CODE_LOADING_DIR
File.exists?(path).should be_true
@object.require(path).should be_true
ScratchPad.recorded.should == [:loaded]
end
it "loads a .rb extensioned file when a complex-extensioned C-extension file of the same name is loaded" do
$LOADED_FEATURES << File.expand_path("load_fixture.ext.bundle", CODE_LOADING_DIR)
$LOADED_FEATURES << File.expand_path("load_fixture.ext.dylib", CODE_LOADING_DIR)
$LOADED_FEATURES << File.expand_path("load_fixture.ext.so", CODE_LOADING_DIR)
$LOADED_FEATURES << File.expand_path("load_fixture.ext.dll", CODE_LOADING_DIR)
path = File.expand_path "load_fixture.ext", CODE_LOADING_DIR
@object.require(path).should be_true
ScratchPad.recorded.should == [:loaded]
end
it "does not load a C-extension file if a complex-extensioned .rb file is already loaded" do
$LOADED_FEATURES << File.expand_path("load_fixture.ext.rb", CODE_LOADING_DIR)
path = File.expand_path "load_fixture.ext", CODE_LOADING_DIR
@object.require(path).should be_false
ScratchPad.recorded.should == []
end
end
describe "($LOAD_FEATURES)" do
before :each do
@path = File.expand_path("load_fixture.rb", CODE_LOADING_DIR)
end
it "stores an absolute path" do
@object.require(@path).should be_true
$LOADED_FEATURES.should == [@path]
end
it "does not store the path if the load fails" do
$LOAD_PATH << CODE_LOADING_DIR
lambda { @object.require("raise_fixture.rb") }.should raise_error(RuntimeError)
$LOADED_FEATURES.should == []
end
it "does not load an absolute path that is already stored" do
$LOADED_FEATURES << @path
@object.require(@path).should be_false
ScratchPad.recorded.should == []
end
it "does not load a ./ relative path that is already stored" do
$LOADED_FEATURES << "./load_fixture.rb"
Dir.chdir CODE_LOADING_DIR do
@object.require("./load_fixture.rb").should be_false
end
ScratchPad.recorded.should == []
end
it "does not load a ../ relative path that is already stored" do
$LOADED_FEATURES << "../load_fixture.rb"
Dir.chdir CODE_LOADING_DIR do
@object.require("../load_fixture.rb").should be_false
end
ScratchPad.recorded.should == []
end
it "does not load a non-canonical path that is already stored" do
$LOADED_FEATURES << "code/../code/load_fixture.rb"
$LOAD_PATH << File.dirname(CODE_LOADING_DIR)
@object.require("code/../code/load_fixture.rb").should be_false
ScratchPad.recorded.should == []
end
it "respects being replaced with a new array" do
prev = $LOADED_FEATURES.dup
@object.require(@path).should be_true
$LOADED_FEATURES.should == [@path]
$LOADED_FEATURES.replace(prev)
@object.require(@path).should be_true
$LOADED_FEATURES.should == [@path]
end
it "does not load twice the same file with and without extension" do
$LOAD_PATH << CODE_LOADING_DIR
@object.require("load_fixture.rb").should be_true
@object.require("load_fixture").should be_false
end
describe "when a non-extensioned file is in $LOADED_FEATURES" do
before :each do
$LOADED_FEATURES << "load_fixture"
end
it "loads a .rb extensioned file when a non extensioned file is in $LOADED_FEATURES" do
$LOAD_PATH << CODE_LOADING_DIR
@object.require("load_fixture").should be_true
ScratchPad.recorded.should == [:loaded]
end
it "loads a .rb extensioned file from a subdirectory" do
$LOAD_PATH << File.dirname(CODE_LOADING_DIR)
@object.require("code/load_fixture").should be_true
ScratchPad.recorded.should == [:loaded]
end
it "returns false if the file is not found" do
Dir.chdir File.dirname(CODE_LOADING_DIR) do
@object.require("load_fixture").should be_false
ScratchPad.recorded.should == []
end
end
it "returns false when passed a path and the file is not found" do
$LOADED_FEATURES << "code/load_fixture"
Dir.chdir CODE_LOADING_DIR do
@object.require("code/load_fixture").should be_false
ScratchPad.recorded.should == []
end
end
end
ruby_version_is "".."1.9" do
it "stores ./ relative paths as passed in" do
$LOAD_PATH << "an_irrelevant_dir"
Dir.chdir CODE_LOADING_DIR do
@object.require("./load_fixture.rb").should be_true
end
$LOADED_FEATURES.should == ["./load_fixture.rb"]
end
it "stores ../ relative paths as passed in" do
$LOAD_PATH << "an_irrelevant_dir"
Dir.chdir CODE_LOADING_DIR do
@object.require("../code/load_fixture.rb").should be_true
end
$LOADED_FEATURES.should == ["../code/load_fixture.rb"]
end
it "does not collapse duplicate path separators" do
$LOAD_PATH << "."
sep = File::Separator + File::Separator
path = ["..", "code", "load_fixture.rb"].join(sep)
Dir.chdir CODE_LOADING_DIR do
@object.require(path).should be_true
end
$LOADED_FEATURES.should == [path]
end
it "stores the resolved filename" do
$LOAD_PATH << CODE_LOADING_DIR
@object.require("load_fixture.rb").should be_true
$LOADED_FEATURES.should == ["load_fixture.rb"]
end
it "adds the suffix of the resolved filename" do
$LOAD_PATH << CODE_LOADING_DIR
@object.require("load_fixture").should be_true
$LOADED_FEATURES.should == ["load_fixture.rb"]
end
it "loads a non-canonical path for a file already loaded" do
$LOADED_FEATURES << @path
$LOAD_PATH << File.dirname(CODE_LOADING_DIR)
@object.require("code/../code/load_fixture.rb").should be_true
ScratchPad.recorded.should == [:loaded]
end
it "loads a ./ relative path for a file already loaded" do
$LOADED_FEATURES << @path
$LOAD_PATH << "an_irrelevant_dir"
Dir.chdir CODE_LOADING_DIR do
@object.require("./load_fixture.rb").should be_true
end
ScratchPad.recorded.should == [:loaded]
end
it "loads a ../ relative path for a file already loaded" do
$LOADED_FEATURES << @path
$LOAD_PATH << "an_irrelevant_dir"
Dir.chdir CODE_LOADING_DIR do
@object.require("../code/load_fixture.rb").should be_true
end
ScratchPad.recorded.should == [:loaded]
end
end
ruby_version_is "1.9" do
it "stores ../ relative paths as absolute paths" do
Dir.chdir CODE_LOADING_DIR do
@object.require("../code/load_fixture.rb").should be_true
end
$LOADED_FEATURES.should == [@path]
end
it "stores ./ relative paths as absolute paths" do
Dir.chdir CODE_LOADING_DIR do
@object.require("./load_fixture.rb").should be_true
end
$LOADED_FEATURES.should == [@path]
end
it "collapses duplicate path separators" do
$LOAD_PATH << "."
sep = File::Separator + File::Separator
path = ["..", "code", "load_fixture.rb"].join(sep)
Dir.chdir CODE_LOADING_DIR do
@object.require(path).should be_true
end
$LOADED_FEATURES.should == [@path]
end
it "canonicalizes non-unique absolute paths" do
dir, file = File.split(File.expand_path("load_fixture.rb", CODE_LOADING_DIR))
path = File.join dir, ["..", "code"], file
@object.require(path).should be_true
$LOADED_FEATURES.should == [@path]
end
it "adds the suffix of the resolved filename" do
$LOAD_PATH << CODE_LOADING_DIR
@object.require("load_fixture").should be_true
$LOADED_FEATURES.should == [@path]
end
it "does not load a non-canonical path for a file already loaded" do
$LOADED_FEATURES << @path
$LOAD_PATH << File.dirname(CODE_LOADING_DIR)
@object.require("code/../code/load_fixture.rb").should be_false
ScratchPad.recorded.should == []
end
it "does not load a ./ relative path for a file already loaded" do
$LOADED_FEATURES << @path
$LOAD_PATH << "an_irrelevant_dir"
Dir.chdir CODE_LOADING_DIR do
@object.require("./load_fixture.rb").should be_false
end
ScratchPad.recorded.should == []
end
it "does not load a ../ relative path for a file already loaded" do
$LOADED_FEATURES << @path
$LOAD_PATH << "an_irrelevant_dir"
Dir.chdir CODE_LOADING_DIR do
@object.require("../code/load_fixture.rb").should be_false
end
ScratchPad.recorded.should == []
end
end
end
describe "(shell expansion)" do
before :all do
@env_home = ENV["HOME"]
ENV["HOME"] = CODE_LOADING_DIR
end
after :all do
ENV["HOME"] = @env_home
end
ruby_bug "#3171", "1.8.7.249" do
it "performs tilde expansion on a .rb file before storing paths in $LOADED_FEATURES" do
path = File.expand_path("load_fixture.rb", CODE_LOADING_DIR)
@object.require("~/load_fixture.rb").should be_true
$LOADED_FEATURES.should == [path]
end
it "performs tilde expansion on a non-extensioned file before storing paths in $LOADED_FEATURES" do
path = File.expand_path("load_fixture.rb", CODE_LOADING_DIR)
@object.require("~/load_fixture").should be_true
$LOADED_FEATURES.should == [path]
end
end
end
with_feature :require_19 do
describe "(concurrently)" do
before :each do
ScratchPad.record []
@path = File.expand_path "concurrent.rb", CODE_LOADING_DIR
@path2 = File.expand_path "concurrent2.rb", CODE_LOADING_DIR
@path3 = File.expand_path "concurrent3.rb", CODE_LOADING_DIR
end
after :each do
ScratchPad.clear
$LOADED_FEATURES.delete @path
$LOADED_FEATURES.delete @path2
$LOADED_FEATURES.delete @path3
end
# Quick note about these specs:
#
# You'll notice in concurrent.rb that there are some sleep calls. This seems
# like a bad form for specs testing concurrency since using sleep to force
# thread progression is a mega hack, there is currently no other way to spec
# the behavior. Here is why:
#
# The behavior we're spec'ing requires that t2 enter #require, see t1 is
# loading @path, grab a lock, and wait on it.
#
# We do make sure that t2 starts the require once t1 is in the middle
# of concurrent.rb, but we then need to get t2 to get far enough into #require
# to see t1's lock and try to lock it.
#
# Because #require is completely opapque, there is no other way to hold t1 until
# t2 has progress that far other than just having t1 sleep for a little bit
# and hope that t2 has progressed and is now holding the lock for @path.
#
# Sucks? Yep. But we haven't come up with a better solution.
#
it "blocks a second thread from returning while the 1st is still requiring" do
start = false
fin = false
t1_res = nil
t2_res = nil
t1 = Thread.new do
t1_res = @object.require(@path)
Thread.pass until fin
ScratchPad.recorded << :t1_post
end
t2 = Thread.new do
Thread.pass until t1 && t1[:in_concurrent_rb]
begin
t2_res = @object.require(@path)
ScratchPad.recorded << :t2_post
ensure
fin = true
end
end
t1.join
t2.join
t1_res.should be_true
t2_res.should be_false
ScratchPad.recorded.should == [:con_pre, :con_post, :t2_post, :t1_post]
end
it "blocks based on the path" do
start = false
t1 = Thread.new do
Thread.pass until start
@object.require(@path2).should be_true
ScratchPad.recorded << :t1_post
end
t2 = Thread.new do
start = true
@object.require(@path3).should be_true
ScratchPad.recorded << :t2_post
end
t1.join
t2.join
ScratchPad.recorded.should == [:con3_post, :t2_post, :con2_post, :t1_post]
end
it "allows a 2nd require if the 1st raised an exception" do
start = false
fin = false
t2_res = nil
t1 = Thread.new do
Thread.current[:con_raise] = true
lambda {
@object.require(@path)
}.should raise_error(RuntimeError)
Thread.pass until fin
ScratchPad.recorded << :t1_post
end
t2 = Thread.new do
Thread.pass until t1 && t1[:in_concurrent_rb]
begin
t2_res = @object.require(@path)
ScratchPad.recorded << :t2_post
ensure
fin = true
end
end
t1.join
t2.join
t2_res.should be_true
ScratchPad.recorded.should == [:con_pre, :con_pre, :con_post, :t2_post, :t1_post]
end
ruby_bug "redmine #5754", "1.9.3" do
it "blocks a 3rd require if the 1st raises an exception and the 2nd is still running" do
start = false
fin = false
t1_res = nil
t2_res = nil
t1_running = false
t2_running = false
t2 = nil
t1 = Thread.new do
Thread.current[:con_raise] = true
t1_running = true
lambda {
@object.require(@path)
}.should raise_error(RuntimeError)
# This hits the bug. Because MRI removes it's internal lock from a table
# when the exception is raised, this #require doesn't see that t2 is
# in the middle of requiring the file, so this #require runs when it should
# not.
#
# Sometimes this raises a ThreadError also, but I'm not sure why.
Thread.pass until t2_running && t2[:in_concurrent_rb] == true
t1_res = @object.require(@path)
Thread.pass until fin
ScratchPad.recorded << :t1_post
end
t2 = Thread.new do
t2_running = true
Thread.pass until t1_running && t1[:in_concurrent_rb] == true
begin
t2_res = @object.require(@path)
ScratchPad.recorded << :t2_post
ensure
fin = true
end
end
t1.join
t2.join
t1_res.should be_false
t2_res.should be_true
ScratchPad.recorded.should == [:con_pre, :con_pre, :con_post, :t2_post, :t1_post]
end
end
end
end
end
|