This file is indexed.

/usr/lib/ruby/vendor_ruby/capybara/spec/session/has_selector_spec.rb is in ruby-capybara 2.2.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
Capybara::SpecHelper.spec '#has_selector?' do
  before do
    @session.visit('/with_html')
  end

  it "should be true if the given selector is on the page" do
    @session.should have_selector(:xpath, "//p")
    @session.should have_selector(:css, "p a#foo")
    @session.should have_selector("//p[contains(.,'est')]")
  end

  it "should be false if the given selector is not on the page" do
    @session.should_not have_selector(:xpath, "//abbr")
    @session.should_not have_selector(:css, "p a#doesnotexist")
    @session.should_not have_selector("//p[contains(.,'thisstringisnotonpage')]")
  end

  it "should use default selector" do
    Capybara.default_selector = :css
    @session.should_not have_selector("p a#doesnotexist")
    @session.should have_selector("p a#foo")
  end

  it "should respect scopes" do
    @session.within "//p[@id='first']" do
      @session.should have_selector(".//a[@id='foo']")
      @session.should_not have_selector(".//a[@id='red']")
    end
  end

  context "with count" do
    it "should be true if the content is on the page the given number of times" do
      @session.should have_selector("//p", :count => 3)
      @session.should have_selector("//p//a[@id='foo']", :count => 1)
      @session.should have_selector("//p[contains(.,'est')]", :count => 1)
    end

    it "should be false if the content is on the page the given number of times" do
      @session.should_not have_selector("//p", :count => 6)
      @session.should_not have_selector("//p//a[@id='foo']", :count => 2)
      @session.should_not have_selector("//p[contains(.,'est')]", :count => 5)
    end

    it "should be false if the content isn't on the page at all" do
      @session.should_not have_selector("//abbr", :count => 2)
      @session.should_not have_selector("//p//a[@id='doesnotexist']", :count => 1)
    end
  end

  context "with text" do
    it "should discard all matches where the given string is not contained" do
      @session.should have_selector("//p//a", :text => "Redirect", :count => 1)
      @session.should_not have_selector("//p", :text => "Doesnotexist")
    end

    it "should respect visibility setting" do
      @session.should have_selector(:id, "hidden-text", :text => "Some of this text is hidden!", :visible => false)
      @session.should_not have_selector(:id, "hidden-text", :text => "Some of this text is hidden!", :visible => true)
      Capybara.ignore_hidden_elements = false
      @session.should have_selector(:id, "hidden-text", :text => "Some of this text is hidden!", :visible => false)
      Capybara.visible_text_only = true
      @session.should_not have_selector(:id, "hidden-text", :text => "Some of this text is hidden!", :visible => true)
    end

    it "should discard all matches where the given regexp is not matched" do
      @session.should have_selector("//p//a", :text => /re[dab]i/i, :count => 1)
      @session.should_not have_selector("//p//a", :text => /Red$/)
    end
  end
end

Capybara::SpecHelper.spec '#has_no_selector?' do
  before do
    @session.visit('/with_html')
  end

  it "should be false if the given selector is on the page" do
    @session.should_not have_no_selector(:xpath, "//p")
    @session.should_not have_no_selector(:css, "p a#foo")
    @session.should_not have_no_selector("//p[contains(.,'est')]")
  end

  it "should be true if the given selector is not on the page" do
    @session.should have_no_selector(:xpath, "//abbr")
    @session.should have_no_selector(:css, "p a#doesnotexist")
    @session.should have_no_selector("//p[contains(.,'thisstringisnotonpage')]")
  end

  it "should use default selector" do
    Capybara.default_selector = :css
    @session.should have_no_selector("p a#doesnotexist")
    @session.should_not have_no_selector("p a#foo")
  end

  it "should respect scopes" do
    @session.within "//p[@id='first']" do
      @session.should_not have_no_selector(".//a[@id='foo']")
      @session.should have_no_selector(".//a[@id='red']")
    end
  end

  context "with count" do
    it "should be false if the content is on the page the given number of times" do
      @session.should_not have_no_selector("//p", :count => 3)
      @session.should_not have_no_selector("//p//a[@id='foo']", :count => 1)
      @session.should_not have_no_selector("//p[contains(.,'est')]", :count => 1)
    end

    it "should be true if the content is on the page the wrong number of times" do
      @session.should have_no_selector("//p", :count => 6)
      @session.should have_no_selector("//p//a[@id='foo']", :count => 2)
      @session.should have_no_selector("//p[contains(.,'est')]", :count => 5)
    end

    it "should be true if the content isn't on the page at all" do
      @session.should have_no_selector("//abbr", :count => 2)
      @session.should have_no_selector("//p//a[@id='doesnotexist']", :count => 1)
    end
  end

  context "with text" do
    it "should discard all matches where the given string is contained" do
      @session.should_not have_no_selector("//p//a", :text => "Redirect", :count => 1)
      @session.should have_no_selector("//p", :text => "Doesnotexist")
    end

    it "should discard all matches where the given regexp is matched" do
      @session.should_not have_no_selector("//p//a", :text => /re[dab]i/i, :count => 1)
      @session.should have_no_selector("//p//a", :text => /Red$/)
    end
  end
end