sidekiq-undertaker 1.6.0 → 1.8.0.rc01

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby-build.yml +8 -6
  3. data/.rubocop.yml +6 -5
  4. data/.rubocop_codeclimate.yml +1 -1
  5. data/.rubocop_todo.yml +20 -8
  6. data/CHANGELOG.md +21 -0
  7. data/Gemfile +19 -2
  8. data/lib/sidekiq/undertaker/dead_job.rb +1 -1
  9. data/lib/sidekiq/undertaker/version.rb +1 -1
  10. data/lib/sidekiq/undertaker/web_extension/api_helpers.rb +44 -33
  11. data/lib/sidekiq/undertaker.rb +5 -3
  12. data/renovate.json +3 -2
  13. data/sidekiq-undertaker.gemspec +3 -24
  14. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_filter_page_is_called/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv8.approved.txt +377 -0
  15. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classbucket_page_is_called/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv8.approved.txt +362 -0
  16. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classbucket_page_is_polled/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv8.approved.txt +362 -0
  17. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classerror_classbucket_page_is_called/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv8.approved.txt +352 -0
  18. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classerror_classbucket_page_is_polled/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv8.approved.txt +352 -0
  19. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_all_failures_and_errors/behaves_like_a_page/{the_displayed_page_is_correct_for_sidekiqv7.approved.txt → the_displayed_page_is_correct_for_sidekiqv8.approved.txt} +212 -98
  20. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_job_class_error_and_specific_error_message/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv8.approved.txt +407 -0
  21. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_job_class_error_and_specific_error_message/with_pagination/behaves_like_a_page/{the_displayed_page_is_correct_for_sidekiqv7.approved.txt → the_displayed_page_is_correct_for_sidekiqv8.approved.txt} +276 -160
  22. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_specific_job_class_and_a_specific_error/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv8.approved.txt +407 -0
  23. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_specific_job_class_and_a_specific_error/with_pagination/behaves_like_a_page/{the_displayed_page_is_correct_for_sidekiqv7.approved.txt → the_displayed_page_is_correct_for_sidekiqv8.approved.txt} +276 -160
  24. data/spec/sidekiq/undertaker/dead_jobs_spec.rb +2 -2
  25. data/spec/sidekiq/undertaker/web_extension_spec.rb +12 -13
  26. data/spec/spec_helper.rb +14 -1
  27. data/spec/support/monkey_patch/approvals/writers/text_writer.rb +20 -0
  28. metadata +17 -305
  29. data/.github/dependabot.yml +0 -8
  30. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_filter_page_is_called/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +0 -256
  31. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_filter_page_is_called/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv7.approved.txt +0 -265
  32. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classbucket_page_is_called/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +0 -241
  33. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classbucket_page_is_called/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv7.approved.txt +0 -250
  34. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classbucket_page_is_polled/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +0 -241
  35. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classbucket_page_is_polled/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv7.approved.txt +0 -250
  36. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classerror_classbucket_page_is_called/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +0 -231
  37. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classerror_classbucket_page_is_called/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv7.approved.txt +0 -240
  38. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classerror_classbucket_page_is_polled/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +0 -231
  39. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_filter/when_job_classerror_classbucket_page_is_polled/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv7.approved.txt +0 -240
  40. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_all_failures_and_errors/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +0 -326
  41. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_job_class_error_and_specific_error_message/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +0 -284
  42. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_job_class_error_and_specific_error_message/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv7.approved.txt +0 -293
  43. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_job_class_error_and_specific_error_message/with_pagination/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +0 -1310
  44. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_specific_job_class_and_a_specific_error/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +0 -284
  45. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_specific_job_class_and_a_specific_error/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv7.approved.txt +0 -293
  46. data/spec/fixtures/approvals/sidekiq_undertaker_webextension/show_morgue/when_job_classerrorbucket_is_called/with_specific_job_class_and_a_specific_error/with_pagination/behaves_like_a_page/the_displayed_page_is_correct_for_sidekiqv6.approved.txt +0 -1310
