1 require 'integration_helper'
3 class WebsocketTest < ActionDispatch::IntegrationTest
5 need_selenium "to make websockets work"
9 visit(page_with_token("admin", "/websockets"))
10 fill_in("websocket-message-content", :with => "Stuff")
12 assert_text '"status":400'
15 test "test live logging" do
16 visit(page_with_token("admin", "/pipeline_instances/zzzzz-d1hrv-9fm8l10i9z2kqc6"))
18 assert_no_text '123 hello'
20 api = ArvadosApiClient.new
22 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
23 api.api("logs", "", {log: {
24 object_uuid: "zzzzz-d1hrv-9fm8l10i9z2kqc6",
26 properties: {"text" => "123 hello"}}})
27 assert_text '123 hello'
28 Thread.current[:arvados_api_token] = nil
32 [["pipeline_instances", api_fixture("pipeline_instances")['pipeline_with_newer_template']['uuid']],
33 ["jobs", api_fixture("jobs")['running']['uuid']]].each do |c|
34 test "test live logging scrolling #{c[0]}" do
39 visit(page_with_token("admin", "/#{controller}/#{uuid}"))
41 assert_no_text '123 hello'
43 api = ArvadosApiClient.new
47 text << "#{i} hello\n"
50 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
51 api.api("logs", "", {log: {
54 properties: {"text" => text}}})
55 assert_text '1000 hello'
57 # First test that when we're already at the bottom of the page, it scrolls down
58 # when a new line is added.
59 old_top = page.evaluate_script("$('#event_log_div').scrollTop()")
61 api.api("logs", "", {log: {
64 properties: {"text" => "1001 hello\n"}}})
65 assert_text '1001 hello'
67 # Check that new value of scrollTop is greater than the old one
68 new_top = page.evaluate_script("$('#event_log_div').scrollTop()")
69 assert_operator new_top, :>, old_top
71 # Now scroll to 30 pixels from the top
72 page.execute_script "$('#event_log_div').scrollTop(30)"
73 assert_equal 30, page.evaluate_script("$('#event_log_div').scrollTop()")
75 api.api("logs", "", {log: {
78 properties: {"text" => "1002 hello\n"}}})
79 assert_text '1002 hello'
81 # Check that we haven't changed scroll position
82 assert_equal 30, page.evaluate_script("$('#event_log_div').scrollTop()")
84 Thread.current[:arvados_api_token] = nil
88 test "pipeline instance arv-refresh-on-log-event" do
89 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
90 # Do something and check that the pane reloads.
91 p = PipelineInstance.create({state: "RunningOnServer",
94 script: "test_hash.py",
95 script_version: "1de84a854e2b440dc53bf42f8548afa4c17da332"
100 visit(page_with_token("admin", "/pipeline_instances/#{p.uuid}"))
103 assert page.has_link? 'Pause'
104 assert_no_text 'Complete'
105 assert page.has_no_link? 'Re-run with latest'
110 assert_no_text 'Active'
111 assert page.has_no_link? 'Pause'
112 assert_text 'Complete'
113 assert page.has_link? 'Re-run with latest'
115 Thread.current[:arvados_api_token] = nil
118 test "job arv-refresh-on-log-event" do
119 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
120 # Do something and check that the pane reloads.
121 p = Job.where(uuid: api_fixture('jobs')['running_will_be_completed']['uuid']).results.first
123 visit(page_with_token("admin", "/jobs/#{p.uuid}"))
125 assert_no_text 'complete'
126 assert_no_text 'Re-run job'
131 assert_text 'complete'
132 assert_text 'Re-run job'
134 Thread.current[:arvados_api_token] = nil
137 test "dashboard arv-refresh-on-log-event" do
138 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
140 visit(page_with_token("admin", "/"))
142 assert_no_text 'test dashboard arv-refresh-on-log-event'
144 # Do something and check that the pane reloads.
145 p = PipelineInstance.create({state: "RunningOnServer",
146 name: "test dashboard arv-refresh-on-log-event",
151 assert_text 'test dashboard arv-refresh-on-log-event'
153 Thread.current[:arvados_api_token] = nil
156 test "live log charting" do
157 uuid = api_fixture("jobs")['running']['uuid']
159 visit page_with_token "admin", "/jobs/#{uuid}"
162 # Until graphable data arrives, we should see the text log but not the graph.
163 assert_selector '#event_log_div', visible: true
164 assert_no_selector '#log_graph_div', visible: true
166 api = ArvadosApiClient.new
168 # should give 45.3% or (((36.39+0.86)/10.0002)/8)*100 rounded to 1 decimal place
169 text = "2014-11-07_23:33:51 #{uuid} 31708 1 stderr crunchstat: cpu 1970.8200 user 60.2700 sys 8 cpus -- interval 10.0002 seconds 35.3900 user 0.8600 sys"
171 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
172 api.api("logs", "", {log: {
174 event_type: "stderr",
175 properties: {"text" => text}}})
177 # Log div should appear when the first data point arrives by websocket.
178 assert_selector '#log_graph_div', visible: true
180 # Using datapoint 1 instead of datapoint 0 because there will be a
181 # "dummy" datapoint with no actual stats 10 minutes previous to
182 # the one we're looking for, for the sake of making the x-axis of
183 # the graph show a full 10 minutes of time even though there is
184 # only a single real datapoint.
185 cpu_stat = page.evaluate_script("jobGraphData[1]['T1-cpu']")
187 assert_equal 45.3, (cpu_stat.to_f*100).round(1)
189 Thread.current[:arvados_api_token] = nil
192 test "live log charting from replayed log" do
193 uuid = api_fixture("jobs")['running']['uuid']
195 visit page_with_token "admin", "/jobs/#{uuid}"
198 ApiServerForTests.new.run_rake_task("replay_job_log", "test/job_logs/crunchstatshort.log,1.0,#{uuid}")
201 # see above comment as to why we use datapoint 1 rather than 0
202 cpu_stat = page.evaluate_script("jobGraphData[1]['T1-cpu']")
204 assert_equal 45.3, (cpu_stat.to_f*100).round(1)