summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrautenberg <rautenberg@in-silico.ch>2013-12-05 13:50:29 +0100
committerrautenberg <rautenberg@in-silico.ch>2013-12-05 13:50:29 +0100
commit84bce3613d11fa34bf18d46148aaf1293eafdae6 (patch)
treef90cae7131b304c8744e6420fa2a84fc6312eb83
parentce65fa9a1dd28d7642cb0c957bbff91d9bf9bcb5 (diff)
initial tests for /investigation/sparql templates
-rw-r--r--test/toxbank-investigation-sparql.rb33
1 files changed, 30 insertions, 3 deletions
diff --git a/test/toxbank-investigation-sparql.rb b/test/toxbank-investigation-sparql.rb
index bf181a0..64a242c 100644
--- a/test/toxbank-investigation-sparql.rb
+++ b/test/toxbank-investigation-sparql.rb
@@ -67,30 +67,57 @@ class TBSPARQLTest < Minitest::Unit::TestCase
end
def test_investigation_and_characteristics
+ response = OpenTox::RestClientWrapper.get "#{$investigation[:uri]}/sparql/investigation_and_characteristics", {}, {:accept => "application/json", :subjectid => $pi[:subjectid]}
+ #puts response
+ assert_equal 200, response.code
end
def test_investigations_and_protocols
+ response = OpenTox::RestClientWrapper.get "#{$investigation[:uri]}/sparql/investigations_and_protocols", {}, {:accept => "application/json", :subjectid => $pi[:subjectid]}
+ #puts response
+ assert_equal 200, response.code
end
def test_investigations_and_factors
+ response = OpenTox::RestClientWrapper.get "#{$investigation[:uri]}/sparql/investigations_and_factors", {}, {:accept => "application/json", :subjectid => $pi[:subjectid]}
+ #puts response
+ assert_equal 200, response.code
end
def test_protocols_by_factors
+ response = OpenTox::RestClientWrapper.get "#{$investigation[:uri]}/sparql/protocols_by_factors", {:factorValues => "['']"}, {:accept => "application/json", :subjectid => $pi[:subjectid]}
+ #puts response
+ assert_equal 200, response.code
end
- def test_invetsigation_by_factors
+ def test_investigation_by_factors
+ response = OpenTox::RestClientWrapper.get "#{$investigation[:uri]}/sparql/investigation_by_factors", {:factorValues => "['']"}, {:accept => "application/json", :subjectid => $pi[:subjectid]}
+ #puts response
+ assert_equal 200, response.code
end
- def test_investigation_by_factorend
+ def test_investigation_by_factor
+ response = OpenTox::RestClientWrapper.get "#{$investigation[:uri]}/sparql/investigations_and_factors", {:value => "http://purl.obolibrary.org/chebi/CHEBI:28748"}, {:accept => "application/json", :subjectid => $pi[:subjectid]}
+ #puts response
+ assert_equal 200, response.code
end
- def test_investigation_by_characteristic_valueend
+ def test_investigation_by_characteristic_value
+ response = OpenTox::RestClientWrapper.get "#{$investigation[:uri]}/sparql/investigation_by_characteristic_value", {:value => ""}, {:accept => "application/json", :subjectid => $pi[:subjectid]}
+ #puts response
+ assert_equal 200, response.code
end
def test_investigation_by_characteristic_name
+ response = OpenTox::RestClientWrapper.get "#{$investigation[:uri]}/sparql/investigation_by_characteristic_name", {:value => ""}, {:accept => "application/json", :subjectid => $pi[:subjectid]}
+ #puts response
+ assert_equal 200, response.code
end
def test_investigation_by_characteristic
+ response = OpenTox::RestClientWrapper.get "#{$investigation[:uri]}/sparql/investigation_by_characteristic", {:value => ""}, {:accept => "application/json", :subjectid => $pi[:subjectid]}
+ #puts response
+ assert_equal 200, response.code
end