summaryrefslogtreecommitdiff
path: root/toxcreate.rb
blob: 14e61c4cd5460664fc141f5f4900af4d0c9f65c1 (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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
require 'rubygems'
require "rubygems"
require 'opentox-ruby'
require 'test/unit'
require 'akephalos'
require 'capybara/dsl'
gem 'capybara-envjs'
require 'capybara/envjs' # gem install capybara-envjs
# requires firefox 3.6 for akephalos and selenium !!!
Capybara.default_driver = :akephalos # use this without visual inspection
#Capybara.default_driver = :selenium # use this for visual inspection
Capybara.run_server = false
Capybara.default_wait_time = 1000
Capybara.javascript_driver = :envjs

class ToxCreateTest < Test::Unit::TestCase
  include Capybara

  def setup
    @user = "guest"
    @password = "guest"
  end
=begin # works only with AA enabled  
  def test_01_login
    visit File.join(CONFIG[:services]["opentox-toxcreate"], "login")
    assert page.has_content?('User: guest')
    fill_in('Username', :with => @user)
    fill_in('Password', :with => @password + "nonsense")
    click_button('Login')
    assert page.has_content? "Login failed. Please try again."
    fill_in('Username', :with => @user)
    fill_in('Password', :with => @password)
    click_button('Login')
    assert page.has_content? "Welcome #{@user}!"
    visit File.join(CONFIG[:services]["opentox-toxcreate"], "login")
    assert page.has_content?('User: guest')
    fill_in('Username', :with => @user)
    fill_in('Password', :with => @password + "nonsense")
    click_button('Login')
    assert page.has_content? "Login failed. Please try again."
    click_button('Login as guest')
    assert page.has_content? "Welcome #{@user}!"
  end
=end
  def test_02_toxcreate # works only with akephalos
    # create a model and check status is complete
    Capybara.current_driver = :akephalos 
    visit File.join(CONFIG[:services]["opentox-toxcreate"], "create")
    assert page.has_content?('Upload training data')
    attach_file('file', "./data/hamster_carcinogenicity.csv")
    assert page.has_button?('endpoint_list_button')
    click_on "Select endpoint"
    choose('EcotoxicEffects')
    choose('Acute_toxicity_to_fish_lethality')
    click_on "Create model"
    assert first("h2").has_content? "hamster_carcinogenicity"
    time = 0
    while (first(".model_status").has_no_content?("Completed") and first(".model_status").has_no_content?("Error")) do
      sleep 5
      time +=5
    end
    assert first(".model_status").has_content?("Completed")
    sleep 5
  end

  def test_03_predict
  # predict with the model from test_02
    Capybara.register_driver :akephalos do |app|
      Capybara::Driver::Akephalos.new(app, :validate_scripts => false)
    visit File.join(CONFIG[:services]["opentox-toxcreate"], "predict")
    fill_in 'identifier', :with => 'NNc1ccccc1'
    find(:xpath, '//form/fieldset[2]/input[contains(@name, "select")]').click
    click_button("Predict")
    click_button("Details")
    page.has_content? "false"
    page.has_content? "0.294"   
    page.has_content? "0.875"
    page.has_content? "next"
    end
  end

  def test_04_delete_model
  # delete the model from test_02
    visit File.join(CONFIG[:services]["opentox-toxcreate"], "models")
    assert (first(".model_status").has_content?("Completed") or first(".model_status").has_content?("Error"))
    click_on "delete"
    page.evaluate_script('window.confirm = function() { return true; }')
    sleep 5
  end
=begin
  def test_09_multi_cell_call
    #login(@browser, @user, @password)
    #Capybara.current_driver = :akephalos 
    visit File.join(CONFIG[:services]["opentox-toxcreate"], "create")
    assert page.has_content?('Upload training data')
    attach_file('file', "./data/multi_cell_call.csv")
    click_on "Create model"
  end

  def test_10_kazius
    #Capybara.current_driver = :akephalos 
    #login(@browser, @user, @password)
    visit File.join(CONFIG[:services]["opentox-toxcreate"], "create")
    assert page.has_content?('Upload training data')
    attach_file('file', "./data/kazius.csv")
    # wait until validation is completed
    # check results (links, reports, results)
    puts @browser.url
  end
 
  def test_11_parallel_models
    5.times do
      visit File.join(CONFIG[:services]["opentox-toxcreate"], "create")
      assert page.has_content?('Upload training data')
      attach_file('file', "./data/hamster_carcinogenicity.csv")
      click_on "Create model"
    end
    while (first(".model_status").has_no_content?("Completed") and first(".model_status").has_no_content?("Error")) do
      sleep 1
    end
    assert first(".model_status").has_content?("Completed")
  end
 
  def test_12_delete_parallel_models  
    5.times do
      visit File.join(CONFIG[:services]["opentox-toxcreate"], "models")
      click_on "delete"
      page.evaluate_script('window.confirm = function() { return true; }')
      #sleep 5
    end
    sleep 5
    visit File.join(CONFIG[:services]["opentox-toxcreate"], "models")
    while page.has_no_content? "There are currently no models" do
      sleep 1
    end
    assert page.has_content? "There are currently no models"
  end
=begin
  # raises capybara errors, but gui works from browser
  def test_12_toxcreate_sdf # works only with akephalos
    Capybara.current_driver = :akephalos 
    #login(@browser, @user, @password)
    visit CONFIG[:services]["opentox-toxcreate"]
    assert page.has_content?('Upload training data')
    attach_file('file', "./data/hamster_carcinogenicity.sdf")
    click_on "Create model"
    assert first("h2").has_content? "hamster_carcinogenicity"
    time = 0
    while first(".model_status").has_no_content?("Completed") do
      sleep 5
      time +=5
    end
    assert first(".model_status").has_content?("Completed")
  end
=end

end