aboutsummaryrefslogtreecommitdiff
path: root/test/lib/link_checker.rb
diff options
context:
space:
mode:
authorzsloan2016-05-17 16:03:05 +0000
committerzsloan2016-05-17 16:03:05 +0000
commit0d590051ce073a169295382e5adac34cc803e5ac (patch)
tree76bea6f1f69288a498e9f13d20b638b942ab0a0c /test/lib/link_checker.rb
parentf6cee1731772c3482b0afd4c77472d69e747c655 (diff)
parent04afa563e6d53fe2a91ac2e6eb4af2f2fa5d5c3b (diff)
downloadgenenetwork2-0d590051ce073a169295382e5adac34cc803e5ac.tar.gz
Merge branch 'staging' of github.com:genenetwork/genenetwork2
Diffstat (limited to 'test/lib/link_checker.rb')
-rw-r--r--test/lib/link_checker.rb48
1 files changed, 48 insertions, 0 deletions
diff --git a/test/lib/link_checker.rb b/test/lib/link_checker.rb
new file mode 100644
index 00000000..fb201887
--- /dev/null
+++ b/test/lib/link_checker.rb
@@ -0,0 +1,48 @@
+
+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 !~ /static\/dbdoc\/Hippocampus/ and link.href !~ /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 !~ /static\/dbdoc\/Hippocampus/ and link.href !~ /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