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'
31 ["pipeline_instances", api_fixture("pipeline_instances")['pipeline_with_newer_template']['uuid']],
32 ["jobs", api_fixture("jobs")['running']['uuid']],
33 ["containers", api_fixture("containers")['running']['uuid']],
34 ["container_requests", api_fixture("container_requests")['running']['uuid']],
36 test "test live logging scrolling #{c[0]}" do
41 visit(page_with_token("admin", "/#{controller}/#{uuid}"))
43 assert_no_text '123 hello'
45 api = ArvadosApiClient.new
49 text << "#{i} hello\n"
52 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
53 api.api("logs", "", {log: {
56 properties: {"text" => text}}})
57 assert_text '1000 hello'
59 # First test that when we're already at the bottom of the page, it scrolls down
60 # when a new line is added.
61 old_top = page.evaluate_script("$('#event_log_div').scrollTop()")
63 api.api("logs", "", {log: {
66 properties: {"text" => "1001 hello\n"}}})
67 assert_text '1001 hello'
69 # Check that new value of scrollTop is greater than the old one
70 new_top = page.evaluate_script("$('#event_log_div').scrollTop()")
71 assert_operator new_top, :>, old_top
73 # Now scroll to 30 pixels from the top
74 page.execute_script "$('#event_log_div').scrollTop(30)"
75 assert_equal 30, page.evaluate_script("$('#event_log_div').scrollTop()")
77 api.api("logs", "", {log: {
80 properties: {"text" => "1002 hello\n"}}})
81 assert_text '1002 hello'
83 # Check that we haven't changed scroll position
84 assert_equal 30, page.evaluate_script("$('#event_log_div').scrollTop()")
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'
116 test "job arv-refresh-on-log-event" do
117 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
118 # Do something and check that the pane reloads.
119 p = Job.where(uuid: api_fixture('jobs')['running_will_be_completed']['uuid']).results.first
121 visit(page_with_token("admin", "/jobs/#{p.uuid}"))
123 assert_no_text 'complete'
124 assert_no_text 'Re-run job'
129 assert_text 'complete'
130 assert_text 'Re-run job'
133 test "dashboard arv-refresh-on-log-event" do
134 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
136 visit(page_with_token("admin", "/"))
138 assert_no_text 'test dashboard arv-refresh-on-log-event'
140 # Do something and check that the pane reloads.
141 p = PipelineInstance.create({state: "RunningOnServer",
142 name: "test dashboard arv-refresh-on-log-event",
147 assert_text 'test dashboard arv-refresh-on-log-event'
150 test 'job graph appears when first data point is already in logs table' do
151 job_graph_first_datapoint_test
154 test 'job graph appears when first data point arrives by websocket' do
156 Log.find(api_fixture('logs')['crunchstat_for_running_job']['uuid']).destroy
158 job_graph_first_datapoint_test expect_existing_datapoints: false
161 def job_graph_first_datapoint_test expect_existing_datapoints: true
162 uuid = api_fixture('jobs')['running']['uuid']
164 visit page_with_token "active", "/jobs/#{uuid}"
167 assert_selector '#event_log_div', visible: true
169 if expect_existing_datapoints
170 assert_selector '#log_graph_div', visible: true
171 # Magic numbers 12.99 etc come from the job log fixture:
172 assert_last_datapoint 'T1-cpu', (((12.99+0.99)/10.0002)/8)
174 # Until graphable data arrives, we should see the text log but not the graph.
175 assert_no_selector '#log_graph_div', visible: true
178 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"
180 assert_triggers_dom_event 'arv-log-event' do
182 api = ArvadosApiClient.new
183 api.api("logs", "", {log: {
185 event_type: "stderr",
186 properties: {"text" => text}}})
190 # Graph should have appeared (even if it hadn't above). It's
191 # important not to wait like matchers usually do: we are
192 # confirming the graph is visible _immediately_ after the first
193 # data point arrives.
195 assert_selector '#log_graph_div', visible: true
197 assert_last_datapoint 'T1-cpu', (((35.39+0.86)/10.0002)/8)
200 test "live log charting from replayed log" do
201 uuid = api_fixture("jobs")['running']['uuid']
203 visit page_with_token "active", "/jobs/#{uuid}"
206 assert_triggers_dom_event 'arv-log-event' do
207 ApiServerForTests.new.run_rake_task("replay_job_log", "test/job_logs/crunchstatshort.log,1.0,#{uuid}")
210 assert_last_datapoint 'T1-cpu', (((35.39+0.86)/10.0002)/8)
213 def assert_last_datapoint series, value
214 datum = page.evaluate_script("jobGraphData[jobGraphData.length-1]['#{series}']")
215 assert_in_epsilon value, datum.to_f
218 test "test running job with just a few previous log records" do
219 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
220 job = Job.where(uuid: api_fixture("jobs")['running']['uuid']).results.first
221 visit page_with_token("admin", "/jobs/#{job.uuid}")
223 api = ArvadosApiClient.new
225 # Create just one old log record
226 api.api("logs", "", {log: {
227 object_uuid: job.uuid,
228 event_type: "stderr",
229 properties: {"text" => "Historic log message"}}})
233 # Expect "all" historic log records because we have less than
234 # default Rails.configuration.running_job_log_records_to_fetch count
235 assert_text 'Historic log message'
237 # Create new log record and expect it to show up in log tab
238 api.api("logs", "", {log: {
239 object_uuid: job.uuid,
240 event_type: "stderr",
241 properties: {"text" => "Log message after subscription"}}})
242 assert_text 'Log message after subscription'
245 test "test running job with too many previous log records" do
246 Rails.configuration.running_job_log_records_to_fetch = 5
248 Thread.current[:arvados_api_token] = @@API_AUTHS["admin"]['api_token']
249 job = Job.where(uuid: api_fixture("jobs")['running']['uuid']).results.first
251 visit page_with_token("admin", "/jobs/#{job.uuid}")
253 api = ArvadosApiClient.new
255 # Create Rails.configuration.running_job_log_records_to_fetch + 1 log records
256 (0..Rails.configuration.running_job_log_records_to_fetch).each do |count|
257 api.api("logs", "", {log: {
258 object_uuid: job.uuid,
259 event_type: "stderr",
260 properties: {"text" => "Old log message #{count}"}}})
263 # Go to log tab, which results in subscribing to websockets
266 # Expect all but the first historic log records,
267 # because that was one too many than fetch count.
268 (1..Rails.configuration.running_job_log_records_to_fetch).each do |count|
269 assert_text "Old log message #{count}"
271 assert_no_text 'Old log message 0'
273 # Create one more log record after subscription
274 api.api("logs", "", {log: {
275 object_uuid: job.uuid,
276 event_type: "stderr",
277 properties: {"text" => "Life goes on!"}}})
278 # Expect it to show up in log tab
279 assert_text 'Life goes on!'