@@ -0,0 +1,407 @@
1
+ <!doctype html>
2
+ <html dir="ltr" lang="en">
3
+ <head>
4
+ <title>[TEST] Sidekiq</title>
5
+ <meta charset="utf-8" />
6
+ <meta name="viewport" content="width=device-width,initial-scale=1.0" />
7
+
8
+ <link href="/sidekiq/stylesheets/style.css" media="screen" rel="stylesheet" type="text/css" nonce="<nonce>" />
9
+
10
+ <link rel="apple-touch-icon" href="/sidekiq/images/apple-touch-icon.png">
11
+ <link rel="shortcut icon" type="image/ico" href="/sidekiq/images/favicon.ico" />
12
+ <script type="text/javascript" src="/sidekiq/javascripts/application.js" nonce="<nonce>"></script>
13
+ <meta name="google" content="notranslate" />
14
+
15
+ </head>
16
+ <body class="admin" data-locale="en">
17
+ <header>
18
+ <div class="container">
19
+ <div class="navbar-header" data-navbar="static">
20
+ <button type="button" class="btn navbar-toggle" data-toggle="navbar-menu" data-target="#navbar-menu">
21
+ <span class="icon-bar"></span>
22
+ <span class="icon-bar"></span>
23
+ <span class="icon-bar"></span>
24
+ </button>
25
+ <div class="navbar-livereload">
26
+
27
+ <a class="btn live-poll live-poll-start btn-primary">Live Poll</a>
28
+ <a class="btn live-poll live-poll-stop btn-danger">Stop Polling</a>
29
+
30
+
31
+
32
+ </div>
33
+ <a class="navbar-brand" href="/sidekiq/">
34
+ Sidekiq
35
+ </a>
36
+ </div>
37
+
38
+ <div class="navbar-collapse" role="navigation" id="navbar-menu">
39
+ <ul class="nav" data-navbar="static">
40
+
41
+
42
+ <li class="">
43
+ <a href="/sidekiq/">Dashboard</a>
44
+ </li>
45
+
46
+
47
+
48
+ <li class="">
49
+ <a href="/sidekiq/busy">Busy</a>
50
+ </li>
51
+
52
+
53
+
54
+ <li class="">
55
+ <a href="/sidekiq/queues">Queues</a>
56
+ </li>
57
+
58
+
59
+
60
+ <li class="">
61
+ <a href="/sidekiq/retries">Retries</a>
62
+ </li>
63
+
64
+
65
+
66
+ <li class="">
67
+ <a href="/sidekiq/scheduled">Scheduled</a>
68
+ </li>
69
+
70
+
71
+
72
+ <li class="">
73
+ <a href="/sidekiq/morgue">Dead</a>
74
+ </li>
75
+
76
+
77
+
78
+ <li class="">
79
+ <a href="/sidekiq/metrics">Metrics</a>
80
+ </li>
81
+
82
+
83
+
84
+ <li class="">
85
+ <a href="/sidekiq/profiles">Profiles</a>
86
+ </li>
87
+
88
+
89
+
90
+ <li class="">
91
+ <a href="/sidekiq/undertaker/filter">Undertaker</a>
92
+ </li>
93
+
94
+
95
+
96
+ <li class="navbar-livereload">
97
+ <div class="poll-wrapper">
98
+
99
+ <a class="btn live-poll live-poll-start btn-primary">Live Poll</a>
100
+ <a class="btn live-poll live-poll-stop btn-danger">Stop Polling</a>
101
+
102
+
103
+
104
+ </div>
105
+ </li>
106
+ </ul>
107
+ </div>
108
+ </div>
109
+ </header>
110
+
111
+ <main id="page">
112
+ <div class="container">
113
+ <div class="cards-container">
114
+ <article>
115
+ <span id="txtProcessed" class="count" data-nwp>0</span>
116
+ <span class="desc">Processed</span>
117
+ </article>
118
+ <article>
119
+ <span id="txtFailed" class="count" data-nwp>0</span>
120
+ <span class="desc">Failed</span>
121
+ </article>
122
+ <article>
123
+ <a href="/sidekiq/busy">
124
+ <span id="txtBusy" class="count" data-nwp>0</span>
125
+ <span class="desc">Busy</span>
126
+ </a>
127
+ </article>
128
+ <article>
129
+ <a href="/sidekiq/queues">
130
+ <span id="txtEnqueued" class="count" data-nwp>0</span>
131
+ <span class="desc">Enqueued</span>
132
+ </a>
133
+ </article>
134
+ <article>
135
+ <a href="/sidekiq/retries">
136
+ <span id="txtRetries" class="count" data-nwp>0</span>
137
+ <span class="desc">Retries</span>
138
+ </a>
139
+ </article>
140
+ <article>
141
+ <a href="/sidekiq/scheduled">
142
+ <span id="txtScheduled" class="count" data-nwp>0</span>
143
+ <span class="desc">Scheduled</span>
144
+ </a>
145
+ </article>
146
+ <article>
147
+ <a href="/sidekiq/morgue">
148
+ <span id="txtDead" class="count" data-nwp>4</span>
149
+ <span class="desc">Dead</span>
150
+ </a>
151
+ </article>
152
+ </div>
153
+
154
+ <header class="row head">
155
+ <div class="col-sm-12">
156
+ <h3>
157
+ <b>2</b> dead jobs
158
+ of <b>HardWorker</b> class
159
+ with <b>RuntimeError</b> exception
160
+
161
+ in <b>1_hour</b> bucket
162
+ </h3>
163
+ </div>
164
+ <div class="col-sm-12">
165
+ <div class="col-sm-4">
166
+
167
+
168
+
169
+
170
+ </div>
171
+ </div>
172
+ </header>
173
+
174
+
175
+ <form action="/sidekiq/undertaker/morgue" method="post">
176
+ <input type='hidden' name='authenticity_token' value=''/>
177
+ <table class="table table-striped table-bordered table-white">
178
+ <thead>
179
+ <tr>
180
+ <th width="20px" class="table-checkbox">
181
+ <label>
182
+ <input type="checkbox" class="check_all" />
183
+ </label>
184
+ </th>
185
+ <th width="25%">Last Retry</th>
186
+ <th>Queue</th>
187
+ <th>Job</th>
188
+ <th>Arguments</th>
189
+ <th>Error</th>
190
+ </tr>
191
+ </thead>
192
+
193
+ <tr>
194
+ <td class="table-checkbox">
195
+ <label>
196
+ <input type='checkbox' name='key[]' value='1544993820.0-4416aa76eb8cf03f56a49220' />
197
+ </label>
198
+ </td>
199
+ <td>
200
+ <a href="/sidekiq/morgue/1544993820.0-4416aa76eb8cf03f56a49220"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
201
+ </td>
202
+ <td>
203
+ <a href="/sidekiq/queues/foo">foo</a>
204
+ </td>
205
+ <td>HardWorker</td>
206
+ <td>
207
+ <div class="args">&quot;asdf&quot;, 1234</div>
208
+ </td>
209
+ <td>
210
+ <div>RuntimeError: Option &#39;data/file_name&#39; is required! This is an extra long error message.</div>
211
+ </td>
212
+ </tr>
213
+
214
+ <tr>
215
+ <td class="table-checkbox">
216
+ <label>
217
+ <input type='checkbox' name='key[]' value='1544993820.0-34e79a46b1956d3a1180767b' />
218
+ </label>
219
+ </td>
220
+ <td>
221
+ <a href="/sidekiq/morgue/1544993820.0-34e79a46b1956d3a1180767b"><time class="ltr" dir="ltr" title="2018-12-16T20:57:00Z" datetime="2018-12-16T20:57:00Z">2018-12-16 20:57:00 UTC</time></a>
222
+ </td>
223
+ <td>
224
+ <a href="/sidekiq/queues/foo">foo</a>
225
+ </td>
226
+ <td>HardWorker</td>
227
+ <td>
228
+ <div class="args">&quot;asdf&quot;, 1234</div>
229
+ </td>
230
+ <td>
231
+ <div>RuntimeError: Option &#39;data/file_name&#39; is required! This is an extra long error message.</div>
232
+ </td>
233
+ </tr>
234
+
235
+ </table>
236
+ <input class="btn btn-primary btn-xs pull-left" type="submit" name="retry" value="Revive" />
237
+ <input class="btn btn-secondary btn-xs pull-left" type="submit" name="export" value="Export" />
238
+ <input class="btn btn-danger btn-xs pull-left" type="submit" name="delete" value="Bury" />
239
+ </form>
240
+
241
+ <form action="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/YWxs/1_hour/delete" method="post">
242
+ <input type='hidden' name='authenticity_token' value=''/>
243
+ <input class="btn btn-danger btn-xs pull-right" type="submit" name="delete" value="Bury All" data-confirm="Are you sure?" />
244
+ </form>
245
+
246
+ <form action="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/YWxs/1_hour/export" method="post">
247
+ <input type='hidden' name='authenticity_token' value=''/>
248
+ <input class="btn btn-secondary btn-xs pull-right" type="submit" name="export" value="Export All" />
249
+ </form>
250
+
251
+ <form action="/sidekiq/undertaker/morgue/HardWorker/RuntimeError/YWxs/1_hour/retry" method="post">
252
+ <input type='hidden' name='authenticity_token' value=''/>
253
+ <input class="btn btn-danger btn-xs pull-right" type="submit" name="retry" value="Revive All" data-confirm="Are you sure?" />
254
+ </form>
255
+
256
+
257
+ </div>
258
+ </main>
259
+ <footer>
260
+ <div class="container">
261
+ <ul class="nav">
262
+ <li>
263
+ <p><b>Sidekiq v*EXCLUDED*</b></p>
264
+ </li>
265
+ <li>
266
+ <p title="redis://localhost:6379">redis://localhost:6379</p>
267
+ </li>
268
+ <li>
269
+ <p id="serverUtcTime">20:57:00 UTC</p>
270
+ </li>
271
+ <li>
272
+ <p><a rel=help href="https://github.com/sidekiq/sidekiq/wiki">docs</a></p>
273
+ </li>
274
+ <li>
275
+ <form id="locale-form" action="/sidekiq/change_locale" method="post">
276
+ <input type='hidden' name='authenticity_token' value=''/>
277
+ <select id="locale-select" aria-label="Language" class="form-control" name="locale">
278
+
279
+
280
+ <option value="ar">العربية</option>
281
+
282
+
283
+
284
+ <option value="cs">Čeština</option>
285
+
286
+
287
+
288
+ <option value="da">Dansk</option>
289
+
290
+
291
+
292
+ <option value="de">Deutsch</option>
293
+
294
+
295
+
296
+ <option value="el">ελληνικά</option>
297
+
298
+
299
+
300
+ <option selected value="en">English</option>
301
+
302
+
303
+
304
+ <option value="es">Español</option>
305
+
306
+
307
+
308
+ <option value="fa">فارسى</option>
309
+
310
+
311
+
312
+ <option value="fr">Français</option>
313
+
314
+
315
+
316
+ <option value="gd">Gaeilge</option>
317
+
318
+
319
+
320
+ <option value="he">עברית</option>
321
+
322
+
323
+
324
+ <option value="hi">हिन्दी</option>
325
+
326
+
327
+
328
+ <option value="it">Italiano</option>
329
+
330
+
331
+
332
+ <option value="ja">日本語</option>
333
+
334
+
335
+
336
+ <option value="ko">한국어</option>
337
+
338
+
339
+
340
+ <option value="lt">Lietuvių</option>
341
+
342
+
343
+
344
+ <option value="nb">Norsk</option>
345
+
346
+
347
+
348
+ <option value="nl">Nederlands</option>
349
+
350
+
351
+
352
+ <option value="pl">Polski</option>
353
+
354
+
355
+
356
+ <option value="pt-BR">Português (Brasil)</option>
357
+
358
+
359
+
360
+ <option value="pt">Português</option>
361
+
362
+
363
+
364
+ <option value="ru">Русский</option>
365
+
366
+
367
+
368
+ <option value="sv">Svenska</option>
369
+
370
+
371
+
372
+ <option value="ta">தமிழ்</option>
373
+
374
+
375
+
376
+ <option value="tr">Türkçe</option>
377
+
378
+
379
+
380
+ <option value="uk">Українська</option>
381
+
382
+
383
+
384
+ <option value="ur">اردو</option>
385
+
386
+
387
+
388
+ <option value="vi">Tiếng Việt</option>
389
+
390
+
391
+
392
+ <option value="zh-CN">中文</option>
393
+
394
+
395
+
396
+ <option value="zh-TW">臺灣話</option>
397
+
398
+
399
+ </select>
400
+ </form>
401
+ </li>
402
+ </ul>
403
+ </div>
404
+ </footer>
405
+
406
+ </body>
407
+ </html>