File: source_location_spec.rb

package info (click to toggle)
ruby3.3 3.3.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 153,620 kB
  • sloc: ruby: 1,244,308; ansic: 836,474; yacc: 28,074; pascal: 6,748; sh: 3,913; python: 1,719; cpp: 1,158; makefile: 742; asm: 712; javascript: 394; lisp: 97; perl: 62; awk: 36; sed: 23; xml: 4
file content (91 lines) | stat: -rw-r--r-- 3,350 bytes parent folder | download | duplicates (4)
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
require_relative '../../spec_helper'
require_relative 'fixtures/source_location'

describe "Proc#source_location" do
  before :each do
    @proc = ProcSpecs::SourceLocation.my_proc
    @lambda = ProcSpecs::SourceLocation.my_lambda
    @proc_new = ProcSpecs::SourceLocation.my_proc_new
    @method = ProcSpecs::SourceLocation.my_method
  end

  it "returns an Array" do
    @proc.source_location.should be_an_instance_of(Array)
    @proc_new.source_location.should be_an_instance_of(Array)
    @lambda.source_location.should be_an_instance_of(Array)
    @method.source_location.should be_an_instance_of(Array)
  end

  it "sets the first value to the path of the file in which the proc was defined" do
    file = @proc.source_location.first
    file.should be_an_instance_of(String)
    file.should == File.realpath('fixtures/source_location.rb', __dir__)

    file = @proc_new.source_location.first
    file.should be_an_instance_of(String)
    file.should == File.realpath('fixtures/source_location.rb', __dir__)

    file = @lambda.source_location.first
    file.should be_an_instance_of(String)
    file.should == File.realpath('fixtures/source_location.rb', __dir__)

    file = @method.source_location.first
    file.should be_an_instance_of(String)
    file.should == File.realpath('fixtures/source_location.rb', __dir__)
  end

  it "sets the last value to an Integer representing the line on which the proc was defined" do
    line = @proc.source_location.last
    line.should be_an_instance_of(Integer)
    line.should == 4

    line = @proc_new.source_location.last
    line.should be_an_instance_of(Integer)
    line.should == 12

    line = @lambda.source_location.last
    line.should be_an_instance_of(Integer)
    line.should == 8

    line = @method.source_location.last
    line.should be_an_instance_of(Integer)
    line.should == 15
  end

  it "works even if the proc was created on the same line" do
    proc { true }.source_location.should == [__FILE__, __LINE__]
    Proc.new { true }.source_location.should == [__FILE__, __LINE__]
    -> { true }.source_location.should == [__FILE__, __LINE__]
  end

  it "returns the first line of a multi-line proc (i.e. the line containing 'proc do')" do
    ProcSpecs::SourceLocation.my_multiline_proc.source_location.last.should == 20
    ProcSpecs::SourceLocation.my_multiline_proc_new.source_location.last.should == 34
    ProcSpecs::SourceLocation.my_multiline_lambda.source_location.last.should == 27
  end

  it "returns the location of the proc's body; not necessarily the proc itself" do
    ProcSpecs::SourceLocation.my_detached_proc.source_location.last.should == 41
    ProcSpecs::SourceLocation.my_detached_proc_new.source_location.last.should == 51
    ProcSpecs::SourceLocation.my_detached_lambda.source_location.last.should == 46
  end

  it "returns the same value for a proc-ified method as the method reports" do
    method = ProcSpecs::SourceLocation.method(:my_proc)
    proc = method.to_proc

    method.source_location.should == proc.source_location
  end

  it "returns nil for a core method that has been proc-ified" do
    method = [].method(:<<)
    proc = method.to_proc

    proc.source_location.should == nil
  end

  it "works for eval with a given line" do
    proc = eval('-> {}', nil, "foo", 100)
    proc.source_location.should == ["foo", 100]
  end
end