HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.7.4/spec/ruby/core/thread/backtrace/location/absolute_path_spec.rb
require_relative '../../../../spec_helper'
require_relative 'fixtures/classes'

describe 'Thread::Backtrace::Location#absolute_path' do
  before :each do
    @frame = ThreadBacktraceLocationSpecs.locations[0]
  end

  it 'returns the absolute path of the call frame' do
    @frame.absolute_path.should == File.realpath(__FILE__)
  end

  context "when used in eval with a given filename" do
    it "returns filename" do
      code = "caller_locations(0)[0].absolute_path"
      eval(code, nil, "foo.rb").should == "foo.rb"
      eval(code, nil, "foo/bar.rb").should == "foo/bar.rb"
    end
  end

  context "when used in #method_added" do
    it "returns the user filename that defined the method" do
      path = fixture(__FILE__, "absolute_path_method_added.rb")
      load path
      locations = ScratchPad.recorded
      locations[0].absolute_path.should == path
      # Make sure it's from the class body, not from the file top-level
      locations[0].label.should include 'MethodAddedAbsolutePath'
    end
  end

  platform_is_not :windows do
    before :each do
      @file = fixture(__FILE__, "absolute_path.rb")
      @symlink = tmp("symlink.rb")
      File.symlink(@file, @symlink)
      ScratchPad.record []
    end

    after :each do
      rm_r @symlink
    end

    it "returns a canonical path without symlinks, even when __FILE__ does not" do
      realpath = File.realpath(@symlink)
      realpath.should_not == @symlink

      load @symlink
      ScratchPad.recorded.should == [@symlink, realpath]
    end

    it "returns a canonical path without symlinks, even when __FILE__ is removed" do
      realpath = File.realpath(@symlink)
      realpath.should_not == @symlink

      ScratchPad << -> { rm_r(@symlink) }
      load @symlink
      ScratchPad.recorded.should == [@symlink, realpath]
    end
  end
end