aboutsummaryrefslogtreecommitdiff
path: root/test/lib/link_checker.rb
blob: 36cb36c89045b48a1d2437c93e44da076616e1cd (plain)
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
SKIP = "mailto:"

class LinkChecker
end

describe LinkChecker do
  before do
    @agent = Mechanize.new
    @agent.agent.http.ca_file = '/etc/ssl/certs/ca-certificates.crt'
  end

  it "Get to front page" do
      page = @agent.get($host)
      page.links.each do |link|
        puts link.href
        if link.href !~ /#{SKIP}/ # /static\/dbdoc\/Hippocampus/ and link.href !~ /mailto:|glossary.html|sample_r|grits.eecs.utk.edu|correlationAnnotation.html/
           # Fetch link, program will crash with exception if link is broken
           linkpage = @agent.get(link.href)
          puts "Link to #{link.href} is valid, response code #{linkpage.code}"
        end
      end

    end

  describe LinkChecker do
    it "Get to trait page" do
      page = @agent.get($host+'/show_trait?trait_id=1435395_s_at&dataset=HC_M2_0606_P')
      # p page

      # Get to trait page for 1435395_s_at
      # form2 = show_trait_page.forms_with("trait_page")[0]
      # form2.fields[30].name.must_equal  "variance:C57BL/6J"
      # form2.fields[30].value.must_equal "15.287"

      # Test every link on the page to check if it's broken or not
      page.links.each do |link|
        puts link.href
        if link.href !~ /#{SKIP}/ # /static\/dbdoc\/Hippocampus/ and link.href !~ /mailto:|glossary.html|sample_r|grits.eecs.utk.edu|correlationAnnotation.html/
           # Fetch link, program will crash with exception if link is broken
           linkpage = @agent.get(link.href)
          puts "Link to #{link.href} is valid, response code #{linkpage.code}"
        end
      end

    end

  end

end