web-console 1.0.4 → 2.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of web-console might be problematic. Click here for more details.

Files changed (138) hide show
  1. checksums.yaml +4 -4
  2. data/README.markdown +26 -247
  3. data/lib/action_dispatch/debug_exceptions.rb +115 -0
  4. data/lib/action_dispatch/exception_wrapper.rb +15 -0
  5. data/lib/action_dispatch/templates/rescues/_request_and_response.html.erb +34 -0
  6. data/lib/action_dispatch/templates/rescues/_request_and_response.text.erb +23 -0
  7. data/lib/action_dispatch/templates/rescues/_source.erb +27 -0
  8. data/lib/action_dispatch/templates/rescues/_trace.html.erb +76 -0
  9. data/lib/action_dispatch/templates/rescues/_trace.text.erb +15 -0
  10. data/lib/action_dispatch/templates/rescues/_web_console.html.erb +382 -0
  11. data/lib/action_dispatch/templates/rescues/diagnostics.html.erb +18 -0
  12. data/lib/action_dispatch/templates/rescues/diagnostics.text.erb +9 -0
  13. data/lib/action_dispatch/templates/rescues/layout.erb +162 -0
  14. data/lib/action_dispatch/templates/rescues/missing_template.html.erb +7 -0
  15. data/lib/action_dispatch/templates/rescues/missing_template.text.erb +3 -0
  16. data/lib/action_dispatch/templates/rescues/routing_error.html.erb +30 -0
  17. data/lib/action_dispatch/templates/rescues/routing_error.text.erb +11 -0
  18. data/lib/action_dispatch/templates/rescues/template_error.html.erb +22 -0
  19. data/lib/action_dispatch/templates/rescues/template_error.text.erb +8 -0
  20. data/lib/action_dispatch/templates/rescues/unknown_action.html.erb +6 -0
  21. data/lib/action_dispatch/templates/rescues/unknown_action.text.erb +3 -0
  22. data/lib/web_console.rb +17 -7
  23. data/lib/web_console/exception_extension.rb +22 -0
  24. data/lib/web_console/railtie.rb +15 -0
  25. data/lib/web_console/repl.rb +24 -0
  26. data/lib/web_console/repl_session.rb +90 -0
  27. data/lib/web_console/version.rb +1 -1
  28. data/lib/web_console/view_helpers.rb +21 -0
  29. data/test/action_pack/exception_wrapper_test.rb +26 -0
  30. data/test/dummy/app/controllers/exception_test_controller.rb +11 -0
  31. data/test/dummy/app/controllers/helper_test_controller.rb +5 -0
  32. data/test/dummy/app/views/helper_test/index.html.erb +220 -0
  33. data/test/dummy/app/views/layouts/application.html.erb +2 -0
  34. data/test/dummy/config/application.rb +0 -34
  35. data/test/dummy/config/routes.rb +3 -0
  36. data/test/dummy/db/development.sqlite3 +0 -0
  37. data/test/dummy/log/development.log +61270 -0
  38. data/test/dummy/log/test.log +3917 -0
  39. data/test/dummy/tmp/cache/assets/development/sprockets/038461854af2e8bccdb29768efd4768f +0 -0
  40. data/test/dummy/tmp/cache/assets/development/sprockets/0ec396634a5f6808b026257fd107c355 +0 -0
  41. data/test/dummy/tmp/cache/assets/development/sprockets/127a54171eea8d294e4673599861787d +0 -0
  42. data/{app/assets/stylesheets/web_console/application.css → test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705} +0 -0
  43. data/test/dummy/tmp/cache/assets/development/sprockets/17c571144b4e44da39bddb2d2c412414 +0 -0
  44. data/test/dummy/tmp/cache/assets/development/sprockets/1cb77d8cf661ccbc9de08f347c89b9f1 +0 -0
  45. data/test/dummy/tmp/cache/assets/development/sprockets/204edd12a29660722d4e0d8de9bd6652 +0 -0
  46. data/test/dummy/tmp/cache/assets/development/sprockets/2b96b037f3dfeccfe27113eb95b06ea1 +0 -0
  47. data/test/dummy/tmp/cache/assets/development/sprockets/2c853768baf811357d81d41bdfd05dcf +0 -0
  48. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  49. data/test/dummy/tmp/cache/assets/development/sprockets/314d48e543146f617c4d3439a4d8d40d +0 -0
  50. data/test/dummy/tmp/cache/assets/development/sprockets/34f21019a876722b8c24a6da4f0ef50b +0 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  52. data/{vendor/assets/javascripts/term.js → test/dummy/tmp/cache/assets/development/sprockets/36341e42f23669574fa1027d0958ff3e} +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/44117154e909436e7eeaf10cdb18d2b4 +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/496864a905d53afd8e176f29500f96a8 +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/55b7b76605fdffe31d737d4ac1f1ef7b +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/5ac98782fe3dfd0a766f75ce1801f0a0 +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/6088d6f344b38303cc8028057d69e0f9 +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/676dcf9b2d01b9dc7bd3183d8da88463 +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/680381170dc160e358fc28076ea6886c +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/6ad7acc9a22fe2a67ec24a1fc866c20e +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/6bdb0d0c602e0e1bc304dc697e2cc6de +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/6dc8d7aa69668fce85683aaad6615432 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/6e4d5b32cc444226f6597198994ccd5e +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/74db0ca5cb8c8c347c9131a3ff516748 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/7999e525c88173c1beb785f002effc1d +0 -0
  66. data/{lib/assets/javascripts/web_console.js → test/dummy/tmp/cache/assets/development/sprockets/7a50a9e605754e99783de95715b976b0} +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/806b0e33a2fe8e1245534345fa27c30a +0 -0
  68. data/{app/assets/javascripts/web_console/console_sessions.js → test/dummy/tmp/cache/assets/development/sprockets/8aa4c7aabff23c8089d41e9e54193483} +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/90396626cba6cbec37e32038e6c54e76 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/976b28910aa72c90a3b30c6e940f51df +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/99e1bd7cbc437505bc8f07bc528c721c +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/aaccf2c9ae2add0863c9a49e0042a097 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/ae4677d24a79d9411f2fced5011d5807 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/b2401118729720034b6f3eda0b4c5025 +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/c649837df826fc310cb80f1adafd6b8d +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/cac185d59612fae451a12df3fc21bb51 +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/cb0065359d3b5b296f71d673f4b276e9 +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/cee8c6b09c33d2b276753e959712724e +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/d1f6e06bc2f112c4ec3a4c3f68351878 +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/d20d83fd7ffa378b1b2b901786d640f3 +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/d38c7c3aa1e72b55769ccb3607641ef4 +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/d6b85d8b0b5c569388b89e56e9f6fed7 +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/d982412def520c434e2240eae6d29cf2 +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/df048a8b0897b9c04acdf59c8f95b18f +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/df600f50f002512c95d93bcfbab891ed +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/e6d6b8bde546349764be7b44ffcf5807 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/eb25265794d2f7afd1684779d84efdac +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/ee8826b12b7d9bfd717df950b58f82ab +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/ef9824789c6ed3483590e0564a12e1d1 +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/fc7201c6cbef32453aa4175c520c8eae +0 -0
  94. data/test/dummy/tmp/cache/assets/test/sprockets/17c571144b4e44da39bddb2d2c412414 +0 -0
  95. data/test/dummy/tmp/cache/assets/test/sprockets/36341e42f23669574fa1027d0958ff3e +0 -0
  96. data/test/dummy/tmp/cache/assets/test/sprockets/55b7b76605fdffe31d737d4ac1f1ef7b +0 -0
  97. data/test/dummy/tmp/cache/assets/test/sprockets/5ac98782fe3dfd0a766f75ce1801f0a0 +0 -0
  98. data/test/dummy/tmp/cache/assets/test/sprockets/680381170dc160e358fc28076ea6886c +0 -0
  99. data/test/dummy/tmp/cache/assets/test/sprockets/6ad7acc9a22fe2a67ec24a1fc866c20e +0 -0
  100. data/test/dummy/tmp/cache/assets/test/sprockets/6e4d5b32cc444226f6597198994ccd5e +0 -0
  101. data/test/dummy/tmp/cache/assets/test/sprockets/7a50a9e605754e99783de95715b976b0 +0 -0
  102. data/test/dummy/tmp/cache/assets/test/sprockets/8aa4c7aabff23c8089d41e9e54193483 +0 -0
  103. data/test/dummy/tmp/cache/assets/test/sprockets/b2401118729720034b6f3eda0b4c5025 +0 -0
  104. data/test/dummy/tmp/cache/assets/test/sprockets/cb0065359d3b5b296f71d673f4b276e9 +0 -0
  105. data/test/dummy/tmp/cache/assets/test/sprockets/d1f6e06bc2f112c4ec3a4c3f68351878 +0 -0
  106. data/test/dummy/tmp/cache/assets/test/sprockets/d6b85d8b0b5c569388b89e56e9f6fed7 +0 -0
  107. data/test/dummy/tmp/cache/assets/test/sprockets/d982412def520c434e2240eae6d29cf2 +0 -0
  108. data/test/dummy/tmp/cache/assets/test/sprockets/df048a8b0897b9c04acdf59c8f95b18f +0 -0
  109. data/test/dummy/tmp/cache/assets/test/sprockets/e6d6b8bde546349764be7b44ffcf5807 +0 -0
  110. data/test/web_console/exception_extention_test.rb +16 -0
  111. data/test/web_console/repl_session_test.rb +32 -0
  112. data/test/web_console/repl_test.rb +26 -0
  113. metadata +191 -58
  114. data/app/assets/javascripts/web_console/application.js +0 -1
  115. data/app/assets/stylesheets/web_console/console_sessions.css.erb +0 -6
  116. data/app/controllers/web_console/application_controller.rb +0 -13
  117. data/app/controllers/web_console/console_sessions_controller.rb +0 -43
  118. data/app/helpers/web_console/application_helper.rb +0 -4
  119. data/app/helpers/web_console/console_session_helper.rb +0 -4
  120. data/app/models/web_console/console_session.rb +0 -96
  121. data/app/views/layouts/web_console/application.html.erb +0 -14
  122. data/app/views/web_console/console_sessions/index.html.erb +0 -15
  123. data/config/routes.rb +0 -11
  124. data/lib/assets/javascripts/web-console.js +0 -1
  125. data/lib/web_console/colors.rb +0 -87
  126. data/lib/web_console/colors/light.rb +0 -24
  127. data/lib/web_console/colors/monokai.rb +0 -24
  128. data/lib/web_console/colors/solarized.rb +0 -47
  129. data/lib/web_console/colors/tango.rb +0 -24
  130. data/lib/web_console/colors/xterm.rb +0 -24
  131. data/lib/web_console/engine.rb +0 -77
  132. data/lib/web_console/slave.rb +0 -139
  133. data/test/controllers/web_console/console_sessions_controller_test.rb +0 -95
  134. data/test/helpers/web_console/console_session_helper_test.rb +0 -6
  135. data/test/models/console_session_test.rb +0 -58
  136. data/test/web_console/colors_test.rb +0 -58
  137. data/test/web_console/engine_test.rb +0 -136
  138. data/test/web_console/slave_test.rb +0 -71
@@ -1541,5 +1541,3922 @@ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
1541
1541
   (0.1ms) begin transaction
1542
1542
  -------------------------------------------------------------------------
1543
1543
  WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
1544
+ -------------------------------------------------------------------------
1545
+  (0.0ms) rollback transaction
1546
+  (0.2ms) begin transaction
1547
+ --------------------------------------------------------------------
1548
+ WebConsole::ColorsTest: test_#background=_is_an_alias_of_#background
1549
+ --------------------------------------------------------------------
1550
+  (0.0ms) rollback transaction
1551
+  (0.1ms) begin transaction
1552
+ --------------------------------------------------------------------
1553
+ WebConsole::ColorsTest: test_#background_can_be_explicitly_specified
1554
+ --------------------------------------------------------------------
1555
+  (0.0ms) rollback transaction
1556
+  (0.1ms) begin transaction
1557
+ ----------------------------------------------------------------------------
1558
+ WebConsole::ColorsTest: test_#background_is_the_first_color_if_not_specified
1559
+ ----------------------------------------------------------------------------
1560
+  (0.0ms) rollback transaction
1561
+  (0.0ms) begin transaction
1562
+ -----------------------------------------------
1563
+ WebConsole::ColorsTest: test_#default_is_:light
1564
+ -----------------------------------------------
1565
+  (0.0ms) rollback transaction
1566
+  (0.1ms) begin transaction
1567
+ --------------------------------------------------------------------
1568
+ WebConsole::ColorsTest: test_#foreground=_is_an_alias_of_#foreground
1569
+ --------------------------------------------------------------------
1570
+  (0.0ms) rollback transaction
1571
+  (0.1ms) begin transaction
1572
+ --------------------------------------------------------------------
1573
+ WebConsole::ColorsTest: test_#foreground_can_be_explicitly_specified
1574
+ --------------------------------------------------------------------
1575
+  (0.0ms) rollback transaction
1576
+  (0.1ms) begin transaction
1577
+ ---------------------------------------------------------------------------
1578
+ WebConsole::ColorsTest: test_#foreground_is_the_last_color_if_not_specified
1579
+ ---------------------------------------------------------------------------
1580
+  (0.0ms) rollback transaction
1581
+  (0.0ms) begin transaction
1582
+ --------------------------------------------------------------------------------
1583
+ WebConsole::ColorsTest: test_#to_json_includes_the_background_and_the_foreground
1584
+ --------------------------------------------------------------------------------
1585
+  (0.0ms) rollback transaction
1586
+  (0.1ms) begin transaction
1587
+ -----------------------------------------------------------
1588
+ WebConsole::ColorsTest: test_.[]_is_an_alias_for_.themes#[]
1589
+ -----------------------------------------------------------
1590
+  (0.0ms) rollback transaction
1591
+  (0.1ms) begin transaction
1592
+ ----------------------------------------------------------------------------------
1593
+ WebConsole::ColorsTest: test_.register_theme_creates_Colors_instance_for_the_block
1594
+ ----------------------------------------------------------------------------------
1595
+  (0.0ms) rollback transaction
1596
+  (0.0ms) begin transaction
1597
+ --------------------------------------------------------------------------------------
1598
+ WebConsole::ConsoleSessionTest: test_can_be_used_as_slave_as_the_methods_are_delegated
1599
+ --------------------------------------------------------------------------------------
1600
+  (0.0ms) rollback transaction
1601
+  (0.0ms) begin transaction
1602
+ --------------------------------------------------------------------------
1603
+ WebConsole::ConsoleSessionTest: test_create_gives_already_persisted_models
1604
+ --------------------------------------------------------------------------
1605
+  (0.0ms) rollback transaction
1606
+  (0.0ms) begin transaction
1607
+ ------------------------------------------------
1608
+ WebConsole::ConsoleSessionTest: test_errors_aref
1609
+ ------------------------------------------------
1610
+  (0.0ms) rollback transaction
1611
+  (0.1ms) begin transaction
1612
+ -----------------------------------------------------
1613
+ WebConsole::ConsoleSessionTest: test_find_coerces_ids
1614
+ -----------------------------------------------------
1615
+  (0.0ms) rollback transaction
1616
+  (0.0ms) begin transaction
1617
+ -------------------------------------------------
1618
+ WebConsole::ConsoleSessionTest: test_model_naming
1619
+ -------------------------------------------------
1620
+  (0.0ms) rollback transaction
1621
+  (0.0ms) begin transaction
1622
+ ------------------------------------------------------------------
1623
+ WebConsole::ConsoleSessionTest: test_no_gives_not_persisted_models
1624
+ ------------------------------------------------------------------
1625
+  (0.0ms) rollback transaction
1626
+  (0.1ms) begin transaction
1627
+ -------------------------------------------------------------------------------
1628
+ WebConsole::ConsoleSessionTest: test_not_found_exceptions_are_json_serializable
1629
+ -------------------------------------------------------------------------------
1630
+  (0.1ms) rollback transaction
1631
+  (0.0ms) begin transaction
1632
+ -----------------------------------------------
1633
+ WebConsole::ConsoleSessionTest: test_persisted?
1634
+ -----------------------------------------------
1635
+  (0.0ms) rollback transaction
1636
+  (0.0ms) begin transaction
1637
+ ----------------------------------------------------------------------------
1638
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_about_their_keys
1639
+ ----------------------------------------------------------------------------
1640
+  (0.0ms) rollback transaction
1641
+  (0.1ms) begin transaction
1642
+ -----------------------------------------------------------------------------------
1643
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_that_they_are_in_memory
1644
+ -----------------------------------------------------------------------------------
1645
+  (0.0ms) rollback transaction
1646
+  (0.0ms) begin transaction
1647
+ ---------------------------------------------------------------------------------------------
1648
+ WebConsole::ConsoleSessionTest: test_raises_ConsoleSession::Unavailable_on_not_found_sessions
1649
+ ---------------------------------------------------------------------------------------------
1650
+  (0.0ms) rollback transaction
1651
+  (0.0ms) begin transaction
1652
+ ------------------------------------------------------------------------------
1653
+ WebConsole::ConsoleSessionTest: test_slave_methods_are_cached_on_the_singleton
1654
+ ------------------------------------------------------------------------------
1655
+  (0.0ms) rollback transaction
1656
+  (0.0ms) begin transaction
1657
+ -------------------------------------------
1658
+ WebConsole::ConsoleSessionTest: test_to_key
1659
+ -------------------------------------------
1660
+  (0.0ms) rollback transaction
1661
+  (0.1ms) begin transaction
1662
+ ---------------------------------------------
1663
+ WebConsole::ConsoleSessionTest: test_to_param
1664
+ ---------------------------------------------
1665
+  (0.0ms) rollback transaction
1666
+  (0.1ms) begin transaction
1667
+ ----------------------------------------------------
1668
+ WebConsole::ConsoleSessionTest: test_to_partial_path
1669
+ ----------------------------------------------------
1670
+  (0.0ms) rollback transaction
1671
+  (0.0ms) begin transaction
1672
+ -------------------------------------------------------------------------------------
1673
+ WebConsole::ConsoleSessionsControllerTest: test_GET_index_creates_new_console_session
1674
+ -------------------------------------------------------------------------------------
1675
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1676
+ Completed 200 OK in 30ms (Views: 30.0ms | ActiveRecord: 0.0ms)
1677
+  (0.1ms) rollback transaction
1678
+  (0.0ms) begin transaction
1679
+ -------------------------------------------------------------------------------------------------
1680
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_gives_the_slave_pending_output
1681
+ -------------------------------------------------------------------------------------------------
1682
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1683
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1684
+ Processing by WebConsole::ConsoleSessionsController#pending_output as HTML
1685
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1686
+  (0.0ms) rollback transaction
1687
+  (0.0ms) begin transaction
1688
+ --------------------------------------------------------------------------------------------------------
1689
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_raises_410_on_exitted_slave_processes
1690
+ --------------------------------------------------------------------------------------------------------
1691
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1692
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1693
+ Processing by WebConsole::ConsoleSessionsController#pending_output as HTML
1694
+ Completed 410 Gone in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1695
+  (0.0ms) rollback transaction
1696
+  (0.1ms) begin transaction
1697
+ ------------------------------------------------------------------------------------------
1698
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_configuration_adjust_the_terminal_size
1699
+ ------------------------------------------------------------------------------------------
1700
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1701
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1702
+ Processing by WebConsole::ConsoleSessionsController#configuration as HTML
1703
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1704
+  (0.1ms) rollback transaction
1705
+  (0.1ms) begin transaction
1706
+ ----------------------------------------------------------------------------------
1707
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_sends_input_to_the_slave
1708
+ ----------------------------------------------------------------------------------
1709
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1710
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
1711
+ Processing by WebConsole::ConsoleSessionsController#input as HTML
1712
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1713
+  (0.1ms) rollback transaction
1714
+  (0.0ms) begin transaction
1715
+ -------------------------------------------------------------------------------------
1716
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_validates_for_missing_input
1717
+ -------------------------------------------------------------------------------------
1718
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1719
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1720
+ Processing by WebConsole::ConsoleSessionsController#input as HTML
1721
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1722
+  (0.0ms) rollback transaction
1723
+  (0.1ms) begin transaction
1724
+ ------------------------------------------------------------------------------------
1725
+ WebConsole::ConsoleSessionsControllerTest: test_allows_requests_from_whitelisted_ips
1726
+ ------------------------------------------------------------------------------------
1727
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1728
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1729
+  (0.0ms) rollback transaction
1730
+  (0.0ms) begin transaction
1731
+ ----------------------------------------------------------------------------------------
1732
+ WebConsole::ConsoleSessionsControllerTest: test_blocks_requests_from_non-whitelisted_ips
1733
+ ----------------------------------------------------------------------------------------
1734
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1735
+ Filter chain halted as :prevent_unauthorized_requests! rendered or redirected
1736
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1737
+  (0.0ms) rollback transaction
1738
+  (0.1ms) begin transaction
1739
+ --------------------------------------------------------------------
1740
+ WebConsole::ConsoleSessionsControllerTest: test_index_generated_path
1741
+ --------------------------------------------------------------------
1742
+  (0.0ms) rollback transaction
1743
+  (0.1ms) begin transaction
1744
+ -------------------------------------------------------------------
1745
+ WebConsole::ConsoleSessionsControllerTest: test_index_is_successful
1746
+ -------------------------------------------------------------------
1747
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1748
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1749
+  (0.0ms) rollback transaction
1750
+  (0.0ms) begin transaction
1751
+ -----------------------------------------------------------------------------
1752
+ WebConsole::EngineTest: test_blank_commands_are_expanded_to_the_rails_console
1753
+ -----------------------------------------------------------------------------
1754
+  (0.2ms) begin transaction
1755
+ ------------------------------------------------------
1756
+ WebConsole::EngineTest: test_custom_default_mount_path
1757
+ ------------------------------------------------------
1758
+  (0.1ms) begin transaction
1759
+ ---------------------------------------------------
1760
+ WebConsole::EngineTest: test_disabling_automounting
1761
+ ---------------------------------------------------
1762
+  (0.2ms) begin transaction
1763
+ ---------------------------------------------------------------
1764
+ WebConsole::EngineTest: test_present_commands_are_not_processed
1765
+ ---------------------------------------------------------------
1766
+  (0.2ms) begin transaction
1767
+ --------------------------------------------------------
1768
+ WebConsole::EngineTest: test_whitelist_multiple_networks
1769
+ --------------------------------------------------------
1770
+  (0.2ms) begin transaction
1771
+ -----------------------------------------------------
1772
+ WebConsole::EngineTest: test_whitelist_whole_networks
1773
+ -----------------------------------------------------
1774
+  (0.2ms) begin transaction
1775
+ -----------------------------------------------------------------------
1776
+ WebConsole::EngineTest: test_whitelisted_ips.include?_coerces_to_IPAddr
1777
+ -----------------------------------------------------------------------
1778
+  (0.1ms) begin transaction
1779
+ -----------------------------------------------------------------------
1780
+ WebConsole::EngineTest: test_whitelisted_ips.include?_works_with_IPAddr
1781
+ -----------------------------------------------------------------------
1782
+  (0.1ms) begin transaction
1783
+ ------------------------------------------------------------------
1784
+ WebConsole::EngineTest: test_whitelisted_ips_are_courced_to_IPAddr
1785
+ ------------------------------------------------------------------
1786
+  (0.1ms) begin transaction
1787
+ -----------------------------------------------------------------------------
1788
+ WebConsole::EngineTest: test_whitelisted_ips_are_normalized_and_unique_IPAddr
1789
+ -----------------------------------------------------------------------------
1790
+  (0.2ms) begin transaction
1791
+ ----------------------------------------------------------------
1792
+ WebConsole::SlaveTest: test_#configure_changes_@input_dimentions
1793
+ ----------------------------------------------------------------
1794
+  (0.0ms) rollback transaction
1795
+  (0.0ms) begin transaction
1796
+ -------------------------------------------------------------------------------------------
1797
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_height_is_zero
1798
+ -------------------------------------------------------------------------------------------
1799
+  (0.0ms) rollback transaction
1800
+  (0.1ms) begin transaction
1801
+ ------------------------------------------------------------------------------------------
1802
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_width_is_zero
1803
+ ------------------------------------------------------------------------------------------
1804
+  (0.0ms) rollback transaction
1805
+  (0.0ms) begin transaction
1806
+ ---------------------------------------------------------------------------
1807
+ WebConsole::SlaveTest: test_#dispose!_can_reraise_Errno::ESRCH_if_requested
1808
+ ---------------------------------------------------------------------------
1809
+  (0.0ms) rollback transaction
1810
+  (0.0ms) begin transaction
1811
+ ----------------------------------------------------------------------------------
1812
+ WebConsole::SlaveTest: test_#dispose!_sends_SIGKILL_to_the_process_and_detaches_it
1813
+ ----------------------------------------------------------------------------------
1814
+  (0.0ms) rollback transaction
1815
+  (0.1ms) begin transaction
1816
+ --------------------------------------------------------------------------
1817
+ WebConsole::SlaveTest: test_#dispose_can_reraise_Errno::ESRCH_if_requested
1818
+ --------------------------------------------------------------------------
1819
+  (0.0ms) rollback transaction
1820
+  (0.0ms) begin transaction
1821
+ ---------------------------------------------------------------------------------
1822
+ WebConsole::SlaveTest: test_#dispose_sends_SIGTERM_to_the_process_and_detaches_it
1823
+ ---------------------------------------------------------------------------------
1824
+  (0.0ms) rollback transaction
1825
+  (0.0ms) begin transaction
1826
+ --------------------------------------------------------------------------
1827
+ WebConsole::SlaveTest: test_#pending_output_always_encodes_output_in_UTF-8
1828
+ --------------------------------------------------------------------------
1829
+  (0.0ms) rollback transaction
1830
+  (0.0ms) begin transaction
1831
+ ---------------------------------------------------------------------------------------------
1832
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_EOFError
1833
+ ---------------------------------------------------------------------------------------------
1834
+  (0.0ms) rollback transaction
1835
+  (0.0ms) begin transaction
1836
+ -----------------------------------------------------------------------------------------------
1837
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_Errno::EIO
1838
+ -----------------------------------------------------------------------------------------------
1839
+  (0.0ms) rollback transaction
1840
+  (0.0ms) begin transaction
1841
+ ------------------------------------------------------------------------------------
1842
+ WebConsole::SlaveTest: test_#pending_output_returns_a_string_with_the_current_output
1843
+ ------------------------------------------------------------------------------------
1844
+  (0.0ms) rollback transaction
1845
+  (0.0ms) begin transaction
1846
+ ----------------------------------------------------------------------------
1847
+ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
1848
+ ----------------------------------------------------------------------------
1849
+  (0.0ms) rollback transaction
1850
+  (0.0ms) begin transaction
1851
+ -------------------------------------------------------------------------
1852
+ WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
1853
+ -------------------------------------------------------------------------
1854
+  (0.0ms) rollback transaction
1855
+  (0.2ms) begin transaction
1856
+ --------------------------------------------------------------------
1857
+ WebConsole::ColorsTest: test_#background=_is_an_alias_of_#background
1858
+ --------------------------------------------------------------------
1859
+  (0.0ms) rollback transaction
1860
+  (0.0ms) begin transaction
1861
+ --------------------------------------------------------------------
1862
+ WebConsole::ColorsTest: test_#background_can_be_explicitly_specified
1863
+ --------------------------------------------------------------------
1864
+  (0.0ms) rollback transaction
1865
+  (0.0ms) begin transaction
1866
+ ----------------------------------------------------------------------------
1867
+ WebConsole::ColorsTest: test_#background_is_the_first_color_if_not_specified
1868
+ ----------------------------------------------------------------------------
1869
+  (0.0ms) rollback transaction
1870
+  (0.0ms) begin transaction
1871
+ -----------------------------------------------
1872
+ WebConsole::ColorsTest: test_#default_is_:light
1873
+ -----------------------------------------------
1874
+  (0.0ms) rollback transaction
1875
+  (0.0ms) begin transaction
1876
+ --------------------------------------------------------------------
1877
+ WebConsole::ColorsTest: test_#foreground=_is_an_alias_of_#foreground
1878
+ --------------------------------------------------------------------
1879
+  (0.0ms) rollback transaction
1880
+  (0.0ms) begin transaction
1881
+ --------------------------------------------------------------------
1882
+ WebConsole::ColorsTest: test_#foreground_can_be_explicitly_specified
1883
+ --------------------------------------------------------------------
1884
+  (0.0ms) rollback transaction
1885
+  (0.0ms) begin transaction
1886
+ ---------------------------------------------------------------------------
1887
+ WebConsole::ColorsTest: test_#foreground_is_the_last_color_if_not_specified
1888
+ ---------------------------------------------------------------------------
1889
+  (0.0ms) rollback transaction
1890
+  (0.0ms) begin transaction
1891
+ --------------------------------------------------------------------------------
1892
+ WebConsole::ColorsTest: test_#to_json_includes_the_background_and_the_foreground
1893
+ --------------------------------------------------------------------------------
1894
+  (0.0ms) rollback transaction
1895
+  (0.0ms) begin transaction
1896
+ -----------------------------------------------------------
1897
+ WebConsole::ColorsTest: test_.[]_is_an_alias_for_.themes#[]
1898
+ -----------------------------------------------------------
1899
+  (0.0ms) rollback transaction
1900
+  (0.0ms) begin transaction
1901
+ ----------------------------------------------------------------------------------
1902
+ WebConsole::ColorsTest: test_.register_theme_creates_Colors_instance_for_the_block
1903
+ ----------------------------------------------------------------------------------
1904
+  (0.0ms) rollback transaction
1905
+  (0.0ms) begin transaction
1906
+ --------------------------------------------------------------------------------------
1907
+ WebConsole::ConsoleSessionTest: test_can_be_used_as_slave_as_the_methods_are_delegated
1908
+ --------------------------------------------------------------------------------------
1909
+  (0.0ms) rollback transaction
1910
+  (0.0ms) begin transaction
1911
+ --------------------------------------------------------------------------
1912
+ WebConsole::ConsoleSessionTest: test_create_gives_already_persisted_models
1913
+ --------------------------------------------------------------------------
1914
+  (0.0ms) rollback transaction
1915
+  (0.0ms) begin transaction
1916
+ ------------------------------------------------
1917
+ WebConsole::ConsoleSessionTest: test_errors_aref
1918
+ ------------------------------------------------
1919
+  (0.0ms) rollback transaction
1920
+  (0.1ms) begin transaction
1921
+ -----------------------------------------------------
1922
+ WebConsole::ConsoleSessionTest: test_find_coerces_ids
1923
+ -----------------------------------------------------
1924
+  (0.0ms) rollback transaction
1925
+  (0.0ms) begin transaction
1926
+ -------------------------------------------------
1927
+ WebConsole::ConsoleSessionTest: test_model_naming
1928
+ -------------------------------------------------
1929
+  (0.0ms) rollback transaction
1930
+  (0.0ms) begin transaction
1931
+ ------------------------------------------------------------------
1932
+ WebConsole::ConsoleSessionTest: test_no_gives_not_persisted_models
1933
+ ------------------------------------------------------------------
1934
+  (0.0ms) rollback transaction
1935
+  (0.0ms) begin transaction
1936
+ -------------------------------------------------------------------------------
1937
+ WebConsole::ConsoleSessionTest: test_not_found_exceptions_are_json_serializable
1938
+ -------------------------------------------------------------------------------
1939
+  (0.0ms) rollback transaction
1940
+  (0.0ms) begin transaction
1941
+ -----------------------------------------------
1942
+ WebConsole::ConsoleSessionTest: test_persisted?
1943
+ -----------------------------------------------
1944
+  (0.0ms) rollback transaction
1945
+  (0.0ms) begin transaction
1946
+ ----------------------------------------------------------------------------
1947
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_about_their_keys
1948
+ ----------------------------------------------------------------------------
1949
+  (0.1ms) rollback transaction
1950
+  (0.0ms) begin transaction
1951
+ -----------------------------------------------------------------------------------
1952
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_that_they_are_in_memory
1953
+ -----------------------------------------------------------------------------------
1954
+  (0.0ms) rollback transaction
1955
+  (0.0ms) begin transaction
1956
+ ---------------------------------------------------------------------------------------------
1957
+ WebConsole::ConsoleSessionTest: test_raises_ConsoleSession::Unavailable_on_not_found_sessions
1958
+ ---------------------------------------------------------------------------------------------
1959
+  (0.0ms) rollback transaction
1960
+  (0.0ms) begin transaction
1961
+ ------------------------------------------------------------------------------
1962
+ WebConsole::ConsoleSessionTest: test_slave_methods_are_cached_on_the_singleton
1963
+ ------------------------------------------------------------------------------
1964
+  (0.1ms) rollback transaction
1965
+  (0.1ms) begin transaction
1966
+ -------------------------------------------
1967
+ WebConsole::ConsoleSessionTest: test_to_key
1968
+ -------------------------------------------
1969
+  (0.0ms) rollback transaction
1970
+  (0.0ms) begin transaction
1971
+ ---------------------------------------------
1972
+ WebConsole::ConsoleSessionTest: test_to_param
1973
+ ---------------------------------------------
1974
+  (0.0ms) rollback transaction
1975
+  (0.1ms) begin transaction
1976
+ ----------------------------------------------------
1977
+ WebConsole::ConsoleSessionTest: test_to_partial_path
1978
+ ----------------------------------------------------
1979
+  (0.0ms) rollback transaction
1980
+  (0.1ms) begin transaction
1981
+ -------------------------------------------------------------------------------------
1982
+ WebConsole::ConsoleSessionsControllerTest: test_GET_index_creates_new_console_session
1983
+ -------------------------------------------------------------------------------------
1984
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1985
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
1986
+  (0.1ms) rollback transaction
1987
+  (0.1ms) begin transaction
1988
+ -------------------------------------------------------------------------------------------------
1989
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_gives_the_slave_pending_output
1990
+ -------------------------------------------------------------------------------------------------
1991
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1992
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1993
+ Processing by WebConsole::ConsoleSessionsController#pending_output as HTML
1994
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1995
+  (0.0ms) rollback transaction
1996
+  (0.1ms) begin transaction
1997
+ --------------------------------------------------------------------------------------------------------
1998
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_raises_410_on_exitted_slave_processes
1999
+ --------------------------------------------------------------------------------------------------------
2000
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2001
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
2002
+ Processing by WebConsole::ConsoleSessionsController#pending_output as HTML
2003
+ Completed 410 Gone in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2004
+  (0.0ms) rollback transaction
2005
+  (0.0ms) begin transaction
2006
+ ------------------------------------------------------------------------------------------
2007
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_configuration_adjust_the_terminal_size
2008
+ ------------------------------------------------------------------------------------------
2009
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2010
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
2011
+ Processing by WebConsole::ConsoleSessionsController#configuration as HTML
2012
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2013
+  (0.0ms) rollback transaction
2014
+  (0.0ms) begin transaction
2015
+ ----------------------------------------------------------------------------------
2016
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_sends_input_to_the_slave
2017
+ ----------------------------------------------------------------------------------
2018
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2019
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
2020
+ Processing by WebConsole::ConsoleSessionsController#input as HTML
2021
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2022
+  (0.0ms) rollback transaction
2023
+  (0.0ms) begin transaction
2024
+ -------------------------------------------------------------------------------------
2025
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_validates_for_missing_input
2026
+ -------------------------------------------------------------------------------------
2027
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2028
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2029
+ Processing by WebConsole::ConsoleSessionsController#input as HTML
2030
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2031
+  (0.0ms) rollback transaction
2032
+  (0.1ms) begin transaction
2033
+ ------------------------------------------------------------------------------------
2034
+ WebConsole::ConsoleSessionsControllerTest: test_allows_requests_from_whitelisted_ips
2035
+ ------------------------------------------------------------------------------------
2036
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2037
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2038
+  (0.0ms) rollback transaction
2039
+  (0.0ms) begin transaction
2040
+ ----------------------------------------------------------------------------------------
2041
+ WebConsole::ConsoleSessionsControllerTest: test_blocks_requests_from_non-whitelisted_ips
2042
+ ----------------------------------------------------------------------------------------
2043
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2044
+ Filter chain halted as :prevent_unauthorized_requests! rendered or redirected
2045
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2046
+  (0.0ms) rollback transaction
2047
+  (0.0ms) begin transaction
2048
+ --------------------------------------------------------------------
2049
+ WebConsole::ConsoleSessionsControllerTest: test_index_generated_path
2050
+ --------------------------------------------------------------------
2051
+  (0.0ms) rollback transaction
2052
+  (0.0ms) begin transaction
2053
+ -------------------------------------------------------------------
2054
+ WebConsole::ConsoleSessionsControllerTest: test_index_is_successful
2055
+ -------------------------------------------------------------------
2056
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2057
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2058
+  (0.1ms) rollback transaction
2059
+  (0.0ms) begin transaction
2060
+ -----------------------------------------------------------------------------
2061
+ WebConsole::EngineTest: test_blank_commands_are_expanded_to_the_rails_console
2062
+ -----------------------------------------------------------------------------
2063
+  (0.1ms) begin transaction
2064
+ ------------------------------------------------------
2065
+ WebConsole::EngineTest: test_custom_default_mount_path
2066
+ ------------------------------------------------------
2067
+  (0.1ms) begin transaction
2068
+ ---------------------------------------------------
2069
+ WebConsole::EngineTest: test_disabling_automounting
2070
+ ---------------------------------------------------
2071
+  (0.1ms) begin transaction
2072
+ ---------------------------------------------------------------
2073
+ WebConsole::EngineTest: test_present_commands_are_not_processed
2074
+ ---------------------------------------------------------------
2075
+  (0.2ms) begin transaction
2076
+ --------------------------------------------------------
2077
+ WebConsole::EngineTest: test_whitelist_multiple_networks
2078
+ --------------------------------------------------------
2079
+  (0.2ms) begin transaction
2080
+ -----------------------------------------------------
2081
+ WebConsole::EngineTest: test_whitelist_whole_networks
2082
+ -----------------------------------------------------
2083
+  (0.1ms) begin transaction
2084
+ -----------------------------------------------------------------------
2085
+ WebConsole::EngineTest: test_whitelisted_ips.include?_coerces_to_IPAddr
2086
+ -----------------------------------------------------------------------
2087
+  (0.1ms) begin transaction
2088
+ -----------------------------------------------------------------------
2089
+ WebConsole::EngineTest: test_whitelisted_ips.include?_works_with_IPAddr
2090
+ -----------------------------------------------------------------------
2091
+  (0.1ms) begin transaction
2092
+ ------------------------------------------------------------------
2093
+ WebConsole::EngineTest: test_whitelisted_ips_are_courced_to_IPAddr
2094
+ ------------------------------------------------------------------
2095
+  (0.2ms) begin transaction
2096
+ -----------------------------------------------------------------------------
2097
+ WebConsole::EngineTest: test_whitelisted_ips_are_normalized_and_unique_IPAddr
2098
+ -----------------------------------------------------------------------------
2099
+  (0.1ms) begin transaction
2100
+ ----------------------------------------------------------------
2101
+ WebConsole::SlaveTest: test_#configure_changes_@input_dimentions
2102
+ ----------------------------------------------------------------
2103
+  (0.0ms) rollback transaction
2104
+  (0.0ms) begin transaction
2105
+ -------------------------------------------------------------------------------------------
2106
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_height_is_zero
2107
+ -------------------------------------------------------------------------------------------
2108
+  (0.0ms) rollback transaction
2109
+  (0.0ms) begin transaction
2110
+ ------------------------------------------------------------------------------------------
2111
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_width_is_zero
2112
+ ------------------------------------------------------------------------------------------
2113
+  (0.0ms) rollback transaction
2114
+  (0.0ms) begin transaction
2115
+ ---------------------------------------------------------------------------
2116
+ WebConsole::SlaveTest: test_#dispose!_can_reraise_Errno::ESRCH_if_requested
2117
+ ---------------------------------------------------------------------------
2118
+  (0.0ms) rollback transaction
2119
+  (0.0ms) begin transaction
2120
+ ----------------------------------------------------------------------------------
2121
+ WebConsole::SlaveTest: test_#dispose!_sends_SIGKILL_to_the_process_and_detaches_it
2122
+ ----------------------------------------------------------------------------------
2123
+  (0.1ms) rollback transaction
2124
+  (0.0ms) begin transaction
2125
+ --------------------------------------------------------------------------
2126
+ WebConsole::SlaveTest: test_#dispose_can_reraise_Errno::ESRCH_if_requested
2127
+ --------------------------------------------------------------------------
2128
+  (0.0ms) rollback transaction
2129
+  (0.0ms) begin transaction
2130
+ ---------------------------------------------------------------------------------
2131
+ WebConsole::SlaveTest: test_#dispose_sends_SIGTERM_to_the_process_and_detaches_it
2132
+ ---------------------------------------------------------------------------------
2133
+  (0.0ms) rollback transaction
2134
+  (0.0ms) begin transaction
2135
+ --------------------------------------------------------------------------
2136
+ WebConsole::SlaveTest: test_#pending_output_always_encodes_output_in_UTF-8
2137
+ --------------------------------------------------------------------------
2138
+  (0.0ms) rollback transaction
2139
+  (0.0ms) begin transaction
2140
+ ---------------------------------------------------------------------------------------------
2141
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_EOFError
2142
+ ---------------------------------------------------------------------------------------------
2143
+  (0.0ms) rollback transaction
2144
+  (0.0ms) begin transaction
2145
+ -----------------------------------------------------------------------------------------------
2146
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_Errno::EIO
2147
+ -----------------------------------------------------------------------------------------------
2148
+  (0.0ms) rollback transaction
2149
+  (0.0ms) begin transaction
2150
+ ------------------------------------------------------------------------------------
2151
+ WebConsole::SlaveTest: test_#pending_output_returns_a_string_with_the_current_output
2152
+ ------------------------------------------------------------------------------------
2153
+  (0.0ms) rollback transaction
2154
+  (0.0ms) begin transaction
2155
+ ----------------------------------------------------------------------------
2156
+ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
2157
+ ----------------------------------------------------------------------------
2158
+  (0.0ms) rollback transaction
2159
+  (0.0ms) begin transaction
2160
+ -------------------------------------------------------------------------
2161
+ WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
2162
+ -------------------------------------------------------------------------
2163
+  (0.0ms) rollback transaction
2164
+  (0.2ms) begin transaction
2165
+ -----------------------------------------------
2166
+ IRBTest: test_captures_direct_output_from_forks
2167
+ -----------------------------------------------
2168
+  (0.1ms) rollback transaction
2169
+  (0.0ms) begin transaction
2170
+ ------------------------------------------------------
2171
+ IRBTest: test_captures_direct_output_from_subprocesses
2172
+ ------------------------------------------------------
2173
+  (0.1ms) rollback transaction
2174
+  (0.1ms) begin transaction
2175
+ -------------------------------------------
2176
+ IRBTest: test_captures_direct_stderr_output
2177
+ -------------------------------------------
2178
+  (0.1ms) rollback transaction
2179
+  (0.0ms) begin transaction
2180
+ -------------------------------------------
2181
+ IRBTest: test_captures_direct_stdout_output
2182
+ -------------------------------------------
2183
+  (0.1ms) rollback transaction
2184
+  (0.0ms) begin transaction
2185
+ --------------------------------
2186
+ IRBTest: test_multiline_sessions
2187
+ --------------------------------
2188
+  (0.1ms) rollback transaction
2189
+  (0.0ms) begin transaction
2190
+ -----------------------------------------------
2191
+ IRBTest: test_multiline_support_between_threads
2192
+ -----------------------------------------------
2193
+  (0.1ms) rollback transaction
2194
+  (0.0ms) begin transaction
2195
+ --------------------------------------------------
2196
+ IRBTest: test_preserves_the_session_in_the_binding
2197
+ --------------------------------------------------
2198
+  (0.1ms) rollback transaction
2199
+  (0.0ms) begin transaction
2200
+ ------------------------------------------------
2201
+ IRBTest: test_prompt_is_determined_by_::IRB.conf
2202
+ ------------------------------------------------
2203
+  (0.1ms) rollback transaction
2204
+  (0.0ms) begin transaction
2205
+ -------------------------------
2206
+ IRBTest: test_prompt_is_present
2207
+ -------------------------------
2208
+  (0.1ms) rollback transaction
2209
+  (0.0ms) begin transaction
2210
+ --------------------------------------------------------
2211
+ IRBTest: test_sending_input_returns_the_result_as_output
2212
+ --------------------------------------------------------
2213
+  (0.1ms) rollback transaction
2214
+  (0.1ms) begin transaction
2215
+ -----------------------------------------------------
2216
+ IRBTest: test_session_isolation_requires_own_bindings
2217
+ -----------------------------------------------------
2218
+  (0.1ms) rollback transaction
2219
+  (0.0ms) begin transaction
2220
+ ---------------------------------------------------------
2221
+ IRBTest: test_session_preservation_requires_same_bindings
2222
+ ---------------------------------------------------------
2223
+  (0.1ms) rollback transaction
2224
+  (0.1ms) begin transaction
2225
+ -------------------------------------
2226
+ REPLTest: test_captures_stderr_output
2227
+ -------------------------------------
2228
+  (0.0ms) rollback transaction
2229
+  (0.0ms) begin transaction
2230
+ -------------------------------------
2231
+ REPLTest: test_captures_stdout_output
2232
+ -------------------------------------
2233
+  (0.0ms) rollback transaction
2234
+  (0.1ms) begin transaction
2235
+ ------------------------------------------------------
2236
+ REPLTest: test_fallback_for_unsupported_config.console
2237
+ ------------------------------------------------------
2238
+  (0.0ms) rollback transaction
2239
+  (0.0ms) begin transaction
2240
+ ---------------------------------------------------
2241
+ REPLTest: test_preserves_the_session_in_the_binding
2242
+ ---------------------------------------------------
2243
+  (0.0ms) rollback transaction
2244
+  (0.0ms) begin transaction
2245
+ --------------------------------
2246
+ REPLTest: test_prompt_is_present
2247
+ --------------------------------
2248
+  (0.0ms) rollback transaction
2249
+  (0.0ms) begin transaction
2250
+ ---------------------------------------------------------
2251
+ REPLTest: test_sending_input_returns_the_result_as_output
2252
+ ---------------------------------------------------------
2253
+  (0.0ms) rollback transaction
2254
+  (0.1ms) begin transaction
2255
+ ------------------------------------------------------
2256
+ REPLTest: test_session_isolation_requires_own_bindings
2257
+ ------------------------------------------------------
2258
+  (0.1ms) rollback transaction
2259
+  (0.0ms) begin transaction
2260
+ ----------------------------------------------------------
2261
+ REPLTest: test_session_preservation_requires_same_bindings
2262
+ ----------------------------------------------------------
2263
+  (0.0ms) rollback transaction
2264
+  (0.1ms) begin transaction
2265
+ ----------------------------------------------
2266
+ REPLTest: test_standalone_adapter_registration
2267
+ ----------------------------------------------
2268
+  (0.0ms) rollback transaction
2269
+  (0.0ms) begin transaction
2270
+ --------------------------------------------------------------------
2271
+ WebConsole::ColorsTest: test_#background=_is_an_alias_of_#background
2272
+ --------------------------------------------------------------------
2273
+  (0.0ms) rollback transaction
2274
+  (0.0ms) begin transaction
2275
+ --------------------------------------------------------------------
2276
+ WebConsole::ColorsTest: test_#background_can_be_explicitly_specified
2277
+ --------------------------------------------------------------------
2278
+  (0.0ms) rollback transaction
2279
+  (0.0ms) begin transaction
2280
+ ----------------------------------------------------------------------------
2281
+ WebConsole::ColorsTest: test_#background_is_the_first_color_if_not_specified
2282
+ ----------------------------------------------------------------------------
2283
+  (0.0ms) rollback transaction
2284
+  (0.0ms) begin transaction
2285
+ -----------------------------------------------
2286
+ WebConsole::ColorsTest: test_#default_is_:light
2287
+ -----------------------------------------------
2288
+  (0.0ms) rollback transaction
2289
+  (0.0ms) begin transaction
2290
+ --------------------------------------------------------------------
2291
+ WebConsole::ColorsTest: test_#foreground=_is_an_alias_of_#foreground
2292
+ --------------------------------------------------------------------
2293
+  (0.0ms) rollback transaction
2294
+  (0.0ms) begin transaction
2295
+ --------------------------------------------------------------------
2296
+ WebConsole::ColorsTest: test_#foreground_can_be_explicitly_specified
2297
+ --------------------------------------------------------------------
2298
+  (0.0ms) rollback transaction
2299
+  (0.0ms) begin transaction
2300
+ ---------------------------------------------------------------------------
2301
+ WebConsole::ColorsTest: test_#foreground_is_the_last_color_if_not_specified
2302
+ ---------------------------------------------------------------------------
2303
+  (0.0ms) rollback transaction
2304
+  (0.0ms) begin transaction
2305
+ --------------------------------------------------------------------------------
2306
+ WebConsole::ColorsTest: test_#to_json_includes_the_background_and_the_foreground
2307
+ --------------------------------------------------------------------------------
2308
+  (0.0ms) rollback transaction
2309
+  (0.1ms) begin transaction
2310
+ -----------------------------------------------------------
2311
+ WebConsole::ColorsTest: test_.[]_is_an_alias_for_.themes#[]
2312
+ -----------------------------------------------------------
2313
+  (0.0ms) rollback transaction
2314
+  (0.0ms) begin transaction
2315
+ ----------------------------------------------------------------------------------
2316
+ WebConsole::ColorsTest: test_.register_theme_creates_Colors_instance_for_the_block
2317
+ ----------------------------------------------------------------------------------
2318
+  (0.0ms) rollback transaction
2319
+  (0.0ms) begin transaction
2320
+ --------------------------------------------------------------------------------------
2321
+ WebConsole::ConsoleSessionTest: test_can_be_used_as_slave_as_the_methods_are_delegated
2322
+ --------------------------------------------------------------------------------------
2323
+  (0.0ms) rollback transaction
2324
+  (0.0ms) begin transaction
2325
+ --------------------------------------------------------------------------
2326
+ WebConsole::ConsoleSessionTest: test_create_gives_already_persisted_models
2327
+ --------------------------------------------------------------------------
2328
+  (0.0ms) rollback transaction
2329
+  (0.0ms) begin transaction
2330
+ ------------------------------------------------
2331
+ WebConsole::ConsoleSessionTest: test_errors_aref
2332
+ ------------------------------------------------
2333
+  (0.0ms) rollback transaction
2334
+  (0.0ms) begin transaction
2335
+ -----------------------------------------------------
2336
+ WebConsole::ConsoleSessionTest: test_find_coerces_ids
2337
+ -----------------------------------------------------
2338
+  (0.0ms) rollback transaction
2339
+  (0.0ms) begin transaction
2340
+ -------------------------------------------------
2341
+ WebConsole::ConsoleSessionTest: test_model_naming
2342
+ -------------------------------------------------
2343
+  (0.0ms) rollback transaction
2344
+  (0.1ms) begin transaction
2345
+ ------------------------------------------------------------------
2346
+ WebConsole::ConsoleSessionTest: test_no_gives_not_persisted_models
2347
+ ------------------------------------------------------------------
2348
+  (0.0ms) rollback transaction
2349
+  (0.0ms) begin transaction
2350
+ -------------------------------------------------------------------------------
2351
+ WebConsole::ConsoleSessionTest: test_not_found_exceptions_are_json_serializable
2352
+ -------------------------------------------------------------------------------
2353
+  (0.0ms) rollback transaction
2354
+  (0.0ms) begin transaction
2355
+ -----------------------------------------------
2356
+ WebConsole::ConsoleSessionTest: test_persisted?
2357
+ -----------------------------------------------
2358
+  (0.0ms) rollback transaction
2359
+  (0.0ms) begin transaction
2360
+ ----------------------------------------------------------------------------
2361
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_about_their_keys
2362
+ ----------------------------------------------------------------------------
2363
+  (0.1ms) rollback transaction
2364
+  (0.0ms) begin transaction
2365
+ -----------------------------------------------------------------------------------
2366
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_that_they_are_in_memory
2367
+ -----------------------------------------------------------------------------------
2368
+  (0.0ms) rollback transaction
2369
+  (0.0ms) begin transaction
2370
+ ---------------------------------------------------------------------------------------------
2371
+ WebConsole::ConsoleSessionTest: test_raises_ConsoleSession::Unavailable_on_not_found_sessions
2372
+ ---------------------------------------------------------------------------------------------
2373
+  (0.0ms) rollback transaction
2374
+  (0.0ms) begin transaction
2375
+ ------------------------------------------------------------------------------
2376
+ WebConsole::ConsoleSessionTest: test_slave_methods_are_cached_on_the_singleton
2377
+ ------------------------------------------------------------------------------
2378
+  (0.0ms) rollback transaction
2379
+  (0.0ms) begin transaction
2380
+ -------------------------------------------
2381
+ WebConsole::ConsoleSessionTest: test_to_key
2382
+ -------------------------------------------
2383
+  (0.0ms) rollback transaction
2384
+  (0.1ms) begin transaction
2385
+ ---------------------------------------------
2386
+ WebConsole::ConsoleSessionTest: test_to_param
2387
+ ---------------------------------------------
2388
+  (0.0ms) rollback transaction
2389
+  (0.1ms) begin transaction
2390
+ ----------------------------------------------------
2391
+ WebConsole::ConsoleSessionTest: test_to_partial_path
2392
+ ----------------------------------------------------
2393
+  (0.0ms) rollback transaction
2394
+  (0.0ms) begin transaction
2395
+ -------------------------------------------------------------------------------------
2396
+ WebConsole::ConsoleSessionsControllerTest: test_GET_index_creates_new_console_session
2397
+ -------------------------------------------------------------------------------------
2398
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2399
+ Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.0ms)
2400
+  (0.1ms) rollback transaction
2401
+  (0.0ms) begin transaction
2402
+ -------------------------------------------------------------------------------------------------
2403
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_gives_the_slave_pending_output
2404
+ -------------------------------------------------------------------------------------------------
2405
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2406
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2407
+ Processing by WebConsole::ConsoleSessionsController#pending_output as HTML
2408
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2409
+  (0.0ms) rollback transaction
2410
+  (0.1ms) begin transaction
2411
+ --------------------------------------------------------------------------------------------------------
2412
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_raises_410_on_exitted_slave_processes
2413
+ --------------------------------------------------------------------------------------------------------
2414
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2415
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2416
+ Processing by WebConsole::ConsoleSessionsController#pending_output as HTML
2417
+ Completed 410 Gone in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2418
+  (0.1ms) rollback transaction
2419
+  (0.0ms) begin transaction
2420
+ ------------------------------------------------------------------------------------------
2421
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_configuration_adjust_the_terminal_size
2422
+ ------------------------------------------------------------------------------------------
2423
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2424
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2425
+ Processing by WebConsole::ConsoleSessionsController#configuration as HTML
2426
+ Unpermitted parameters: id
2427
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
2428
+  (0.1ms) rollback transaction
2429
+  (0.0ms) begin transaction
2430
+ ----------------------------------------------------------------------------------
2431
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_sends_input_to_the_slave
2432
+ ----------------------------------------------------------------------------------
2433
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2434
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
2435
+ Processing by WebConsole::ConsoleSessionsController#input as HTML
2436
+ Unpermitted parameters: id
2437
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2438
+  (0.1ms) rollback transaction
2439
+  (0.0ms) begin transaction
2440
+ -------------------------------------------------------------------------------------
2441
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_validates_for_missing_input
2442
+ -------------------------------------------------------------------------------------
2443
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2444
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2445
+ Processing by WebConsole::ConsoleSessionsController#input as HTML
2446
+ Unpermitted parameters: id
2447
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2448
+  (0.1ms) rollback transaction
2449
+  (0.1ms) begin transaction
2450
+ ------------------------------------------------------------------------------------
2451
+ WebConsole::ConsoleSessionsControllerTest: test_allows_requests_from_whitelisted_ips
2452
+ ------------------------------------------------------------------------------------
2453
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2454
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2455
+  (0.0ms) rollback transaction
2456
+  (0.0ms) begin transaction
2457
+ ----------------------------------------------------------------------------------------
2458
+ WebConsole::ConsoleSessionsControllerTest: test_blocks_requests_from_non-whitelisted_ips
2459
+ ----------------------------------------------------------------------------------------
2460
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2461
+ Filter chain halted as :prevent_unauthorized_requests! rendered or redirected
2462
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2463
+  (0.0ms) rollback transaction
2464
+  (0.1ms) begin transaction
2465
+ --------------------------------------------------------------------
2466
+ WebConsole::ConsoleSessionsControllerTest: test_index_generated_path
2467
+ --------------------------------------------------------------------
2468
+  (0.0ms) rollback transaction
2469
+  (0.0ms) begin transaction
2470
+ -------------------------------------------------------------------
2471
+ WebConsole::ConsoleSessionsControllerTest: test_index_is_successful
2472
+ -------------------------------------------------------------------
2473
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2474
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2475
+  (0.0ms) rollback transaction
2476
+  (0.0ms) begin transaction
2477
+ -----------------------------------------------------------------------------
2478
+ WebConsole::EngineTest: test_blank_commands_are_expanded_to_the_rails_console
2479
+ -----------------------------------------------------------------------------
2480
+  (0.2ms) begin transaction
2481
+ ------------------------------------------------------
2482
+ WebConsole::EngineTest: test_custom_default_mount_path
2483
+ ------------------------------------------------------
2484
+  (0.2ms) begin transaction
2485
+ ---------------------------------------------------
2486
+ WebConsole::EngineTest: test_disabling_automounting
2487
+ ---------------------------------------------------
2488
+  (0.1ms) begin transaction
2489
+ ---------------------------------------------------------------
2490
+ WebConsole::EngineTest: test_present_commands_are_not_processed
2491
+ ---------------------------------------------------------------
2492
+  (0.2ms) begin transaction
2493
+ --------------------------------------------------------
2494
+ WebConsole::EngineTest: test_whitelist_multiple_networks
2495
+ --------------------------------------------------------
2496
+  (0.2ms) begin transaction
2497
+ -----------------------------------------------------
2498
+ WebConsole::EngineTest: test_whitelist_whole_networks
2499
+ -----------------------------------------------------
2500
+  (0.2ms) begin transaction
2501
+ -----------------------------------------------------------------------
2502
+ WebConsole::EngineTest: test_whitelisted_ips.include?_coerces_to_IPAddr
2503
+ -----------------------------------------------------------------------
2504
+  (0.2ms) begin transaction
2505
+ -----------------------------------------------------------------------
2506
+ WebConsole::EngineTest: test_whitelisted_ips.include?_works_with_IPAddr
2507
+ -----------------------------------------------------------------------
2508
+  (0.2ms) begin transaction
2509
+ ------------------------------------------------------------------
2510
+ WebConsole::EngineTest: test_whitelisted_ips_are_courced_to_IPAddr
2511
+ ------------------------------------------------------------------
2512
+  (0.2ms) begin transaction
2513
+ -----------------------------------------------------------------------------
2514
+ WebConsole::EngineTest: test_whitelisted_ips_are_normalized_and_unique_IPAddr
2515
+ -----------------------------------------------------------------------------
2516
+  (0.2ms) begin transaction
2517
+ ----------------------------------------------------------------
2518
+ WebConsole::SlaveTest: test_#configure_changes_@input_dimentions
2519
+ ----------------------------------------------------------------
2520
+  (0.1ms) rollback transaction
2521
+  (0.0ms) begin transaction
2522
+ -------------------------------------------------------------------------------------------
2523
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_height_is_zero
2524
+ -------------------------------------------------------------------------------------------
2525
+  (0.1ms) rollback transaction
2526
+  (0.0ms) begin transaction
2527
+ ------------------------------------------------------------------------------------------
2528
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_width_is_zero
2529
+ ------------------------------------------------------------------------------------------
2530
+  (0.1ms) rollback transaction
2531
+  (0.0ms) begin transaction
2532
+ ---------------------------------------------------------------------------
2533
+ WebConsole::SlaveTest: test_#dispose!_can_reraise_Errno::ESRCH_if_requested
2534
+ ---------------------------------------------------------------------------
2535
+  (0.0ms) rollback transaction
2536
+  (0.0ms) begin transaction
2537
+ ----------------------------------------------------------------------------------
2538
+ WebConsole::SlaveTest: test_#dispose!_sends_SIGKILL_to_the_process_and_detaches_it
2539
+ ----------------------------------------------------------------------------------
2540
+  (0.0ms) rollback transaction
2541
+  (0.0ms) begin transaction
2542
+ --------------------------------------------------------------------------
2543
+ WebConsole::SlaveTest: test_#dispose_can_reraise_Errno::ESRCH_if_requested
2544
+ --------------------------------------------------------------------------
2545
+  (0.0ms) rollback transaction
2546
+  (0.0ms) begin transaction
2547
+ ---------------------------------------------------------------------------------
2548
+ WebConsole::SlaveTest: test_#dispose_sends_SIGTERM_to_the_process_and_detaches_it
2549
+ ---------------------------------------------------------------------------------
2550
+  (0.0ms) rollback transaction
2551
+  (0.0ms) begin transaction
2552
+ --------------------------------------------------------------------------
2553
+ WebConsole::SlaveTest: test_#pending_output_always_encodes_output_in_UTF-8
2554
+ --------------------------------------------------------------------------
2555
+  (0.0ms) rollback transaction
2556
+  (0.1ms) begin transaction
2557
+ ---------------------------------------------------------------------------------------------
2558
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_EOFError
2559
+ ---------------------------------------------------------------------------------------------
2560
+  (0.0ms) rollback transaction
2561
+  (0.1ms) begin transaction
2562
+ -----------------------------------------------------------------------------------------------
2563
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_Errno::EIO
2564
+ -----------------------------------------------------------------------------------------------
2565
+  (0.0ms) rollback transaction
2566
+  (0.1ms) begin transaction
2567
+ ------------------------------------------------------------------------------------
2568
+ WebConsole::SlaveTest: test_#pending_output_returns_a_string_with_the_current_output
2569
+ ------------------------------------------------------------------------------------
2570
+  (0.1ms) rollback transaction
2571
+  (0.0ms) begin transaction
2572
+ ----------------------------------------------------------------------------
2573
+ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
2574
+ ----------------------------------------------------------------------------
2575
+  (0.0ms) rollback transaction
2576
+  (0.0ms) begin transaction
2577
+ -------------------------------------------------------------------------
2578
+ WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
2579
+ -------------------------------------------------------------------------
2580
+  (0.0ms) rollback transaction
2581
+  (0.2ms) begin transaction
2582
+ --------------------------------------------------------------------
2583
+ WebConsole::ColorsTest: test_#background=_is_an_alias_of_#background
2584
+ --------------------------------------------------------------------
2585
+  (0.0ms) rollback transaction
2586
+  (0.1ms) begin transaction
2587
+ --------------------------------------------------------------------
2588
+ WebConsole::ColorsTest: test_#background_can_be_explicitly_specified
2589
+ --------------------------------------------------------------------
2590
+  (0.0ms) rollback transaction
2591
+  (0.0ms) begin transaction
2592
+ ----------------------------------------------------------------------------
2593
+ WebConsole::ColorsTest: test_#background_is_the_first_color_if_not_specified
2594
+ ----------------------------------------------------------------------------
2595
+  (0.0ms) rollback transaction
2596
+  (0.0ms) begin transaction
2597
+ -----------------------------------------------
2598
+ WebConsole::ColorsTest: test_#default_is_:light
2599
+ -----------------------------------------------
2600
+  (0.0ms) rollback transaction
2601
+  (0.0ms) begin transaction
2602
+ --------------------------------------------------------------------
2603
+ WebConsole::ColorsTest: test_#foreground=_is_an_alias_of_#foreground
2604
+ --------------------------------------------------------------------
2605
+  (0.0ms) rollback transaction
2606
+  (0.0ms) begin transaction
2607
+ --------------------------------------------------------------------
2608
+ WebConsole::ColorsTest: test_#foreground_can_be_explicitly_specified
2609
+ --------------------------------------------------------------------
2610
+  (0.0ms) rollback transaction
2611
+  (0.0ms) begin transaction
2612
+ ---------------------------------------------------------------------------
2613
+ WebConsole::ColorsTest: test_#foreground_is_the_last_color_if_not_specified
2614
+ ---------------------------------------------------------------------------
2615
+  (0.0ms) rollback transaction
2616
+  (0.0ms) begin transaction
2617
+ --------------------------------------------------------------------------------
2618
+ WebConsole::ColorsTest: test_#to_json_includes_the_background_and_the_foreground
2619
+ --------------------------------------------------------------------------------
2620
+  (0.0ms) rollback transaction
2621
+  (0.0ms) begin transaction
2622
+ -----------------------------------------------------------
2623
+ WebConsole::ColorsTest: test_.[]_is_an_alias_for_.themes#[]
2624
+ -----------------------------------------------------------
2625
+  (0.0ms) rollback transaction
2626
+  (0.0ms) begin transaction
2627
+ ----------------------------------------------------------------------------------
2628
+ WebConsole::ColorsTest: test_.register_theme_creates_Colors_instance_for_the_block
2629
+ ----------------------------------------------------------------------------------
2630
+  (0.0ms) rollback transaction
2631
+  (0.1ms) begin transaction
2632
+ --------------------------------------------------------------------------------------
2633
+ WebConsole::ConsoleSessionTest: test_can_be_used_as_slave_as_the_methods_are_delegated
2634
+ --------------------------------------------------------------------------------------
2635
+  (0.0ms) rollback transaction
2636
+  (0.0ms) begin transaction
2637
+ --------------------------------------------------------------------------
2638
+ WebConsole::ConsoleSessionTest: test_create_gives_already_persisted_models
2639
+ --------------------------------------------------------------------------
2640
+  (0.0ms) rollback transaction
2641
+  (0.0ms) begin transaction
2642
+ ------------------------------------------------
2643
+ WebConsole::ConsoleSessionTest: test_errors_aref
2644
+ ------------------------------------------------
2645
+  (0.1ms) rollback transaction
2646
+  (0.0ms) begin transaction
2647
+ -----------------------------------------------------
2648
+ WebConsole::ConsoleSessionTest: test_find_coerces_ids
2649
+ -----------------------------------------------------
2650
+  (0.0ms) rollback transaction
2651
+  (0.0ms) begin transaction
2652
+ -------------------------------------------------
2653
+ WebConsole::ConsoleSessionTest: test_model_naming
2654
+ -------------------------------------------------
2655
+  (0.1ms) rollback transaction
2656
+  (0.0ms) begin transaction
2657
+ ------------------------------------------------------------------
2658
+ WebConsole::ConsoleSessionTest: test_no_gives_not_persisted_models
2659
+ ------------------------------------------------------------------
2660
+  (0.0ms) rollback transaction
2661
+  (0.0ms) begin transaction
2662
+ -------------------------------------------------------------------------------
2663
+ WebConsole::ConsoleSessionTest: test_not_found_exceptions_are_JSON_serializable
2664
+ -------------------------------------------------------------------------------
2665
+  (0.0ms) rollback transaction
2666
+  (0.0ms) begin transaction
2667
+ -----------------------------------------------
2668
+ WebConsole::ConsoleSessionTest: test_persisted?
2669
+ -----------------------------------------------
2670
+  (0.0ms) rollback transaction
2671
+  (0.0ms) begin transaction
2672
+ ----------------------------------------------------------------------------
2673
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_about_their_keys
2674
+ ----------------------------------------------------------------------------
2675
+  (0.1ms) rollback transaction
2676
+  (0.0ms) begin transaction
2677
+ -----------------------------------------------------------------------------------
2678
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_that_they_are_in_memory
2679
+ -----------------------------------------------------------------------------------
2680
+  (0.0ms) rollback transaction
2681
+  (0.0ms) begin transaction
2682
+ ---------------------------------------------------------------------------------------------
2683
+ WebConsole::ConsoleSessionTest: test_raises_ConsoleSession::Unavailable_on_not_found_sessions
2684
+ ---------------------------------------------------------------------------------------------
2685
+  (0.0ms) rollback transaction
2686
+  (0.0ms) begin transaction
2687
+ ------------------------------------------------------------------------------
2688
+ WebConsole::ConsoleSessionTest: test_slave_methods_are_cached_on_the_singleton
2689
+ ------------------------------------------------------------------------------
2690
+  (0.0ms) rollback transaction
2691
+  (0.0ms) begin transaction
2692
+ -------------------------------------------
2693
+ WebConsole::ConsoleSessionTest: test_to_key
2694
+ -------------------------------------------
2695
+  (0.0ms) rollback transaction
2696
+  (0.0ms) begin transaction
2697
+ ---------------------------------------------
2698
+ WebConsole::ConsoleSessionTest: test_to_param
2699
+ ---------------------------------------------
2700
+  (0.0ms) rollback transaction
2701
+  (0.0ms) begin transaction
2702
+ ----------------------------------------------------
2703
+ WebConsole::ConsoleSessionTest: test_to_partial_path
2704
+ ----------------------------------------------------
2705
+  (0.0ms) rollback transaction
2706
+  (0.0ms) begin transaction
2707
+ -------------------------------------------------------------------------------------
2708
+ WebConsole::ConsoleSessionsControllerTest: test_GET_index_creates_new_console_session
2709
+ -------------------------------------------------------------------------------------
2710
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2711
+ Completed 200 OK in 29ms (Views: 29.0ms | ActiveRecord: 0.0ms)
2712
+  (0.1ms) rollback transaction
2713
+  (0.0ms) begin transaction
2714
+ -------------------------------------------------------------------------------------------------
2715
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_gives_the_slave_pending_output
2716
+ -------------------------------------------------------------------------------------------------
2717
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2718
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
2719
+ Processing by WebConsole::ConsoleSessionsController#pending_output as HTML
2720
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2721
+  (0.1ms) rollback transaction
2722
+  (0.0ms) begin transaction
2723
+ --------------------------------------------------------------------------------------------------------
2724
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_raises_410_on_exitted_slave_processes
2725
+ --------------------------------------------------------------------------------------------------------
2726
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2727
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2728
+ Processing by WebConsole::ConsoleSessionsController#pending_output as HTML
2729
+ Completed 410 Gone in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2730
+  (0.0ms) rollback transaction
2731
+  (0.0ms) begin transaction
2732
+ ------------------------------------------------------------------------------------------
2733
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_configuration_adjust_the_terminal_size
2734
+ ------------------------------------------------------------------------------------------
2735
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2736
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2737
+ Processing by WebConsole::ConsoleSessionsController#configuration as HTML
2738
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2739
+  (0.1ms) rollback transaction
2740
+  (0.0ms) begin transaction
2741
+ ----------------------------------------------------------------------------------
2742
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_sends_input_to_the_slave
2743
+ ----------------------------------------------------------------------------------
2744
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2745
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2746
+ Processing by WebConsole::ConsoleSessionsController#input as HTML
2747
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2748
+  (0.1ms) rollback transaction
2749
+  (0.1ms) begin transaction
2750
+ -------------------------------------------------------------------------------------
2751
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_validates_for_missing_input
2752
+ -------------------------------------------------------------------------------------
2753
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2754
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2755
+ Processing by WebConsole::ConsoleSessionsController#input as HTML
2756
+ Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2757
+  (0.1ms) rollback transaction
2758
+  (0.0ms) begin transaction
2759
+ ------------------------------------------------------------------------------------
2760
+ WebConsole::ConsoleSessionsControllerTest: test_allows_requests_from_whitelisted_ips
2761
+ ------------------------------------------------------------------------------------
2762
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2763
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2764
+  (0.0ms) rollback transaction
2765
+  (0.0ms) begin transaction
2766
+ ----------------------------------------------------------------------------------------
2767
+ WebConsole::ConsoleSessionsControllerTest: test_blocks_requests_from_non-whitelisted_ips
2768
+ ----------------------------------------------------------------------------------------
2769
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2770
+ Filter chain halted as :prevent_unauthorized_requests! rendered or redirected
2771
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2772
+  (0.0ms) rollback transaction
2773
+  (0.0ms) begin transaction
2774
+ --------------------------------------------------------------------
2775
+ WebConsole::ConsoleSessionsControllerTest: test_index_generated_path
2776
+ --------------------------------------------------------------------
2777
+  (0.0ms) rollback transaction
2778
+  (0.0ms) begin transaction
2779
+ -------------------------------------------------------------------
2780
+ WebConsole::ConsoleSessionsControllerTest: test_index_is_successful
2781
+ -------------------------------------------------------------------
2782
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2783
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2784
+  (0.0ms) rollback transaction
2785
+  (0.0ms) begin transaction
2786
+ -----------------------------------------------------------------------------
2787
+ WebConsole::EngineTest: test_blank_commands_are_expanded_to_the_rails_console
2788
+ -----------------------------------------------------------------------------
2789
+  (0.2ms) begin transaction
2790
+ ------------------------------------------------------
2791
+ WebConsole::EngineTest: test_custom_default_mount_path
2792
+ ------------------------------------------------------
2793
+  (0.2ms) begin transaction
2794
+ ---------------------------------------------------
2795
+ WebConsole::EngineTest: test_disabling_automounting
2796
+ ---------------------------------------------------
2797
+  (0.1ms) begin transaction
2798
+ ---------------------------------------------------------------
2799
+ WebConsole::EngineTest: test_present_commands_are_not_processed
2800
+ ---------------------------------------------------------------
2801
+  (0.2ms) begin transaction
2802
+ --------------------------------------------------------
2803
+ WebConsole::EngineTest: test_whitelist_multiple_networks
2804
+ --------------------------------------------------------
2805
+  (0.2ms) begin transaction
2806
+ -----------------------------------------------------
2807
+ WebConsole::EngineTest: test_whitelist_whole_networks
2808
+ -----------------------------------------------------
2809
+  (0.2ms) begin transaction
2810
+ -----------------------------------------------------------------------
2811
+ WebConsole::EngineTest: test_whitelisted_ips.include?_coerces_to_IPAddr
2812
+ -----------------------------------------------------------------------
2813
+  (0.1ms) begin transaction
2814
+ -----------------------------------------------------------------------
2815
+ WebConsole::EngineTest: test_whitelisted_ips.include?_works_with_IPAddr
2816
+ -----------------------------------------------------------------------
2817
+  (0.2ms) begin transaction
2818
+ ------------------------------------------------------------------
2819
+ WebConsole::EngineTest: test_whitelisted_ips_are_courced_to_IPAddr
2820
+ ------------------------------------------------------------------
2821
+  (0.1ms) begin transaction
2822
+ -----------------------------------------------------------------------------
2823
+ WebConsole::EngineTest: test_whitelisted_ips_are_normalized_and_unique_IPAddr
2824
+ -----------------------------------------------------------------------------
2825
+  (0.2ms) begin transaction
2826
+ ----------------------------------------------------------------
2827
+ WebConsole::SlaveTest: test_#configure_changes_@input_dimentions
2828
+ ----------------------------------------------------------------
2829
+  (0.0ms) rollback transaction
2830
+  (0.0ms) begin transaction
2831
+ -------------------------------------------------------------------------------------------
2832
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_height_is_zero
2833
+ -------------------------------------------------------------------------------------------
2834
+  (0.0ms) rollback transaction
2835
+  (0.0ms) begin transaction
2836
+ ------------------------------------------------------------------------------------------
2837
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_width_is_zero
2838
+ ------------------------------------------------------------------------------------------
2839
+  (0.0ms) rollback transaction
2840
+  (0.0ms) begin transaction
2841
+ ---------------------------------------------------------------------------
2842
+ WebConsole::SlaveTest: test_#dispose!_can_reraise_Errno::ESRCH_if_requested
2843
+ ---------------------------------------------------------------------------
2844
+  (0.0ms) rollback transaction
2845
+  (0.0ms) begin transaction
2846
+ ----------------------------------------------------------------------------------
2847
+ WebConsole::SlaveTest: test_#dispose!_sends_SIGKILL_to_the_process_and_detaches_it
2848
+ ----------------------------------------------------------------------------------
2849
+  (0.0ms) rollback transaction
2850
+  (0.0ms) begin transaction
2851
+ --------------------------------------------------------------------------
2852
+ WebConsole::SlaveTest: test_#dispose_can_reraise_Errno::ESRCH_if_requested
2853
+ --------------------------------------------------------------------------
2854
+  (0.0ms) rollback transaction
2855
+  (0.0ms) begin transaction
2856
+ ---------------------------------------------------------------------------------
2857
+ WebConsole::SlaveTest: test_#dispose_sends_SIGTERM_to_the_process_and_detaches_it
2858
+ ---------------------------------------------------------------------------------
2859
+  (0.0ms) rollback transaction
2860
+  (0.0ms) begin transaction
2861
+ --------------------------------------------------------------------------
2862
+ WebConsole::SlaveTest: test_#pending_output_always_encodes_output_in_UTF-8
2863
+ --------------------------------------------------------------------------
2864
+  (0.0ms) rollback transaction
2865
+  (0.0ms) begin transaction
2866
+ ---------------------------------------------------------------------------------------------
2867
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_EOFError
2868
+ ---------------------------------------------------------------------------------------------
2869
+  (0.1ms) rollback transaction
2870
+  (0.0ms) begin transaction
2871
+ -----------------------------------------------------------------------------------------------
2872
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_Errno::EIO
2873
+ -----------------------------------------------------------------------------------------------
2874
+  (0.0ms) rollback transaction
2875
+  (0.0ms) begin transaction
2876
+ ------------------------------------------------------------------------------------
2877
+ WebConsole::SlaveTest: test_#pending_output_returns_a_string_with_the_current_output
2878
+ ------------------------------------------------------------------------------------
2879
+  (0.0ms) rollback transaction
2880
+  (0.0ms) begin transaction
2881
+ ----------------------------------------------------------------------------
2882
+ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
2883
+ ----------------------------------------------------------------------------
2884
+  (0.1ms) rollback transaction
2885
+  (0.0ms) begin transaction
2886
+ -------------------------------------------------------------------------
2887
+ WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
2888
+ -------------------------------------------------------------------------
2889
+  (0.0ms) rollback transaction
2890
+  (0.2ms) begin transaction
2891
+ -------------------------------------
2892
+ REPLTest: test_captures_stderr_output
2893
+ -------------------------------------
2894
+  (0.0ms) rollback transaction
2895
+  (0.0ms) begin transaction
2896
+ -------------------------------------
2897
+ REPLTest: test_captures_stdout_output
2898
+ -------------------------------------
2899
+  (0.0ms) rollback transaction
2900
+  (0.0ms) begin transaction
2901
+ ------------------------------
2902
+ REPLTest: test_extract_sources
2903
+ ------------------------------
2904
+  (0.0ms) rollback transaction
2905
+  (0.1ms) begin transaction
2906
+ ---------------------------------------------------
2907
+ REPLTest: test_preserves_the_session_in_the_binding
2908
+ ---------------------------------------------------
2909
+  (0.0ms) rollback transaction
2910
+  (0.1ms) begin transaction
2911
+ --------------------------------
2912
+ REPLTest: test_prompt_is_present
2913
+ --------------------------------
2914
+  (0.0ms) rollback transaction
2915
+  (0.0ms) begin transaction
2916
+ ---------------------------------------------------------
2917
+ REPLTest: test_sending_input_returns_the_result_as_output
2918
+ ---------------------------------------------------------
2919
+  (0.1ms) rollback transaction
2920
+  (0.0ms) begin transaction
2921
+ ----------------------------------------------------------
2922
+ REPLTest: test_session_preservation_requires_same_bindings
2923
+ ----------------------------------------------------------
2924
+  (0.0ms) rollback transaction
2925
+  (0.0ms) begin transaction
2926
+ -----------------------------------------------------------------------
2927
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
2928
+ -----------------------------------------------------------------------
2929
+  (0.0ms) rollback transaction
2930
+  (0.0ms) begin transaction
2931
+ --------------------------------------------------
2932
+ WebConsole::REPLSessionTest: test_find_coerces_ids
2933
+ --------------------------------------------------
2934
+  (0.0ms) rollback transaction
2935
+  (0.0ms) begin transaction
2936
+ ---------------------------------------------------------------
2937
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
2938
+ ---------------------------------------------------------------
2939
+  (0.0ms) rollback transaction
2940
+  (0.1ms) begin transaction
2941
+ ----------------------------------------------------------------------------
2942
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
2943
+ ----------------------------------------------------------------------------
2944
+  (0.0ms) rollback transaction
2945
+  (0.1ms) begin transaction
2946
+ ------------------------------------------------------------------------------------------------
2947
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
2948
+ ------------------------------------------------------------------------------------------------
2949
+  (0.0ms) rollback transaction
2950
+  (0.2ms) begin transaction
2951
+ --------------------------------------------------------------------------------------------------------
2952
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
2953
+ --------------------------------------------------------------------------------------------------------
2954
+  (0.0ms) rollback transaction
2955
+  (0.0ms) begin transaction
2956
+ -------------------------------------
2957
+ REPLTest: test_captures_stderr_output
2958
+ -------------------------------------
2959
+  (0.1ms) rollback transaction
2960
+  (0.0ms) begin transaction
2961
+ -------------------------------------
2962
+ REPLTest: test_captures_stdout_output
2963
+ -------------------------------------
2964
+  (0.1ms) rollback transaction
2965
+  (0.0ms) begin transaction
2966
+ ---------------------------------------------------
2967
+ REPLTest: test_preserves_the_session_in_the_binding
2968
+ ---------------------------------------------------
2969
+  (0.0ms) rollback transaction
2970
+  (0.0ms) begin transaction
2971
+ --------------------------------
2972
+ REPLTest: test_prompt_is_present
2973
+ --------------------------------
2974
+  (0.0ms) rollback transaction
2975
+  (0.0ms) begin transaction
2976
+ ---------------------------------------------------------
2977
+ REPLTest: test_sending_input_returns_the_result_as_output
2978
+ ---------------------------------------------------------
2979
+  (0.1ms) rollback transaction
2980
+  (0.0ms) begin transaction
2981
+ ----------------------------------------------------------
2982
+ REPLTest: test_session_preservation_requires_same_bindings
2983
+ ----------------------------------------------------------
2984
+  (0.1ms) rollback transaction
2985
+  (0.0ms) begin transaction
2986
+ -----------------------------------------------------------------------
2987
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
2988
+ -----------------------------------------------------------------------
2989
+  (0.1ms) rollback transaction
2990
+  (0.0ms) begin transaction
2991
+ --------------------------------------------------
2992
+ WebConsole::REPLSessionTest: test_find_coerces_ids
2993
+ --------------------------------------------------
2994
+  (0.0ms) rollback transaction
2995
+  (0.0ms) begin transaction
2996
+ ---------------------------------------------------------------
2997
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
2998
+ ---------------------------------------------------------------
2999
+  (0.0ms) rollback transaction
3000
+  (0.0ms) begin transaction
3001
+ ----------------------------------------------------------------------------
3002
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
3003
+ ----------------------------------------------------------------------------
3004
+  (0.0ms) rollback transaction
3005
+  (0.0ms) begin transaction
3006
+ ------------------------------------------------------------------------------------------------
3007
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
3008
+ ------------------------------------------------------------------------------------------------
3009
+  (0.0ms) rollback transaction
3010
+  (0.2ms) begin transaction
3011
+ --------------------------------------------------------------------------------------------------------
3012
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
3013
+ --------------------------------------------------------------------------------------------------------
3014
+  (0.0ms) rollback transaction
3015
+  (0.0ms) begin transaction
3016
+ -------------------------------------
3017
+ REPLTest: test_captures_stderr_output
3018
+ -------------------------------------
3019
+  (0.0ms) rollback transaction
3020
+  (0.0ms) begin transaction
3021
+ -------------------------------------
3022
+ REPLTest: test_captures_stdout_output
3023
+ -------------------------------------
3024
+  (0.0ms) rollback transaction
3025
+  (0.0ms) begin transaction
3026
+ ---------------------------------------------------
3027
+ REPLTest: test_preserves_the_session_in_the_binding
3028
+ ---------------------------------------------------
3029
+  (0.0ms) rollback transaction
3030
+  (0.0ms) begin transaction
3031
+ --------------------------------
3032
+ REPLTest: test_prompt_is_present
3033
+ --------------------------------
3034
+  (0.0ms) rollback transaction
3035
+  (0.0ms) begin transaction
3036
+ ---------------------------------------------------------
3037
+ REPLTest: test_sending_input_returns_the_result_as_output
3038
+ ---------------------------------------------------------
3039
+  (0.0ms) rollback transaction
3040
+  (0.0ms) begin transaction
3041
+ ----------------------------------------------------------
3042
+ REPLTest: test_session_preservation_requires_same_bindings
3043
+ ----------------------------------------------------------
3044
+  (0.0ms) rollback transaction
3045
+  (0.0ms) begin transaction
3046
+ -----------------------------------------------------------------------
3047
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
3048
+ -----------------------------------------------------------------------
3049
+  (0.0ms) rollback transaction
3050
+  (0.0ms) begin transaction
3051
+ --------------------------------------------------
3052
+ WebConsole::REPLSessionTest: test_find_coerces_ids
3053
+ --------------------------------------------------
3054
+  (0.0ms) rollback transaction
3055
+  (0.0ms) begin transaction
3056
+ ---------------------------------------------------------------
3057
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
3058
+ ---------------------------------------------------------------
3059
+  (0.0ms) rollback transaction
3060
+  (0.0ms) begin transaction
3061
+ ----------------------------------------------------------------------------
3062
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
3063
+ ----------------------------------------------------------------------------
3064
+  (0.0ms) rollback transaction
3065
+  (0.1ms) begin transaction
3066
+ ------------------------------------------------------------------------------------------------
3067
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
3068
+ ------------------------------------------------------------------------------------------------
3069
+  (0.0ms) rollback transaction
3070
+  (0.2ms) begin transaction
3071
+ --------------------------------------------------------------------------------------------------------
3072
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
3073
+ --------------------------------------------------------------------------------------------------------
3074
+  (0.0ms) rollback transaction
3075
+  (0.0ms) begin transaction
3076
+ -------------------------------------
3077
+ REPLTest: test_captures_stderr_output
3078
+ -------------------------------------
3079
+  (0.0ms) rollback transaction
3080
+  (0.1ms) begin transaction
3081
+ -------------------------------------
3082
+ REPLTest: test_captures_stdout_output
3083
+ -------------------------------------
3084
+  (0.0ms) rollback transaction
3085
+  (0.0ms) begin transaction
3086
+ ---------------------------------------------------
3087
+ REPLTest: test_preserves_the_session_in_the_binding
3088
+ ---------------------------------------------------
3089
+  (0.0ms) rollback transaction
3090
+  (0.0ms) begin transaction
3091
+ --------------------------------
3092
+ REPLTest: test_prompt_is_present
3093
+ --------------------------------
3094
+  (0.0ms) rollback transaction
3095
+  (0.1ms) begin transaction
3096
+ ---------------------------------------------------------
3097
+ REPLTest: test_sending_input_returns_the_result_as_output
3098
+ ---------------------------------------------------------
3099
+  (0.0ms) rollback transaction
3100
+  (0.0ms) begin transaction
3101
+ ----------------------------------------------------------
3102
+ REPLTest: test_session_preservation_requires_same_bindings
3103
+ ----------------------------------------------------------
3104
+  (0.1ms) rollback transaction
3105
+  (0.0ms) begin transaction
3106
+ -----------------------------------------------------------------------
3107
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
3108
+ -----------------------------------------------------------------------
3109
+  (0.0ms) rollback transaction
3110
+  (0.0ms) begin transaction
3111
+ --------------------------------------------------
3112
+ WebConsole::REPLSessionTest: test_find_coerces_ids
3113
+ --------------------------------------------------
3114
+  (0.0ms) rollback transaction
3115
+  (0.0ms) begin transaction
3116
+ ---------------------------------------------------------------
3117
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
3118
+ ---------------------------------------------------------------
3119
+  (0.0ms) rollback transaction
3120
+  (0.0ms) begin transaction
3121
+ ----------------------------------------------------------------------------
3122
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
3123
+ ----------------------------------------------------------------------------
3124
+  (0.0ms) rollback transaction
3125
+  (0.0ms) begin transaction
3126
+ ------------------------------------------------------------------------------------------------
3127
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
3128
+ ------------------------------------------------------------------------------------------------
3129
+  (0.0ms) rollback transaction
3130
+  (0.2ms) begin transaction
3131
+ --------------------------------------------------------------------------------------------------------
3132
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
3133
+ --------------------------------------------------------------------------------------------------------
3134
+  (0.0ms) rollback transaction
3135
+  (0.0ms) begin transaction
3136
+ ---------------------------------------------------
3137
+ REPLTest: test_preserves_the_session_in_the_binding
3138
+ ---------------------------------------------------
3139
+  (0.0ms) rollback transaction
3140
+  (0.0ms) begin transaction
3141
+ --------------------------------
3142
+ REPLTest: test_prompt_is_present
3143
+ --------------------------------
3144
+  (0.0ms) rollback transaction
3145
+  (0.0ms) begin transaction
3146
+ ---------------------------------------------------------
3147
+ REPLTest: test_sending_input_returns_the_result_as_output
3148
+ ---------------------------------------------------------
3149
+  (0.0ms) rollback transaction
3150
+  (0.0ms) begin transaction
3151
+ ----------------------------------------------------------
3152
+ REPLTest: test_session_preservation_requires_same_bindings
3153
+ ----------------------------------------------------------
3154
+  (0.0ms) rollback transaction
3155
+  (0.0ms) begin transaction
3156
+ -----------------------------------------------------------------------
3157
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
3158
+ -----------------------------------------------------------------------
3159
+  (0.0ms) rollback transaction
3160
+  (0.0ms) begin transaction
3161
+ --------------------------------------------------
3162
+ WebConsole::REPLSessionTest: test_find_coerces_ids
3163
+ --------------------------------------------------
3164
+  (0.0ms) rollback transaction
3165
+  (0.0ms) begin transaction
3166
+ ---------------------------------------------------------------
3167
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
3168
+ ---------------------------------------------------------------
3169
+  (0.0ms) rollback transaction
3170
+  (0.0ms) begin transaction
3171
+ ----------------------------------------------------------------------------
3172
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
3173
+ ----------------------------------------------------------------------------
3174
+  (0.0ms) rollback transaction
3175
+  (0.0ms) begin transaction
3176
+ ------------------------------------------------------------------------------------------------
3177
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
3178
+ ------------------------------------------------------------------------------------------------
3179
+  (0.0ms) rollback transaction
3180
+  (0.2ms) begin transaction
3181
+ --------------------------------------------------------------------------------------------------------
3182
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
3183
+ --------------------------------------------------------------------------------------------------------
3184
+  (0.0ms) rollback transaction
3185
+  (0.1ms) begin transaction
3186
+ ---------------------------------------------------
3187
+ REPLTest: test_preserves_the_session_in_the_binding
3188
+ ---------------------------------------------------
3189
+  (0.0ms) rollback transaction
3190
+  (0.0ms) begin transaction
3191
+ --------------------------------
3192
+ REPLTest: test_prompt_is_present
3193
+ --------------------------------
3194
+  (0.0ms) rollback transaction
3195
+  (0.0ms) begin transaction
3196
+ ---------------------------------------------------------
3197
+ REPLTest: test_sending_input_returns_the_result_as_output
3198
+ ---------------------------------------------------------
3199
+  (0.0ms) rollback transaction
3200
+  (0.0ms) begin transaction
3201
+ ----------------------------------------------------------
3202
+ REPLTest: test_session_preservation_requires_same_bindings
3203
+ ----------------------------------------------------------
3204
+  (0.0ms) rollback transaction
3205
+  (0.0ms) begin transaction
3206
+ -----------------------------------------------------------------------
3207
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
3208
+ -----------------------------------------------------------------------
3209
+  (0.0ms) rollback transaction
3210
+  (0.0ms) begin transaction
3211
+ --------------------------------------------------
3212
+ WebConsole::REPLSessionTest: test_find_coerces_ids
3213
+ --------------------------------------------------
3214
+  (0.0ms) rollback transaction
3215
+  (0.0ms) begin transaction
3216
+ ---------------------------------------------------------------
3217
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
3218
+ ---------------------------------------------------------------
3219
+  (0.1ms) rollback transaction
3220
+  (0.0ms) begin transaction
3221
+ ----------------------------------------------------------------------------
3222
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
3223
+ ----------------------------------------------------------------------------
3224
+  (0.0ms) rollback transaction
3225
+  (0.0ms) begin transaction
3226
+ ------------------------------------------------------------------------------------------------
3227
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
3228
+ ------------------------------------------------------------------------------------------------
3229
+  (0.0ms) rollback transaction
3230
+  (0.2ms) begin transaction
3231
+ --------------------------------------------------------------------------------------------------------
3232
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
3233
+ --------------------------------------------------------------------------------------------------------
3234
+  (0.0ms) rollback transaction
3235
+  (0.0ms) begin transaction
3236
+ ---------------------------------------------------
3237
+ REPLTest: test_preserves_the_session_in_the_binding
3238
+ ---------------------------------------------------
3239
+  (0.0ms) rollback transaction
3240
+  (0.0ms) begin transaction
3241
+ --------------------------------
3242
+ REPLTest: test_prompt_is_present
3243
+ --------------------------------
3244
+  (0.0ms) rollback transaction
3245
+  (0.1ms) begin transaction
3246
+ ---------------------------------------------------------
3247
+ REPLTest: test_sending_input_returns_the_result_as_output
3248
+ ---------------------------------------------------------
3249
+  (0.0ms) rollback transaction
3250
+  (0.0ms) begin transaction
3251
+ ----------------------------------------------------------
3252
+ REPLTest: test_session_preservation_requires_same_bindings
3253
+ ----------------------------------------------------------
3254
+  (0.0ms) rollback transaction
3255
+  (0.0ms) begin transaction
3256
+ -----------------------------------------------------------------------
3257
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
3258
+ -----------------------------------------------------------------------
3259
+  (0.0ms) rollback transaction
3260
+  (0.0ms) begin transaction
3261
+ --------------------------------------------------
3262
+ WebConsole::REPLSessionTest: test_find_coerces_ids
3263
+ --------------------------------------------------
3264
+  (0.0ms) rollback transaction
3265
+  (0.0ms) begin transaction
3266
+ ---------------------------------------------------------------
3267
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
3268
+ ---------------------------------------------------------------
3269
+  (0.0ms) rollback transaction
3270
+  (0.0ms) begin transaction
3271
+ ----------------------------------------------------------------------------
3272
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
3273
+ ----------------------------------------------------------------------------
3274
+  (0.0ms) rollback transaction
3275
+  (0.0ms) begin transaction
3276
+ ------------------------------------------------------------------------------------------------
3277
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
3278
+ ------------------------------------------------------------------------------------------------
3279
+  (0.0ms) rollback transaction
3280
+  (0.2ms) begin transaction
3281
+ --------------------------------------------------------------------------------------------------------
3282
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
3283
+ --------------------------------------------------------------------------------------------------------
3284
+  (0.0ms) rollback transaction
3285
+  (0.0ms) begin transaction
3286
+ ---------------------------------------------------
3287
+ REPLTest: test_preserves_the_session_in_the_binding
3288
+ ---------------------------------------------------
3289
+  (0.0ms) rollback transaction
3290
+  (0.0ms) begin transaction
3291
+ --------------------------------
3292
+ REPLTest: test_prompt_is_present
3293
+ --------------------------------
3294
+  (0.0ms) rollback transaction
3295
+  (0.1ms) begin transaction
3296
+ ---------------------------------------------------------
3297
+ REPLTest: test_sending_input_returns_the_result_as_output
3298
+ ---------------------------------------------------------
3299
+  (0.0ms) rollback transaction
3300
+  (0.0ms) begin transaction
3301
+ ----------------------------------------------------------
3302
+ REPLTest: test_session_preservation_requires_same_bindings
3303
+ ----------------------------------------------------------
3304
+  (0.0ms) rollback transaction
3305
+  (0.0ms) begin transaction
3306
+ -----------------------------------------------------------------------
3307
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
3308
+ -----------------------------------------------------------------------
3309
+  (0.0ms) rollback transaction
3310
+  (0.0ms) begin transaction
3311
+ --------------------------------------------------
3312
+ WebConsole::REPLSessionTest: test_find_coerces_ids
3313
+ --------------------------------------------------
3314
+  (0.0ms) rollback transaction
3315
+  (0.0ms) begin transaction
3316
+ ---------------------------------------------------------------
3317
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
3318
+ ---------------------------------------------------------------
3319
+  (0.0ms) rollback transaction
3320
+  (0.0ms) begin transaction
3321
+ ----------------------------------------------------------------------------
3322
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
3323
+ ----------------------------------------------------------------------------
3324
+  (0.0ms) rollback transaction
3325
+  (0.0ms) begin transaction
3326
+ ------------------------------------------------------------------------------------------------
3327
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
3328
+ ------------------------------------------------------------------------------------------------
3329
+  (0.0ms) rollback transaction
3330
+  (0.2ms) begin transaction
3331
+ --------------------------------------------------------------------------------------------------------
3332
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
3333
+ --------------------------------------------------------------------------------------------------------
3334
+  (0.1ms) rollback transaction
3335
+  (0.1ms) begin transaction
3336
+ -----------------------------------------------------------------------------------------
3337
+ ExceptionExtensionTest: test_should_store_binding_trace_if_binding_of_caller_is_available
3338
+ -----------------------------------------------------------------------------------------
3339
+  (0.0ms) rollback transaction
3340
+  (0.0ms) begin transaction
3341
+ ---------------------------------------------------
3342
+ REPLTest: test_preserves_the_session_in_the_binding
3343
+ ---------------------------------------------------
3344
+  (0.0ms) rollback transaction
3345
+  (0.0ms) begin transaction
3346
+ --------------------------------
3347
+ REPLTest: test_prompt_is_present
3348
+ --------------------------------
3349
+  (0.1ms) rollback transaction
3350
+  (0.0ms) begin transaction
3351
+ ---------------------------------------------------------
3352
+ REPLTest: test_sending_input_returns_the_result_as_output
3353
+ ---------------------------------------------------------
3354
+  (0.0ms) rollback transaction
3355
+  (0.0ms) begin transaction
3356
+ ----------------------------------------------------------
3357
+ REPLTest: test_session_preservation_requires_same_bindings
3358
+ ----------------------------------------------------------
3359
+  (0.0ms) rollback transaction
3360
+  (0.0ms) begin transaction
3361
+ --------------------------------------------------------------------
3362
+ WebConsole::ColorsTest: test_#background=_is_an_alias_of_#background
3363
+ --------------------------------------------------------------------
3364
+  (0.0ms) rollback transaction
3365
+  (0.0ms) begin transaction
3366
+ --------------------------------------------------------------------
3367
+ WebConsole::ColorsTest: test_#background_can_be_explicitly_specified
3368
+ --------------------------------------------------------------------
3369
+  (0.0ms) rollback transaction
3370
+  (0.0ms) begin transaction
3371
+ ----------------------------------------------------------------------------
3372
+ WebConsole::ColorsTest: test_#background_is_the_first_color_if_not_specified
3373
+ ----------------------------------------------------------------------------
3374
+  (0.0ms) rollback transaction
3375
+  (0.0ms) begin transaction
3376
+ -----------------------------------------------
3377
+ WebConsole::ColorsTest: test_#default_is_:light
3378
+ -----------------------------------------------
3379
+  (0.0ms) rollback transaction
3380
+  (0.0ms) begin transaction
3381
+ --------------------------------------------------------------------
3382
+ WebConsole::ColorsTest: test_#foreground=_is_an_alias_of_#foreground
3383
+ --------------------------------------------------------------------
3384
+  (0.0ms) rollback transaction
3385
+  (0.0ms) begin transaction
3386
+ --------------------------------------------------------------------
3387
+ WebConsole::ColorsTest: test_#foreground_can_be_explicitly_specified
3388
+ --------------------------------------------------------------------
3389
+  (0.0ms) rollback transaction
3390
+  (0.0ms) begin transaction
3391
+ ---------------------------------------------------------------------------
3392
+ WebConsole::ColorsTest: test_#foreground_is_the_last_color_if_not_specified
3393
+ ---------------------------------------------------------------------------
3394
+  (0.0ms) rollback transaction
3395
+  (0.0ms) begin transaction
3396
+ --------------------------------------------------------------------------------
3397
+ WebConsole::ColorsTest: test_#to_json_includes_the_background_and_the_foreground
3398
+ --------------------------------------------------------------------------------
3399
+  (0.0ms) rollback transaction
3400
+  (0.1ms) begin transaction
3401
+ -----------------------------------------------------------
3402
+ WebConsole::ColorsTest: test_.[]_is_an_alias_for_.themes#[]
3403
+ -----------------------------------------------------------
3404
+  (0.0ms) rollback transaction
3405
+  (0.0ms) begin transaction
3406
+ ----------------------------------------------------------------------------------
3407
+ WebConsole::ColorsTest: test_.register_theme_creates_Colors_instance_for_the_block
3408
+ ----------------------------------------------------------------------------------
3409
+  (0.0ms) rollback transaction
3410
+  (0.0ms) begin transaction
3411
+ --------------------------------------------------------------------------------------
3412
+ WebConsole::ConsoleSessionTest: test_can_be_used_as_slave_as_the_methods_are_delegated
3413
+ --------------------------------------------------------------------------------------
3414
+  (0.0ms) rollback transaction
3415
+  (0.0ms) begin transaction
3416
+ --------------------------------------------------------------------------
3417
+ WebConsole::ConsoleSessionTest: test_create_gives_already_persisted_models
3418
+ --------------------------------------------------------------------------
3419
+  (0.0ms) rollback transaction
3420
+  (0.0ms) begin transaction
3421
+ ------------------------------------------------
3422
+ WebConsole::ConsoleSessionTest: test_errors_aref
3423
+ ------------------------------------------------
3424
+  (0.0ms) rollback transaction
3425
+  (0.0ms) begin transaction
3426
+ -----------------------------------------------------
3427
+ WebConsole::ConsoleSessionTest: test_find_coerces_ids
3428
+ -----------------------------------------------------
3429
+  (0.0ms) rollback transaction
3430
+  (0.0ms) begin transaction
3431
+ -------------------------------------------------
3432
+ WebConsole::ConsoleSessionTest: test_model_naming
3433
+ -------------------------------------------------
3434
+  (0.0ms) rollback transaction
3435
+  (0.0ms) begin transaction
3436
+ ------------------------------------------------------------------
3437
+ WebConsole::ConsoleSessionTest: test_no_gives_not_persisted_models
3438
+ ------------------------------------------------------------------
3439
+  (0.0ms) rollback transaction
3440
+  (0.0ms) begin transaction
3441
+ -------------------------------------------------------------------------------
3442
+ WebConsole::ConsoleSessionTest: test_not_found_exceptions_are_JSON_serializable
3443
+ -------------------------------------------------------------------------------
3444
+  (0.0ms) rollback transaction
3445
+  (0.0ms) begin transaction
3446
+ -----------------------------------------------
3447
+ WebConsole::ConsoleSessionTest: test_persisted?
3448
+ -----------------------------------------------
3449
+  (0.0ms) rollback transaction
3450
+  (0.0ms) begin transaction
3451
+ ----------------------------------------------------------------------------
3452
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_about_their_keys
3453
+ ----------------------------------------------------------------------------
3454
+  (0.0ms) rollback transaction
3455
+  (0.1ms) begin transaction
3456
+ -----------------------------------------------------------------------------------
3457
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_that_they_are_in_memory
3458
+ -----------------------------------------------------------------------------------
3459
+  (0.1ms) rollback transaction
3460
+  (0.0ms) begin transaction
3461
+ ---------------------------------------------------------------------------------------------
3462
+ WebConsole::ConsoleSessionTest: test_raises_ConsoleSession::Unavailable_on_not_found_sessions
3463
+ ---------------------------------------------------------------------------------------------
3464
+  (0.0ms) rollback transaction
3465
+  (0.0ms) begin transaction
3466
+ ------------------------------------------------------------------------------
3467
+ WebConsole::ConsoleSessionTest: test_slave_methods_are_cached_on_the_singleton
3468
+ ------------------------------------------------------------------------------
3469
+  (0.0ms) rollback transaction
3470
+  (0.0ms) begin transaction
3471
+ -------------------------------------------
3472
+ WebConsole::ConsoleSessionTest: test_to_key
3473
+ -------------------------------------------
3474
+  (0.0ms) rollback transaction
3475
+  (0.0ms) begin transaction
3476
+ ---------------------------------------------
3477
+ WebConsole::ConsoleSessionTest: test_to_param
3478
+ ---------------------------------------------
3479
+  (0.0ms) rollback transaction
3480
+  (0.0ms) begin transaction
3481
+ ----------------------------------------------------
3482
+ WebConsole::ConsoleSessionTest: test_to_partial_path
3483
+ ----------------------------------------------------
3484
+  (0.0ms) rollback transaction
3485
+  (0.0ms) begin transaction
3486
+ -------------------------------------------------------------------------------------
3487
+ WebConsole::ConsoleSessionsControllerTest: test_GET_index_creates_new_console_session
3488
+ -------------------------------------------------------------------------------------
3489
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3490
+ Completed 500 Internal Server Error in 0ms
3491
+  (0.1ms) rollback transaction
3492
+  (0.0ms) begin transaction
3493
+ -------------------------------------------------------------------------------------------------
3494
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_gives_the_slave_pending_output
3495
+ -------------------------------------------------------------------------------------------------
3496
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3497
+ Completed 500 Internal Server Error in 0ms
3498
+  (0.0ms) rollback transaction
3499
+  (0.1ms) begin transaction
3500
+ --------------------------------------------------------------------------------------------------------
3501
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_raises_410_on_exitted_slave_processes
3502
+ --------------------------------------------------------------------------------------------------------
3503
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3504
+ Completed 500 Internal Server Error in 0ms
3505
+  (0.0ms) rollback transaction
3506
+  (0.1ms) begin transaction
3507
+ ------------------------------------------------------------------------------------------
3508
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_configuration_adjust_the_terminal_size
3509
+ ------------------------------------------------------------------------------------------
3510
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3511
+ Completed 500 Internal Server Error in 0ms
3512
+  (0.0ms) rollback transaction
3513
+  (0.0ms) begin transaction
3514
+ ----------------------------------------------------------------------------------
3515
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_sends_input_to_the_slave
3516
+ ----------------------------------------------------------------------------------
3517
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3518
+ Completed 500 Internal Server Error in 1ms
3519
+  (0.1ms) rollback transaction
3520
+  (0.0ms) begin transaction
3521
+ -------------------------------------------------------------------------------------
3522
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_validates_for_missing_input
3523
+ -------------------------------------------------------------------------------------
3524
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3525
+ Completed 500 Internal Server Error in 0ms
3526
+  (0.0ms) rollback transaction
3527
+  (0.0ms) begin transaction
3528
+ ------------------------------------------------------------------------------------
3529
+ WebConsole::ConsoleSessionsControllerTest: test_allows_requests_from_whitelisted_ips
3530
+ ------------------------------------------------------------------------------------
3531
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3532
+ Completed 500 Internal Server Error in 0ms
3533
+  (0.0ms) rollback transaction
3534
+  (0.0ms) begin transaction
3535
+ ----------------------------------------------------------------------------------------
3536
+ WebConsole::ConsoleSessionsControllerTest: test_blocks_requests_from_non-whitelisted_ips
3537
+ ----------------------------------------------------------------------------------------
3538
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3539
+ Completed 500 Internal Server Error in 0ms
3540
+  (0.0ms) rollback transaction
3541
+  (0.1ms) begin transaction
3542
+ --------------------------------------------------------------------
3543
+ WebConsole::ConsoleSessionsControllerTest: test_index_generated_path
3544
+ --------------------------------------------------------------------
3545
+  (0.0ms) rollback transaction
3546
+  (0.1ms) begin transaction
3547
+ -------------------------------------------------------------------
3548
+ WebConsole::ConsoleSessionsControllerTest: test_index_is_successful
3549
+ -------------------------------------------------------------------
3550
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3551
+ Completed 500 Internal Server Error in 0ms
3552
+  (0.0ms) rollback transaction
3553
+  (0.0ms) begin transaction
3554
+ -----------------------------------------------------------------------------
3555
+ WebConsole::EngineTest: test_blank_commands_are_expanded_to_the_rails_console
3556
+ -----------------------------------------------------------------------------
3557
+  (0.2ms) begin transaction
3558
+ ------------------------------------------------------
3559
+ WebConsole::EngineTest: test_custom_default_mount_path
3560
+ ------------------------------------------------------
3561
+  (0.2ms) begin transaction
3562
+ ---------------------------------------------------
3563
+ WebConsole::EngineTest: test_disabling_automounting
3564
+ ---------------------------------------------------
3565
+  (0.2ms) begin transaction
3566
+ ---------------------------------------------------------------
3567
+ WebConsole::EngineTest: test_present_commands_are_not_processed
3568
+ ---------------------------------------------------------------
3569
+  (0.2ms) begin transaction
3570
+ --------------------------------------------------------
3571
+ WebConsole::EngineTest: test_whitelist_multiple_networks
3572
+ --------------------------------------------------------
3573
+  (0.2ms) begin transaction
3574
+ -----------------------------------------------------
3575
+ WebConsole::EngineTest: test_whitelist_whole_networks
3576
+ -----------------------------------------------------
3577
+  (0.2ms) begin transaction
3578
+ -----------------------------------------------------------------------
3579
+ WebConsole::EngineTest: test_whitelisted_ips.include?_coerces_to_IPAddr
3580
+ -----------------------------------------------------------------------
3581
+  (0.2ms) begin transaction
3582
+ -----------------------------------------------------------------------
3583
+ WebConsole::EngineTest: test_whitelisted_ips.include?_works_with_IPAddr
3584
+ -----------------------------------------------------------------------
3585
+  (0.2ms) begin transaction
3586
+ ------------------------------------------------------------------
3587
+ WebConsole::EngineTest: test_whitelisted_ips_are_courced_to_IPAddr
3588
+ ------------------------------------------------------------------
3589
+  (0.2ms) begin transaction
3590
+ -----------------------------------------------------------------------------
3591
+ WebConsole::EngineTest: test_whitelisted_ips_are_normalized_and_unique_IPAddr
3592
+ -----------------------------------------------------------------------------
3593
+  (0.1ms) begin transaction
3594
+ -----------------------------------------------------------------------
3595
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
3596
+ -----------------------------------------------------------------------
3597
+  (0.0ms) rollback transaction
3598
+  (0.0ms) begin transaction
3599
+ --------------------------------------------------
3600
+ WebConsole::REPLSessionTest: test_find_coerces_ids
3601
+ --------------------------------------------------
3602
+  (0.0ms) rollback transaction
3603
+  (0.1ms) begin transaction
3604
+ ---------------------------------------------------------------
3605
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
3606
+ ---------------------------------------------------------------
3607
+  (0.0ms) rollback transaction
3608
+  (0.1ms) begin transaction
3609
+ ----------------------------------------------------------------------------
3610
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
3611
+ ----------------------------------------------------------------------------
3612
+  (0.0ms) rollback transaction
3613
+  (0.0ms) begin transaction
3614
+ ------------------------------------------------------------------------------------------------
3615
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
3616
+ ------------------------------------------------------------------------------------------------
3617
+  (0.1ms) rollback transaction
3618
+  (0.0ms) begin transaction
3619
+ ----------------------------------------------------------------
3620
+ WebConsole::SlaveTest: test_#configure_changes_@input_dimentions
3621
+ ----------------------------------------------------------------
3622
+  (0.1ms) rollback transaction
3623
+  (0.0ms) begin transaction
3624
+ -------------------------------------------------------------------------------------------
3625
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_height_is_zero
3626
+ -------------------------------------------------------------------------------------------
3627
+  (0.0ms) rollback transaction
3628
+  (0.1ms) begin transaction
3629
+ ------------------------------------------------------------------------------------------
3630
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_width_is_zero
3631
+ ------------------------------------------------------------------------------------------
3632
+  (0.0ms) rollback transaction
3633
+  (0.0ms) begin transaction
3634
+ ---------------------------------------------------------------------------
3635
+ WebConsole::SlaveTest: test_#dispose!_can_reraise_Errno::ESRCH_if_requested
3636
+ ---------------------------------------------------------------------------
3637
+  (0.0ms) rollback transaction
3638
+  (0.1ms) begin transaction
3639
+ ----------------------------------------------------------------------------------
3640
+ WebConsole::SlaveTest: test_#dispose!_sends_SIGKILL_to_the_process_and_detaches_it
3641
+ ----------------------------------------------------------------------------------
3642
+  (0.0ms) rollback transaction
3643
+  (0.0ms) begin transaction
3644
+ --------------------------------------------------------------------------
3645
+ WebConsole::SlaveTest: test_#dispose_can_reraise_Errno::ESRCH_if_requested
3646
+ --------------------------------------------------------------------------
3647
+  (0.0ms) rollback transaction
3648
+  (0.0ms) begin transaction
3649
+ ---------------------------------------------------------------------------------
3650
+ WebConsole::SlaveTest: test_#dispose_sends_SIGTERM_to_the_process_and_detaches_it
3651
+ ---------------------------------------------------------------------------------
3652
+  (0.0ms) rollback transaction
3653
+  (0.0ms) begin transaction
3654
+ --------------------------------------------------------------------------
3655
+ WebConsole::SlaveTest: test_#pending_output_always_encodes_output_in_UTF-8
3656
+ --------------------------------------------------------------------------
3657
+  (0.0ms) rollback transaction
3658
+  (0.1ms) begin transaction
3659
+ ---------------------------------------------------------------------------------------------
3660
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_EOFError
3661
+ ---------------------------------------------------------------------------------------------
3662
+  (0.0ms) rollback transaction
3663
+  (0.0ms) begin transaction
3664
+ -----------------------------------------------------------------------------------------------
3665
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_Errno::EIO
3666
+ -----------------------------------------------------------------------------------------------
3667
+  (0.0ms) rollback transaction
3668
+  (0.0ms) begin transaction
3669
+ ------------------------------------------------------------------------------------
3670
+ WebConsole::SlaveTest: test_#pending_output_returns_a_string_with_the_current_output
3671
+ ------------------------------------------------------------------------------------
3672
+  (0.0ms) rollback transaction
3673
+  (0.0ms) begin transaction
3674
+ ----------------------------------------------------------------------------
3675
+ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
3676
+ ----------------------------------------------------------------------------
3677
+  (0.0ms) rollback transaction
3678
+  (0.0ms) begin transaction
3679
+ -------------------------------------------------------------------------
3680
+ WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
3681
+ -------------------------------------------------------------------------
3682
+  (0.0ms) rollback transaction
3683
+  (0.2ms) begin transaction
3684
+ --------------------------------------------------------------------------------------------------------
3685
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
3686
+ --------------------------------------------------------------------------------------------------------
3687
+  (0.0ms) rollback transaction
3688
+  (0.0ms) begin transaction
3689
+ -----------------------------------------------------------------------------------------
3690
+ ExceptionExtensionTest: test_should_store_binding_trace_if_binding_of_caller_is_available
3691
+ -----------------------------------------------------------------------------------------
3692
+  (0.0ms) rollback transaction
3693
+  (0.0ms) begin transaction
3694
+ ---------------------------------------------------
3695
+ REPLTest: test_preserves_the_session_in_the_binding
3696
+ ---------------------------------------------------
3697
+  (0.0ms) rollback transaction
3698
+  (0.0ms) begin transaction
3699
+ --------------------------------
3700
+ REPLTest: test_prompt_is_present
3701
+ --------------------------------
3702
+  (0.0ms) rollback transaction
3703
+  (0.1ms) begin transaction
3704
+ ---------------------------------------------------------
3705
+ REPLTest: test_sending_input_returns_the_result_as_output
3706
+ ---------------------------------------------------------
3707
+  (0.0ms) rollback transaction
3708
+  (0.0ms) begin transaction
3709
+ ----------------------------------------------------------
3710
+ REPLTest: test_session_preservation_requires_same_bindings
3711
+ ----------------------------------------------------------
3712
+  (0.0ms) rollback transaction
3713
+  (0.0ms) begin transaction
3714
+ --------------------------------------------------------------------
3715
+ WebConsole::ColorsTest: test_#background=_is_an_alias_of_#background
3716
+ --------------------------------------------------------------------
3717
+  (0.0ms) rollback transaction
3718
+  (0.1ms) begin transaction
3719
+ --------------------------------------------------------------------
3720
+ WebConsole::ColorsTest: test_#background_can_be_explicitly_specified
3721
+ --------------------------------------------------------------------
3722
+  (0.0ms) rollback transaction
3723
+  (0.0ms) begin transaction
3724
+ ----------------------------------------------------------------------------
3725
+ WebConsole::ColorsTest: test_#background_is_the_first_color_if_not_specified
3726
+ ----------------------------------------------------------------------------
3727
+  (0.0ms) rollback transaction
3728
+  (0.0ms) begin transaction
3729
+ -----------------------------------------------
3730
+ WebConsole::ColorsTest: test_#default_is_:light
3731
+ -----------------------------------------------
3732
+  (0.0ms) rollback transaction
3733
+  (0.0ms) begin transaction
3734
+ --------------------------------------------------------------------
3735
+ WebConsole::ColorsTest: test_#foreground=_is_an_alias_of_#foreground
3736
+ --------------------------------------------------------------------
3737
+  (0.0ms) rollback transaction
3738
+  (0.0ms) begin transaction
3739
+ --------------------------------------------------------------------
3740
+ WebConsole::ColorsTest: test_#foreground_can_be_explicitly_specified
3741
+ --------------------------------------------------------------------
3742
+  (0.0ms) rollback transaction
3743
+  (0.0ms) begin transaction
3744
+ ---------------------------------------------------------------------------
3745
+ WebConsole::ColorsTest: test_#foreground_is_the_last_color_if_not_specified
3746
+ ---------------------------------------------------------------------------
3747
+  (0.0ms) rollback transaction
3748
+  (0.1ms) begin transaction
3749
+ --------------------------------------------------------------------------------
3750
+ WebConsole::ColorsTest: test_#to_json_includes_the_background_and_the_foreground
3751
+ --------------------------------------------------------------------------------
3752
+  (0.0ms) rollback transaction
3753
+  (0.0ms) begin transaction
3754
+ -----------------------------------------------------------
3755
+ WebConsole::ColorsTest: test_.[]_is_an_alias_for_.themes#[]
3756
+ -----------------------------------------------------------
3757
+  (0.1ms) rollback transaction
3758
+  (0.0ms) begin transaction
3759
+ ----------------------------------------------------------------------------------
3760
+ WebConsole::ColorsTest: test_.register_theme_creates_Colors_instance_for_the_block
3761
+ ----------------------------------------------------------------------------------
3762
+  (0.1ms) rollback transaction
3763
+  (0.0ms) begin transaction
3764
+ --------------------------------------------------------------------------------------
3765
+ WebConsole::ConsoleSessionTest: test_can_be_used_as_slave_as_the_methods_are_delegated
3766
+ --------------------------------------------------------------------------------------
3767
+  (0.0ms) rollback transaction
3768
+  (0.0ms) begin transaction
3769
+ --------------------------------------------------------------------------
3770
+ WebConsole::ConsoleSessionTest: test_create_gives_already_persisted_models
3771
+ --------------------------------------------------------------------------
3772
+  (0.0ms) rollback transaction
3773
+  (0.0ms) begin transaction
3774
+ ------------------------------------------------
3775
+ WebConsole::ConsoleSessionTest: test_errors_aref
3776
+ ------------------------------------------------
3777
+  (0.1ms) rollback transaction
3778
+  (0.0ms) begin transaction
3779
+ -----------------------------------------------------
3780
+ WebConsole::ConsoleSessionTest: test_find_coerces_ids
3781
+ -----------------------------------------------------
3782
+  (0.0ms) rollback transaction
3783
+  (0.0ms) begin transaction
3784
+ -------------------------------------------------
3785
+ WebConsole::ConsoleSessionTest: test_model_naming
3786
+ -------------------------------------------------
3787
+  (0.1ms) rollback transaction
3788
+  (0.0ms) begin transaction
3789
+ ------------------------------------------------------------------
3790
+ WebConsole::ConsoleSessionTest: test_no_gives_not_persisted_models
3791
+ ------------------------------------------------------------------
3792
+  (0.0ms) rollback transaction
3793
+  (0.0ms) begin transaction
3794
+ -------------------------------------------------------------------------------
3795
+ WebConsole::ConsoleSessionTest: test_not_found_exceptions_are_JSON_serializable
3796
+ -------------------------------------------------------------------------------
3797
+  (0.0ms) rollback transaction
3798
+  (0.0ms) begin transaction
3799
+ -----------------------------------------------
3800
+ WebConsole::ConsoleSessionTest: test_persisted?
3801
+ -----------------------------------------------
3802
+  (0.0ms) rollback transaction
3803
+  (0.0ms) begin transaction
3804
+ ----------------------------------------------------------------------------
3805
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_about_their_keys
3806
+ ----------------------------------------------------------------------------
3807
+  (0.0ms) rollback transaction
3808
+  (0.0ms) begin transaction
3809
+ -----------------------------------------------------------------------------------
3810
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_that_they_are_in_memory
3811
+ -----------------------------------------------------------------------------------
3812
+  (0.1ms) rollback transaction
3813
+  (0.0ms) begin transaction
3814
+ ---------------------------------------------------------------------------------------------
3815
+ WebConsole::ConsoleSessionTest: test_raises_ConsoleSession::Unavailable_on_not_found_sessions
3816
+ ---------------------------------------------------------------------------------------------
3817
+  (0.0ms) rollback transaction
3818
+  (0.0ms) begin transaction
3819
+ ------------------------------------------------------------------------------
3820
+ WebConsole::ConsoleSessionTest: test_slave_methods_are_cached_on_the_singleton
3821
+ ------------------------------------------------------------------------------
3822
+  (0.0ms) rollback transaction
3823
+  (0.0ms) begin transaction
3824
+ -------------------------------------------
3825
+ WebConsole::ConsoleSessionTest: test_to_key
3826
+ -------------------------------------------
3827
+  (0.0ms) rollback transaction
3828
+  (0.0ms) begin transaction
3829
+ ---------------------------------------------
3830
+ WebConsole::ConsoleSessionTest: test_to_param
3831
+ ---------------------------------------------
3832
+  (0.0ms) rollback transaction
3833
+  (0.0ms) begin transaction
3834
+ ----------------------------------------------------
3835
+ WebConsole::ConsoleSessionTest: test_to_partial_path
3836
+ ----------------------------------------------------
3837
+  (0.1ms) rollback transaction
3838
+  (0.0ms) begin transaction
3839
+ -------------------------------------------------------------------------------------
3840
+ WebConsole::ConsoleSessionsControllerTest: test_GET_index_creates_new_console_session
3841
+ -------------------------------------------------------------------------------------
3842
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3843
+ Completed 500 Internal Server Error in 16ms
3844
+  (0.1ms) rollback transaction
3845
+  (0.0ms) begin transaction
3846
+ -------------------------------------------------------------------------------------------------
3847
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_gives_the_slave_pending_output
3848
+ -------------------------------------------------------------------------------------------------
3849
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3850
+ Completed 500 Internal Server Error in 5ms
3851
+  (0.1ms) rollback transaction
3852
+  (0.0ms) begin transaction
3853
+ --------------------------------------------------------------------------------------------------------
3854
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_raises_410_on_exitted_slave_processes
3855
+ --------------------------------------------------------------------------------------------------------
3856
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3857
+ Completed 500 Internal Server Error in 6ms
3858
+  (0.1ms) rollback transaction
3859
+  (0.1ms) begin transaction
3860
+ ------------------------------------------------------------------------------------------
3861
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_configuration_adjust_the_terminal_size
3862
+ ------------------------------------------------------------------------------------------
3863
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3864
+ Completed 500 Internal Server Error in 4ms
3865
+  (0.0ms) rollback transaction
3866
+  (0.0ms) begin transaction
3867
+ ----------------------------------------------------------------------------------
3868
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_sends_input_to_the_slave
3869
+ ----------------------------------------------------------------------------------
3870
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3871
+ Completed 500 Internal Server Error in 5ms
3872
+  (0.1ms) rollback transaction
3873
+  (0.0ms) begin transaction
3874
+ -------------------------------------------------------------------------------------
3875
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_validates_for_missing_input
3876
+ -------------------------------------------------------------------------------------
3877
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3878
+ Completed 500 Internal Server Error in 5ms
3879
+  (0.1ms) rollback transaction
3880
+  (0.1ms) begin transaction
3881
+ ------------------------------------------------------------------------------------
3882
+ WebConsole::ConsoleSessionsControllerTest: test_allows_requests_from_whitelisted_ips
3883
+ ------------------------------------------------------------------------------------
3884
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3885
+ Completed 500 Internal Server Error in 20ms
3886
+  (0.1ms) rollback transaction
3887
+  (0.0ms) begin transaction
3888
+ ----------------------------------------------------------------------------------------
3889
+ WebConsole::ConsoleSessionsControllerTest: test_blocks_requests_from_non-whitelisted_ips
3890
+ ----------------------------------------------------------------------------------------
3891
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3892
+ Filter chain halted as :prevent_unauthorized_requests! rendered or redirected
3893
+ Completed 401 Unauthorized in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3894
+  (0.1ms) rollback transaction
3895
+  (0.0ms) begin transaction
3896
+ --------------------------------------------------------------------
3897
+ WebConsole::ConsoleSessionsControllerTest: test_index_generated_path
3898
+ --------------------------------------------------------------------
3899
+  (0.0ms) rollback transaction
3900
+  (0.0ms) begin transaction
3901
+ -------------------------------------------------------------------
3902
+ WebConsole::ConsoleSessionsControllerTest: test_index_is_successful
3903
+ -------------------------------------------------------------------
3904
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
3905
+ Completed 500 Internal Server Error in 5ms
3906
+  (0.1ms) rollback transaction
3907
+  (0.0ms) begin transaction
3908
+ -----------------------------------------------------------------------------
3909
+ WebConsole::EngineTest: test_blank_commands_are_expanded_to_the_rails_console
3910
+ -----------------------------------------------------------------------------
3911
+  (0.2ms) begin transaction
3912
+ ------------------------------------------------------
3913
+ WebConsole::EngineTest: test_custom_default_mount_path
3914
+ ------------------------------------------------------
3915
+  (0.1ms) begin transaction
3916
+ ---------------------------------------------------
3917
+ WebConsole::EngineTest: test_disabling_automounting
3918
+ ---------------------------------------------------
3919
+  (0.1ms) begin transaction
3920
+ ---------------------------------------------------------------
3921
+ WebConsole::EngineTest: test_present_commands_are_not_processed
3922
+ ---------------------------------------------------------------
3923
+  (0.1ms) begin transaction
3924
+ --------------------------------------------------------
3925
+ WebConsole::EngineTest: test_whitelist_multiple_networks
3926
+ --------------------------------------------------------
3927
+  (0.1ms) begin transaction
3928
+ -----------------------------------------------------
3929
+ WebConsole::EngineTest: test_whitelist_whole_networks
3930
+ -----------------------------------------------------
3931
+  (0.1ms) begin transaction
3932
+ -----------------------------------------------------------------------
3933
+ WebConsole::EngineTest: test_whitelisted_ips.include?_coerces_to_IPAddr
3934
+ -----------------------------------------------------------------------
3935
+  (0.1ms) begin transaction
3936
+ -----------------------------------------------------------------------
3937
+ WebConsole::EngineTest: test_whitelisted_ips.include?_works_with_IPAddr
3938
+ -----------------------------------------------------------------------
3939
+  (0.1ms) begin transaction
3940
+ ------------------------------------------------------------------
3941
+ WebConsole::EngineTest: test_whitelisted_ips_are_courced_to_IPAddr
3942
+ ------------------------------------------------------------------
3943
+  (0.2ms) begin transaction
3944
+ -----------------------------------------------------------------------------
3945
+ WebConsole::EngineTest: test_whitelisted_ips_are_normalized_and_unique_IPAddr
3946
+ -----------------------------------------------------------------------------
3947
+  (0.1ms) begin transaction
3948
+ -----------------------------------------------------------------------
3949
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
3950
+ -----------------------------------------------------------------------
3951
+  (0.0ms) rollback transaction
3952
+  (0.1ms) begin transaction
3953
+ --------------------------------------------------
3954
+ WebConsole::REPLSessionTest: test_find_coerces_ids
3955
+ --------------------------------------------------
3956
+  (0.0ms) rollback transaction
3957
+  (0.0ms) begin transaction
3958
+ ---------------------------------------------------------------
3959
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
3960
+ ---------------------------------------------------------------
3961
+  (0.1ms) rollback transaction
3962
+  (0.0ms) begin transaction
3963
+ ----------------------------------------------------------------------------
3964
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
3965
+ ----------------------------------------------------------------------------
3966
+  (0.0ms) rollback transaction
3967
+  (0.0ms) begin transaction
3968
+ ------------------------------------------------------------------------------------------------
3969
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
3970
+ ------------------------------------------------------------------------------------------------
3971
+  (0.0ms) rollback transaction
3972
+  (0.0ms) begin transaction
3973
+ ----------------------------------------------------------------
3974
+ WebConsole::SlaveTest: test_#configure_changes_@input_dimentions
3975
+ ----------------------------------------------------------------
3976
+  (0.0ms) rollback transaction
3977
+  (0.0ms) begin transaction
3978
+ -------------------------------------------------------------------------------------------
3979
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_height_is_zero
3980
+ -------------------------------------------------------------------------------------------
3981
+  (0.0ms) rollback transaction
3982
+  (0.0ms) begin transaction
3983
+ ------------------------------------------------------------------------------------------
3984
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_width_is_zero
3985
+ ------------------------------------------------------------------------------------------
3986
+  (0.1ms) rollback transaction
3987
+  (0.0ms) begin transaction
3988
+ ---------------------------------------------------------------------------
3989
+ WebConsole::SlaveTest: test_#dispose!_can_reraise_Errno::ESRCH_if_requested
3990
+ ---------------------------------------------------------------------------
3991
+  (0.0ms) rollback transaction
3992
+  (0.0ms) begin transaction
3993
+ ----------------------------------------------------------------------------------
3994
+ WebConsole::SlaveTest: test_#dispose!_sends_SIGKILL_to_the_process_and_detaches_it
3995
+ ----------------------------------------------------------------------------------
3996
+  (0.0ms) rollback transaction
3997
+  (0.0ms) begin transaction
3998
+ --------------------------------------------------------------------------
3999
+ WebConsole::SlaveTest: test_#dispose_can_reraise_Errno::ESRCH_if_requested
4000
+ --------------------------------------------------------------------------
4001
+  (0.0ms) rollback transaction
4002
+  (0.1ms) begin transaction
4003
+ ---------------------------------------------------------------------------------
4004
+ WebConsole::SlaveTest: test_#dispose_sends_SIGTERM_to_the_process_and_detaches_it
4005
+ ---------------------------------------------------------------------------------
4006
+  (0.0ms) rollback transaction
4007
+  (0.0ms) begin transaction
4008
+ --------------------------------------------------------------------------
4009
+ WebConsole::SlaveTest: test_#pending_output_always_encodes_output_in_UTF-8
4010
+ --------------------------------------------------------------------------
4011
+  (0.0ms) rollback transaction
4012
+  (0.0ms) begin transaction
4013
+ ---------------------------------------------------------------------------------------------
4014
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_EOFError
4015
+ ---------------------------------------------------------------------------------------------
4016
+  (0.0ms) rollback transaction
4017
+  (0.0ms) begin transaction
4018
+ -----------------------------------------------------------------------------------------------
4019
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_Errno::EIO
4020
+ -----------------------------------------------------------------------------------------------
4021
+  (0.0ms) rollback transaction
4022
+  (0.0ms) begin transaction
4023
+ ------------------------------------------------------------------------------------
4024
+ WebConsole::SlaveTest: test_#pending_output_returns_a_string_with_the_current_output
4025
+ ------------------------------------------------------------------------------------
4026
+  (0.0ms) rollback transaction
4027
+  (0.0ms) begin transaction
4028
+ ----------------------------------------------------------------------------
4029
+ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
4030
+ ----------------------------------------------------------------------------
4031
+  (0.0ms) rollback transaction
4032
+  (0.0ms) begin transaction
4033
+ -------------------------------------------------------------------------
4034
+ WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
4035
+ -------------------------------------------------------------------------
4036
+  (0.0ms) rollback transaction
4037
+  (0.3ms) begin transaction
4038
+ --------------------------------------------------------------------------------------------------------
4039
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
4040
+ --------------------------------------------------------------------------------------------------------
4041
+  (0.1ms) rollback transaction
4042
+  (0.0ms) begin transaction
4043
+ -----------------------------------------------------------------------------------------
4044
+ ExceptionExtensionTest: test_should_store_binding_trace_if_binding_of_caller_is_available
4045
+ -----------------------------------------------------------------------------------------
4046
+  (0.0ms) rollback transaction
4047
+  (0.0ms) begin transaction
4048
+ ---------------------------------------------------
4049
+ REPLTest: test_preserves_the_session_in_the_binding
4050
+ ---------------------------------------------------
4051
+  (0.0ms) rollback transaction
4052
+  (0.0ms) begin transaction
4053
+ --------------------------------
4054
+ REPLTest: test_prompt_is_present
4055
+ --------------------------------
4056
+  (0.0ms) rollback transaction
4057
+  (0.1ms) begin transaction
4058
+ ---------------------------------------------------------
4059
+ REPLTest: test_sending_input_returns_the_result_as_output
4060
+ ---------------------------------------------------------
4061
+  (0.0ms) rollback transaction
4062
+  (0.1ms) begin transaction
4063
+ ----------------------------------------------------------
4064
+ REPLTest: test_session_preservation_requires_same_bindings
4065
+ ----------------------------------------------------------
4066
+  (0.0ms) rollback transaction
4067
+  (0.0ms) begin transaction
4068
+ --------------------------------------------------------------------
4069
+ WebConsole::ColorsTest: test_#background=_is_an_alias_of_#background
4070
+ --------------------------------------------------------------------
4071
+  (0.0ms) rollback transaction
4072
+  (0.0ms) begin transaction
4073
+ --------------------------------------------------------------------
4074
+ WebConsole::ColorsTest: test_#background_can_be_explicitly_specified
4075
+ --------------------------------------------------------------------
4076
+  (0.0ms) rollback transaction
4077
+  (0.1ms) begin transaction
4078
+ ----------------------------------------------------------------------------
4079
+ WebConsole::ColorsTest: test_#background_is_the_first_color_if_not_specified
4080
+ ----------------------------------------------------------------------------
4081
+  (0.0ms) rollback transaction
4082
+  (0.1ms) begin transaction
4083
+ -----------------------------------------------
4084
+ WebConsole::ColorsTest: test_#default_is_:light
4085
+ -----------------------------------------------
4086
+  (0.0ms) rollback transaction
4087
+  (0.0ms) begin transaction
4088
+ --------------------------------------------------------------------
4089
+ WebConsole::ColorsTest: test_#foreground=_is_an_alias_of_#foreground
4090
+ --------------------------------------------------------------------
4091
+  (0.0ms) rollback transaction
4092
+  (0.0ms) begin transaction
4093
+ --------------------------------------------------------------------
4094
+ WebConsole::ColorsTest: test_#foreground_can_be_explicitly_specified
4095
+ --------------------------------------------------------------------
4096
+  (0.0ms) rollback transaction
4097
+  (0.0ms) begin transaction
4098
+ ---------------------------------------------------------------------------
4099
+ WebConsole::ColorsTest: test_#foreground_is_the_last_color_if_not_specified
4100
+ ---------------------------------------------------------------------------
4101
+  (0.0ms) rollback transaction
4102
+  (0.1ms) begin transaction
4103
+ --------------------------------------------------------------------------------
4104
+ WebConsole::ColorsTest: test_#to_json_includes_the_background_and_the_foreground
4105
+ --------------------------------------------------------------------------------
4106
+  (0.0ms) rollback transaction
4107
+  (0.0ms) begin transaction
4108
+ -----------------------------------------------------------
4109
+ WebConsole::ColorsTest: test_.[]_is_an_alias_for_.themes#[]
4110
+ -----------------------------------------------------------
4111
+  (0.0ms) rollback transaction
4112
+  (0.1ms) begin transaction
4113
+ ----------------------------------------------------------------------------------
4114
+ WebConsole::ColorsTest: test_.register_theme_creates_Colors_instance_for_the_block
4115
+ ----------------------------------------------------------------------------------
4116
+  (0.0ms) rollback transaction
4117
+  (0.1ms) begin transaction
4118
+ --------------------------------------------------------------------------------------
4119
+ WebConsole::ConsoleSessionTest: test_can_be_used_as_slave_as_the_methods_are_delegated
4120
+ --------------------------------------------------------------------------------------
4121
+  (0.1ms) rollback transaction
4122
+  (0.0ms) begin transaction
4123
+ --------------------------------------------------------------------------
4124
+ WebConsole::ConsoleSessionTest: test_create_gives_already_persisted_models
4125
+ --------------------------------------------------------------------------
4126
+  (0.0ms) rollback transaction
4127
+  (0.0ms) begin transaction
4128
+ ------------------------------------------------
4129
+ WebConsole::ConsoleSessionTest: test_errors_aref
4130
+ ------------------------------------------------
4131
+  (0.1ms) rollback transaction
4132
+  (0.0ms) begin transaction
4133
+ -----------------------------------------------------
4134
+ WebConsole::ConsoleSessionTest: test_find_coerces_ids
4135
+ -----------------------------------------------------
4136
+  (0.0ms) rollback transaction
4137
+  (0.0ms) begin transaction
4138
+ -------------------------------------------------
4139
+ WebConsole::ConsoleSessionTest: test_model_naming
4140
+ -------------------------------------------------
4141
+  (0.0ms) rollback transaction
4142
+  (0.0ms) begin transaction
4143
+ ------------------------------------------------------------------
4144
+ WebConsole::ConsoleSessionTest: test_no_gives_not_persisted_models
4145
+ ------------------------------------------------------------------
4146
+  (0.0ms) rollback transaction
4147
+  (0.0ms) begin transaction
4148
+ -------------------------------------------------------------------------------
4149
+ WebConsole::ConsoleSessionTest: test_not_found_exceptions_are_JSON_serializable
4150
+ -------------------------------------------------------------------------------
4151
+  (0.0ms) rollback transaction
4152
+  (0.0ms) begin transaction
4153
+ -----------------------------------------------
4154
+ WebConsole::ConsoleSessionTest: test_persisted?
4155
+ -----------------------------------------------
4156
+  (0.0ms) rollback transaction
4157
+  (0.0ms) begin transaction
4158
+ ----------------------------------------------------------------------------
4159
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_about_their_keys
4160
+ ----------------------------------------------------------------------------
4161
+  (0.0ms) rollback transaction
4162
+  (0.0ms) begin transaction
4163
+ -----------------------------------------------------------------------------------
4164
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_that_they_are_in_memory
4165
+ -----------------------------------------------------------------------------------
4166
+  (0.0ms) rollback transaction
4167
+  (0.0ms) begin transaction
4168
+ ---------------------------------------------------------------------------------------------
4169
+ WebConsole::ConsoleSessionTest: test_raises_ConsoleSession::Unavailable_on_not_found_sessions
4170
+ ---------------------------------------------------------------------------------------------
4171
+  (0.0ms) rollback transaction
4172
+  (0.0ms) begin transaction
4173
+ ------------------------------------------------------------------------------
4174
+ WebConsole::ConsoleSessionTest: test_slave_methods_are_cached_on_the_singleton
4175
+ ------------------------------------------------------------------------------
4176
+  (0.0ms) rollback transaction
4177
+  (0.0ms) begin transaction
4178
+ -------------------------------------------
4179
+ WebConsole::ConsoleSessionTest: test_to_key
4180
+ -------------------------------------------
4181
+  (0.0ms) rollback transaction
4182
+  (0.0ms) begin transaction
4183
+ ---------------------------------------------
4184
+ WebConsole::ConsoleSessionTest: test_to_param
4185
+ ---------------------------------------------
4186
+  (0.1ms) rollback transaction
4187
+  (0.0ms) begin transaction
4188
+ ----------------------------------------------------
4189
+ WebConsole::ConsoleSessionTest: test_to_partial_path
4190
+ ----------------------------------------------------
4191
+  (0.0ms) rollback transaction
4192
+  (0.1ms) begin transaction
4193
+ -------------------------------------------------------------------------------------
4194
+ WebConsole::ConsoleSessionsControllerTest: test_GET_index_creates_new_console_session
4195
+ -------------------------------------------------------------------------------------
4196
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4197
+ Completed 500 Internal Server Error in 16ms
4198
+  (0.1ms) rollback transaction
4199
+  (0.0ms) begin transaction
4200
+ -------------------------------------------------------------------------------------------------
4201
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_gives_the_slave_pending_output
4202
+ -------------------------------------------------------------------------------------------------
4203
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4204
+ Completed 500 Internal Server Error in 4ms
4205
+  (0.0ms) rollback transaction
4206
+  (0.1ms) begin transaction
4207
+ --------------------------------------------------------------------------------------------------------
4208
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_raises_410_on_exitted_slave_processes
4209
+ --------------------------------------------------------------------------------------------------------
4210
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4211
+ Completed 500 Internal Server Error in 5ms
4212
+  (0.1ms) rollback transaction
4213
+  (0.0ms) begin transaction
4214
+ ------------------------------------------------------------------------------------------
4215
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_configuration_adjust_the_terminal_size
4216
+ ------------------------------------------------------------------------------------------
4217
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4218
+ Completed 500 Internal Server Error in 5ms
4219
+  (0.1ms) rollback transaction
4220
+  (0.1ms) begin transaction
4221
+ ----------------------------------------------------------------------------------
4222
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_sends_input_to_the_slave
4223
+ ----------------------------------------------------------------------------------
4224
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4225
+ Completed 500 Internal Server Error in 5ms
4226
+  (0.1ms) rollback transaction
4227
+  (0.1ms) begin transaction
4228
+ -------------------------------------------------------------------------------------
4229
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_validates_for_missing_input
4230
+ -------------------------------------------------------------------------------------
4231
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4232
+ Completed 500 Internal Server Error in 5ms
4233
+  (0.1ms) rollback transaction
4234
+  (0.1ms) begin transaction
4235
+ ------------------------------------------------------------------------------------
4236
+ WebConsole::ConsoleSessionsControllerTest: test_allows_requests_from_whitelisted_ips
4237
+ ------------------------------------------------------------------------------------
4238
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4239
+ Completed 500 Internal Server Error in 21ms
4240
+  (0.1ms) rollback transaction
4241
+  (0.1ms) begin transaction
4242
+ ----------------------------------------------------------------------------------------
4243
+ WebConsole::ConsoleSessionsControllerTest: test_blocks_requests_from_non-whitelisted_ips
4244
+ ----------------------------------------------------------------------------------------
4245
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4246
+ Filter chain halted as :prevent_unauthorized_requests! rendered or redirected
4247
+ Completed 401 Unauthorized in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4248
+  (0.0ms) rollback transaction
4249
+  (0.1ms) begin transaction
4250
+ --------------------------------------------------------------------
4251
+ WebConsole::ConsoleSessionsControllerTest: test_index_generated_path
4252
+ --------------------------------------------------------------------
4253
+  (0.1ms) rollback transaction
4254
+  (0.0ms) begin transaction
4255
+ -------------------------------------------------------------------
4256
+ WebConsole::ConsoleSessionsControllerTest: test_index_is_successful
4257
+ -------------------------------------------------------------------
4258
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4259
+ Completed 500 Internal Server Error in 7ms
4260
+  (0.1ms) rollback transaction
4261
+  (0.0ms) begin transaction
4262
+ -----------------------------------------------------------------------------
4263
+ WebConsole::EngineTest: test_blank_commands_are_expanded_to_the_rails_console
4264
+ -----------------------------------------------------------------------------
4265
+  (0.1ms) begin transaction
4266
+ ------------------------------------------------------
4267
+ WebConsole::EngineTest: test_custom_default_mount_path
4268
+ ------------------------------------------------------
4269
+  (0.1ms) begin transaction
4270
+ ---------------------------------------------------
4271
+ WebConsole::EngineTest: test_disabling_automounting
4272
+ ---------------------------------------------------
4273
+  (0.1ms) begin transaction
4274
+ ---------------------------------------------------------------
4275
+ WebConsole::EngineTest: test_present_commands_are_not_processed
4276
+ ---------------------------------------------------------------
4277
+  (0.2ms) begin transaction
4278
+ --------------------------------------------------------
4279
+ WebConsole::EngineTest: test_whitelist_multiple_networks
4280
+ --------------------------------------------------------
4281
+  (0.2ms) begin transaction
4282
+ -----------------------------------------------------
4283
+ WebConsole::EngineTest: test_whitelist_whole_networks
4284
+ -----------------------------------------------------
4285
+  (0.2ms) begin transaction
4286
+ -----------------------------------------------------------------------
4287
+ WebConsole::EngineTest: test_whitelisted_ips.include?_coerces_to_IPAddr
4288
+ -----------------------------------------------------------------------
4289
+  (0.2ms) begin transaction
4290
+ -----------------------------------------------------------------------
4291
+ WebConsole::EngineTest: test_whitelisted_ips.include?_works_with_IPAddr
4292
+ -----------------------------------------------------------------------
4293
+  (0.2ms) begin transaction
4294
+ ------------------------------------------------------------------
4295
+ WebConsole::EngineTest: test_whitelisted_ips_are_courced_to_IPAddr
4296
+ ------------------------------------------------------------------
4297
+  (0.2ms) begin transaction
4298
+ -----------------------------------------------------------------------------
4299
+ WebConsole::EngineTest: test_whitelisted_ips_are_normalized_and_unique_IPAddr
4300
+ -----------------------------------------------------------------------------
4301
+  (0.2ms) begin transaction
4302
+ -----------------------------------------------------------------------
4303
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
4304
+ -----------------------------------------------------------------------
4305
+  (0.0ms) rollback transaction
4306
+  (0.0ms) begin transaction
4307
+ --------------------------------------------------
4308
+ WebConsole::REPLSessionTest: test_find_coerces_ids
4309
+ --------------------------------------------------
4310
+  (0.0ms) rollback transaction
4311
+  (0.0ms) begin transaction
4312
+ ---------------------------------------------------------------
4313
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
4314
+ ---------------------------------------------------------------
4315
+  (0.0ms) rollback transaction
4316
+  (0.0ms) begin transaction
4317
+ ----------------------------------------------------------------------------
4318
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
4319
+ ----------------------------------------------------------------------------
4320
+  (0.0ms) rollback transaction
4321
+  (0.0ms) begin transaction
4322
+ ------------------------------------------------------------------------------------------------
4323
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
4324
+ ------------------------------------------------------------------------------------------------
4325
+  (0.0ms) rollback transaction
4326
+  (0.0ms) begin transaction
4327
+ ----------------------------------------------------------------
4328
+ WebConsole::SlaveTest: test_#configure_changes_@input_dimentions
4329
+ ----------------------------------------------------------------
4330
+  (0.0ms) rollback transaction
4331
+  (0.0ms) begin transaction
4332
+ -------------------------------------------------------------------------------------------
4333
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_height_is_zero
4334
+ -------------------------------------------------------------------------------------------
4335
+  (0.1ms) rollback transaction
4336
+  (0.0ms) begin transaction
4337
+ ------------------------------------------------------------------------------------------
4338
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_width_is_zero
4339
+ ------------------------------------------------------------------------------------------
4340
+  (0.0ms) rollback transaction
4341
+  (0.0ms) begin transaction
4342
+ ---------------------------------------------------------------------------
4343
+ WebConsole::SlaveTest: test_#dispose!_can_reraise_Errno::ESRCH_if_requested
4344
+ ---------------------------------------------------------------------------
4345
+  (0.0ms) rollback transaction
4346
+  (0.0ms) begin transaction
4347
+ ----------------------------------------------------------------------------------
4348
+ WebConsole::SlaveTest: test_#dispose!_sends_SIGKILL_to_the_process_and_detaches_it
4349
+ ----------------------------------------------------------------------------------
4350
+  (0.0ms) rollback transaction
4351
+  (0.1ms) begin transaction
4352
+ --------------------------------------------------------------------------
4353
+ WebConsole::SlaveTest: test_#dispose_can_reraise_Errno::ESRCH_if_requested
4354
+ --------------------------------------------------------------------------
4355
+  (0.0ms) rollback transaction
4356
+  (0.0ms) begin transaction
4357
+ ---------------------------------------------------------------------------------
4358
+ WebConsole::SlaveTest: test_#dispose_sends_SIGTERM_to_the_process_and_detaches_it
4359
+ ---------------------------------------------------------------------------------
4360
+  (0.0ms) rollback transaction
4361
+  (0.0ms) begin transaction
4362
+ --------------------------------------------------------------------------
4363
+ WebConsole::SlaveTest: test_#pending_output_always_encodes_output_in_UTF-8
4364
+ --------------------------------------------------------------------------
4365
+  (0.0ms) rollback transaction
4366
+  (0.0ms) begin transaction
4367
+ ---------------------------------------------------------------------------------------------
4368
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_EOFError
4369
+ ---------------------------------------------------------------------------------------------
4370
+  (0.0ms) rollback transaction
4371
+  (0.0ms) begin transaction
4372
+ -----------------------------------------------------------------------------------------------
4373
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_Errno::EIO
4374
+ -----------------------------------------------------------------------------------------------
4375
+  (0.0ms) rollback transaction
4376
+  (0.0ms) begin transaction
4377
+ ------------------------------------------------------------------------------------
4378
+ WebConsole::SlaveTest: test_#pending_output_returns_a_string_with_the_current_output
4379
+ ------------------------------------------------------------------------------------
4380
+  (0.0ms) rollback transaction
4381
+  (0.1ms) begin transaction
4382
+ ----------------------------------------------------------------------------
4383
+ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
4384
+ ----------------------------------------------------------------------------
4385
+  (0.0ms) rollback transaction
4386
+  (0.1ms) begin transaction
4387
+ -------------------------------------------------------------------------
4388
+ WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
4389
+ -------------------------------------------------------------------------
4390
+  (0.0ms) rollback transaction
4391
+  (0.2ms) begin transaction
4392
+ --------------------------------------------------------------------------------------------------------
4393
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
4394
+ --------------------------------------------------------------------------------------------------------
4395
+  (0.1ms) rollback transaction
4396
+  (0.0ms) begin transaction
4397
+ -----------------------------------------------------------------------------------------
4398
+ ExceptionExtensionTest: test_should_store_binding_trace_if_binding_of_caller_is_available
4399
+ -----------------------------------------------------------------------------------------
4400
+  (0.0ms) rollback transaction
4401
+  (0.0ms) begin transaction
4402
+ ---------------------------------------------------
4403
+ REPLTest: test_preserves_the_session_in_the_binding
4404
+ ---------------------------------------------------
4405
+  (0.0ms) rollback transaction
4406
+  (0.0ms) begin transaction
4407
+ --------------------------------
4408
+ REPLTest: test_prompt_is_present
4409
+ --------------------------------
4410
+  (0.0ms) rollback transaction
4411
+  (0.0ms) begin transaction
4412
+ ---------------------------------------------------------
4413
+ REPLTest: test_sending_input_returns_the_result_as_output
4414
+ ---------------------------------------------------------
4415
+  (0.0ms) rollback transaction
4416
+  (0.0ms) begin transaction
4417
+ ----------------------------------------------------------
4418
+ REPLTest: test_session_preservation_requires_same_bindings
4419
+ ----------------------------------------------------------
4420
+  (0.0ms) rollback transaction
4421
+  (0.0ms) begin transaction
4422
+ --------------------------------------------------------------------
4423
+ WebConsole::ColorsTest: test_#background=_is_an_alias_of_#background
4424
+ --------------------------------------------------------------------
4425
+  (0.0ms) rollback transaction
4426
+  (0.0ms) begin transaction
4427
+ --------------------------------------------------------------------
4428
+ WebConsole::ColorsTest: test_#background_can_be_explicitly_specified
4429
+ --------------------------------------------------------------------
4430
+  (0.0ms) rollback transaction
4431
+  (0.0ms) begin transaction
4432
+ ----------------------------------------------------------------------------
4433
+ WebConsole::ColorsTest: test_#background_is_the_first_color_if_not_specified
4434
+ ----------------------------------------------------------------------------
4435
+  (0.0ms) rollback transaction
4436
+  (0.0ms) begin transaction
4437
+ -----------------------------------------------
4438
+ WebConsole::ColorsTest: test_#default_is_:light
4439
+ -----------------------------------------------
4440
+  (0.0ms) rollback transaction
4441
+  (0.0ms) begin transaction
4442
+ --------------------------------------------------------------------
4443
+ WebConsole::ColorsTest: test_#foreground=_is_an_alias_of_#foreground
4444
+ --------------------------------------------------------------------
4445
+  (0.0ms) rollback transaction
4446
+  (0.0ms) begin transaction
4447
+ --------------------------------------------------------------------
4448
+ WebConsole::ColorsTest: test_#foreground_can_be_explicitly_specified
4449
+ --------------------------------------------------------------------
4450
+  (0.0ms) rollback transaction
4451
+  (0.0ms) begin transaction
4452
+ ---------------------------------------------------------------------------
4453
+ WebConsole::ColorsTest: test_#foreground_is_the_last_color_if_not_specified
4454
+ ---------------------------------------------------------------------------
4455
+  (0.0ms) rollback transaction
4456
+  (0.0ms) begin transaction
4457
+ --------------------------------------------------------------------------------
4458
+ WebConsole::ColorsTest: test_#to_json_includes_the_background_and_the_foreground
4459
+ --------------------------------------------------------------------------------
4460
+  (0.0ms) rollback transaction
4461
+  (0.0ms) begin transaction
4462
+ -----------------------------------------------------------
4463
+ WebConsole::ColorsTest: test_.[]_is_an_alias_for_.themes#[]
4464
+ -----------------------------------------------------------
4465
+  (0.0ms) rollback transaction
4466
+  (0.0ms) begin transaction
4467
+ ----------------------------------------------------------------------------------
4468
+ WebConsole::ColorsTest: test_.register_theme_creates_Colors_instance_for_the_block
4469
+ ----------------------------------------------------------------------------------
4470
+  (0.0ms) rollback transaction
4471
+  (0.0ms) begin transaction
4472
+ --------------------------------------------------------------------------------------
4473
+ WebConsole::ConsoleSessionTest: test_can_be_used_as_slave_as_the_methods_are_delegated
4474
+ --------------------------------------------------------------------------------------
4475
+  (0.1ms) rollback transaction
4476
+  (0.1ms) begin transaction
4477
+ --------------------------------------------------------------------------
4478
+ WebConsole::ConsoleSessionTest: test_create_gives_already_persisted_models
4479
+ --------------------------------------------------------------------------
4480
+  (0.0ms) rollback transaction
4481
+  (0.0ms) begin transaction
4482
+ ------------------------------------------------
4483
+ WebConsole::ConsoleSessionTest: test_errors_aref
4484
+ ------------------------------------------------
4485
+  (0.1ms) rollback transaction
4486
+  (0.0ms) begin transaction
4487
+ -----------------------------------------------------
4488
+ WebConsole::ConsoleSessionTest: test_find_coerces_ids
4489
+ -----------------------------------------------------
4490
+  (0.0ms) rollback transaction
4491
+  (0.0ms) begin transaction
4492
+ -------------------------------------------------
4493
+ WebConsole::ConsoleSessionTest: test_model_naming
4494
+ -------------------------------------------------
4495
+  (0.0ms) rollback transaction
4496
+  (0.0ms) begin transaction
4497
+ ------------------------------------------------------------------
4498
+ WebConsole::ConsoleSessionTest: test_no_gives_not_persisted_models
4499
+ ------------------------------------------------------------------
4500
+  (0.0ms) rollback transaction
4501
+  (0.0ms) begin transaction
4502
+ -------------------------------------------------------------------------------
4503
+ WebConsole::ConsoleSessionTest: test_not_found_exceptions_are_JSON_serializable
4504
+ -------------------------------------------------------------------------------
4505
+  (0.0ms) rollback transaction
4506
+  (0.0ms) begin transaction
4507
+ -----------------------------------------------
4508
+ WebConsole::ConsoleSessionTest: test_persisted?
4509
+ -----------------------------------------------
4510
+  (0.0ms) rollback transaction
4511
+  (0.0ms) begin transaction
4512
+ ----------------------------------------------------------------------------
4513
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_about_their_keys
4514
+ ----------------------------------------------------------------------------
4515
+  (0.0ms) rollback transaction
4516
+  (0.0ms) begin transaction
4517
+ -----------------------------------------------------------------------------------
4518
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_that_they_are_in_memory
4519
+ -----------------------------------------------------------------------------------
4520
+  (0.0ms) rollback transaction
4521
+  (0.0ms) begin transaction
4522
+ ---------------------------------------------------------------------------------------------
4523
+ WebConsole::ConsoleSessionTest: test_raises_ConsoleSession::Unavailable_on_not_found_sessions
4524
+ ---------------------------------------------------------------------------------------------
4525
+  (0.0ms) rollback transaction
4526
+  (0.0ms) begin transaction
4527
+ ------------------------------------------------------------------------------
4528
+ WebConsole::ConsoleSessionTest: test_slave_methods_are_cached_on_the_singleton
4529
+ ------------------------------------------------------------------------------
4530
+  (0.0ms) rollback transaction
4531
+  (0.1ms) begin transaction
4532
+ -------------------------------------------
4533
+ WebConsole::ConsoleSessionTest: test_to_key
4534
+ -------------------------------------------
4535
+  (0.0ms) rollback transaction
4536
+  (0.0ms) begin transaction
4537
+ ---------------------------------------------
4538
+ WebConsole::ConsoleSessionTest: test_to_param
4539
+ ---------------------------------------------
4540
+  (0.0ms) rollback transaction
4541
+  (0.0ms) begin transaction
4542
+ ----------------------------------------------------
4543
+ WebConsole::ConsoleSessionTest: test_to_partial_path
4544
+ ----------------------------------------------------
4545
+  (0.0ms) rollback transaction
4546
+  (0.0ms) begin transaction
4547
+ -------------------------------------------------------------------------------------
4548
+ WebConsole::ConsoleSessionsControllerTest: test_GET_index_creates_new_console_session
4549
+ -------------------------------------------------------------------------------------
4550
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4551
+ Completed 500 Internal Server Error in 13ms
4552
+  (0.1ms) rollback transaction
4553
+  (0.0ms) begin transaction
4554
+ -------------------------------------------------------------------------------------------------
4555
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_gives_the_slave_pending_output
4556
+ -------------------------------------------------------------------------------------------------
4557
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4558
+ Completed 500 Internal Server Error in 5ms
4559
+  (0.1ms) rollback transaction
4560
+  (0.1ms) begin transaction
4561
+ --------------------------------------------------------------------------------------------------------
4562
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_raises_410_on_exitted_slave_processes
4563
+ --------------------------------------------------------------------------------------------------------
4564
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4565
+ Completed 500 Internal Server Error in 5ms
4566
+  (0.1ms) rollback transaction
4567
+  (0.0ms) begin transaction
4568
+ ------------------------------------------------------------------------------------------
4569
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_configuration_adjust_the_terminal_size
4570
+ ------------------------------------------------------------------------------------------
4571
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4572
+ Completed 500 Internal Server Error in 5ms
4573
+  (0.1ms) rollback transaction
4574
+  (0.0ms) begin transaction
4575
+ ----------------------------------------------------------------------------------
4576
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_sends_input_to_the_slave
4577
+ ----------------------------------------------------------------------------------
4578
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4579
+ Completed 500 Internal Server Error in 5ms
4580
+  (0.1ms) rollback transaction
4581
+  (0.0ms) begin transaction
4582
+ -------------------------------------------------------------------------------------
4583
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_validates_for_missing_input
4584
+ -------------------------------------------------------------------------------------
4585
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4586
+ Completed 500 Internal Server Error in 5ms
4587
+  (0.2ms) rollback transaction
4588
+  (0.0ms) begin transaction
4589
+ ------------------------------------------------------------------------------------
4590
+ WebConsole::ConsoleSessionsControllerTest: test_allows_requests_from_whitelisted_ips
4591
+ ------------------------------------------------------------------------------------
4592
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4593
+ Completed 500 Internal Server Error in 19ms
4594
+  (0.1ms) rollback transaction
4595
+  (0.1ms) begin transaction
4596
+ ----------------------------------------------------------------------------------------
4597
+ WebConsole::ConsoleSessionsControllerTest: test_blocks_requests_from_non-whitelisted_ips
4598
+ ----------------------------------------------------------------------------------------
4599
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4600
+ Filter chain halted as :prevent_unauthorized_requests! rendered or redirected
4601
+ Completed 401 Unauthorized in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4602
+  (0.1ms) rollback transaction
4603
+  (0.1ms) begin transaction
4604
+ --------------------------------------------------------------------
4605
+ WebConsole::ConsoleSessionsControllerTest: test_index_generated_path
4606
+ --------------------------------------------------------------------
4607
+  (0.0ms) rollback transaction
4608
+  (0.0ms) begin transaction
4609
+ -------------------------------------------------------------------
4610
+ WebConsole::ConsoleSessionsControllerTest: test_index_is_successful
4611
+ -------------------------------------------------------------------
4612
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4613
+ Completed 500 Internal Server Error in 5ms
4614
+  (0.1ms) rollback transaction
4615
+  (0.0ms) begin transaction
4616
+ -----------------------------------------------------------------------------
4617
+ WebConsole::EngineTest: test_blank_commands_are_expanded_to_the_rails_console
4618
+ -----------------------------------------------------------------------------
4619
+  (0.2ms) begin transaction
4620
+ ------------------------------------------------------
4621
+ WebConsole::EngineTest: test_custom_default_mount_path
4622
+ ------------------------------------------------------
4623
+  (0.2ms) begin transaction
4624
+ ---------------------------------------------------
4625
+ WebConsole::EngineTest: test_disabling_automounting
4626
+ ---------------------------------------------------
4627
+  (0.1ms) begin transaction
4628
+ ---------------------------------------------------------------
4629
+ WebConsole::EngineTest: test_present_commands_are_not_processed
4630
+ ---------------------------------------------------------------
4631
+  (0.1ms) begin transaction
4632
+ --------------------------------------------------------
4633
+ WebConsole::EngineTest: test_whitelist_multiple_networks
4634
+ --------------------------------------------------------
4635
+  (0.2ms) begin transaction
4636
+ -----------------------------------------------------
4637
+ WebConsole::EngineTest: test_whitelist_whole_networks
4638
+ -----------------------------------------------------
4639
+  (0.2ms) begin transaction
4640
+ -----------------------------------------------------------------------
4641
+ WebConsole::EngineTest: test_whitelisted_ips.include?_coerces_to_IPAddr
4642
+ -----------------------------------------------------------------------
4643
+  (0.1ms) begin transaction
4644
+ -----------------------------------------------------------------------
4645
+ WebConsole::EngineTest: test_whitelisted_ips.include?_works_with_IPAddr
4646
+ -----------------------------------------------------------------------
4647
+  (0.2ms) begin transaction
4648
+ ------------------------------------------------------------------
4649
+ WebConsole::EngineTest: test_whitelisted_ips_are_courced_to_IPAddr
4650
+ ------------------------------------------------------------------
4651
+  (0.2ms) begin transaction
4652
+ -----------------------------------------------------------------------------
4653
+ WebConsole::EngineTest: test_whitelisted_ips_are_normalized_and_unique_IPAddr
4654
+ -----------------------------------------------------------------------------
4655
+  (0.2ms) begin transaction
4656
+ -----------------------------------------------------------------------
4657
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
4658
+ -----------------------------------------------------------------------
4659
+  (0.0ms) rollback transaction
4660
+  (0.0ms) begin transaction
4661
+ --------------------------------------------------
4662
+ WebConsole::REPLSessionTest: test_find_coerces_ids
4663
+ --------------------------------------------------
4664
+  (0.0ms) rollback transaction
4665
+  (0.0ms) begin transaction
4666
+ ---------------------------------------------------------------
4667
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
4668
+ ---------------------------------------------------------------
4669
+  (0.0ms) rollback transaction
4670
+  (0.1ms) begin transaction
4671
+ ----------------------------------------------------------------------------
4672
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
4673
+ ----------------------------------------------------------------------------
4674
+  (0.0ms) rollback transaction
4675
+  (0.1ms) begin transaction
4676
+ ------------------------------------------------------------------------------------------------
4677
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
4678
+ ------------------------------------------------------------------------------------------------
4679
+  (0.0ms) rollback transaction
4680
+  (0.0ms) begin transaction
4681
+ ----------------------------------------------------------------
4682
+ WebConsole::SlaveTest: test_#configure_changes_@input_dimentions
4683
+ ----------------------------------------------------------------
4684
+  (0.0ms) rollback transaction
4685
+  (0.1ms) begin transaction
4686
+ -------------------------------------------------------------------------------------------
4687
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_height_is_zero
4688
+ -------------------------------------------------------------------------------------------
4689
+  (0.0ms) rollback transaction
4690
+  (0.0ms) begin transaction
4691
+ ------------------------------------------------------------------------------------------
4692
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_width_is_zero
4693
+ ------------------------------------------------------------------------------------------
4694
+  (0.0ms) rollback transaction
4695
+  (0.0ms) begin transaction
4696
+ ---------------------------------------------------------------------------
4697
+ WebConsole::SlaveTest: test_#dispose!_can_reraise_Errno::ESRCH_if_requested
4698
+ ---------------------------------------------------------------------------
4699
+  (0.0ms) rollback transaction
4700
+  (0.1ms) begin transaction
4701
+ ----------------------------------------------------------------------------------
4702
+ WebConsole::SlaveTest: test_#dispose!_sends_SIGKILL_to_the_process_and_detaches_it
4703
+ ----------------------------------------------------------------------------------
4704
+  (0.0ms) rollback transaction
4705
+  (0.0ms) begin transaction
4706
+ --------------------------------------------------------------------------
4707
+ WebConsole::SlaveTest: test_#dispose_can_reraise_Errno::ESRCH_if_requested
4708
+ --------------------------------------------------------------------------
4709
+  (0.0ms) rollback transaction
4710
+  (0.1ms) begin transaction
4711
+ ---------------------------------------------------------------------------------
4712
+ WebConsole::SlaveTest: test_#dispose_sends_SIGTERM_to_the_process_and_detaches_it
4713
+ ---------------------------------------------------------------------------------
4714
+  (0.0ms) rollback transaction
4715
+  (0.0ms) begin transaction
4716
+ --------------------------------------------------------------------------
4717
+ WebConsole::SlaveTest: test_#pending_output_always_encodes_output_in_UTF-8
4718
+ --------------------------------------------------------------------------
4719
+  (0.0ms) rollback transaction
4720
+  (0.0ms) begin transaction
4721
+ ---------------------------------------------------------------------------------------------
4722
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_EOFError
4723
+ ---------------------------------------------------------------------------------------------
4724
+  (0.0ms) rollback transaction
4725
+  (0.0ms) begin transaction
4726
+ -----------------------------------------------------------------------------------------------
4727
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_Errno::EIO
4728
+ -----------------------------------------------------------------------------------------------
4729
+  (0.0ms) rollback transaction
4730
+  (0.0ms) begin transaction
4731
+ ------------------------------------------------------------------------------------
4732
+ WebConsole::SlaveTest: test_#pending_output_returns_a_string_with_the_current_output
4733
+ ------------------------------------------------------------------------------------
4734
+  (0.0ms) rollback transaction
4735
+  (0.0ms) begin transaction
4736
+ ----------------------------------------------------------------------------
4737
+ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
4738
+ ----------------------------------------------------------------------------
4739
+  (0.0ms) rollback transaction
4740
+  (0.1ms) begin transaction
4741
+ -------------------------------------------------------------------------
4742
+ WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
4743
+ -------------------------------------------------------------------------
4744
+  (0.0ms) rollback transaction
4745
+  (0.2ms) begin transaction
4746
+ --------------------------------------------------------------------------------------------------------
4747
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
4748
+ --------------------------------------------------------------------------------------------------------
4749
+  (0.0ms) rollback transaction
4750
+  (0.0ms) begin transaction
4751
+ -----------------------------------------------------------------------------------------
4752
+ ExceptionExtensionTest: test_should_store_binding_trace_if_binding_of_caller_is_available
4753
+ -----------------------------------------------------------------------------------------
4754
+  (0.0ms) rollback transaction
4755
+  (0.0ms) begin transaction
4756
+ ---------------------------------------------------
4757
+ REPLTest: test_preserves_the_session_in_the_binding
4758
+ ---------------------------------------------------
4759
+  (0.0ms) rollback transaction
4760
+  (0.0ms) begin transaction
4761
+ --------------------------------
4762
+ REPLTest: test_prompt_is_present
4763
+ --------------------------------
4764
+  (0.0ms) rollback transaction
4765
+  (0.0ms) begin transaction
4766
+ ---------------------------------------------------------
4767
+ REPLTest: test_sending_input_returns_the_result_as_output
4768
+ ---------------------------------------------------------
4769
+  (0.0ms) rollback transaction
4770
+  (0.0ms) begin transaction
4771
+ ----------------------------------------------------------
4772
+ REPLTest: test_session_preservation_requires_same_bindings
4773
+ ----------------------------------------------------------
4774
+  (0.0ms) rollback transaction
4775
+  (0.0ms) begin transaction
4776
+ --------------------------------------------------------------------
4777
+ WebConsole::ColorsTest: test_#background=_is_an_alias_of_#background
4778
+ --------------------------------------------------------------------
4779
+  (0.0ms) rollback transaction
4780
+  (0.0ms) begin transaction
4781
+ --------------------------------------------------------------------
4782
+ WebConsole::ColorsTest: test_#background_can_be_explicitly_specified
4783
+ --------------------------------------------------------------------
4784
+  (0.0ms) rollback transaction
4785
+  (0.1ms) begin transaction
4786
+ ----------------------------------------------------------------------------
4787
+ WebConsole::ColorsTest: test_#background_is_the_first_color_if_not_specified
4788
+ ----------------------------------------------------------------------------
4789
+  (0.0ms) rollback transaction
4790
+  (0.0ms) begin transaction
4791
+ -----------------------------------------------
4792
+ WebConsole::ColorsTest: test_#default_is_:light
4793
+ -----------------------------------------------
4794
+  (0.0ms) rollback transaction
4795
+  (0.1ms) begin transaction
4796
+ --------------------------------------------------------------------
4797
+ WebConsole::ColorsTest: test_#foreground=_is_an_alias_of_#foreground
4798
+ --------------------------------------------------------------------
4799
+  (0.0ms) rollback transaction
4800
+  (0.0ms) begin transaction
4801
+ --------------------------------------------------------------------
4802
+ WebConsole::ColorsTest: test_#foreground_can_be_explicitly_specified
4803
+ --------------------------------------------------------------------
4804
+  (0.0ms) rollback transaction
4805
+  (0.1ms) begin transaction
4806
+ ---------------------------------------------------------------------------
4807
+ WebConsole::ColorsTest: test_#foreground_is_the_last_color_if_not_specified
4808
+ ---------------------------------------------------------------------------
4809
+  (0.0ms) rollback transaction
4810
+  (0.0ms) begin transaction
4811
+ --------------------------------------------------------------------------------
4812
+ WebConsole::ColorsTest: test_#to_json_includes_the_background_and_the_foreground
4813
+ --------------------------------------------------------------------------------
4814
+  (0.0ms) rollback transaction
4815
+  (0.0ms) begin transaction
4816
+ -----------------------------------------------------------
4817
+ WebConsole::ColorsTest: test_.[]_is_an_alias_for_.themes#[]
4818
+ -----------------------------------------------------------
4819
+  (0.0ms) rollback transaction
4820
+  (0.0ms) begin transaction
4821
+ ----------------------------------------------------------------------------------
4822
+ WebConsole::ColorsTest: test_.register_theme_creates_Colors_instance_for_the_block
4823
+ ----------------------------------------------------------------------------------
4824
+  (0.0ms) rollback transaction
4825
+  (0.0ms) begin transaction
4826
+ --------------------------------------------------------------------------------------
4827
+ WebConsole::ConsoleSessionTest: test_can_be_used_as_slave_as_the_methods_are_delegated
4828
+ --------------------------------------------------------------------------------------
4829
+  (0.0ms) rollback transaction
4830
+  (0.0ms) begin transaction
4831
+ --------------------------------------------------------------------------
4832
+ WebConsole::ConsoleSessionTest: test_create_gives_already_persisted_models
4833
+ --------------------------------------------------------------------------
4834
+  (0.1ms) rollback transaction
4835
+  (0.0ms) begin transaction
4836
+ ------------------------------------------------
4837
+ WebConsole::ConsoleSessionTest: test_errors_aref
4838
+ ------------------------------------------------
4839
+  (0.0ms) rollback transaction
4840
+  (0.0ms) begin transaction
4841
+ -----------------------------------------------------
4842
+ WebConsole::ConsoleSessionTest: test_find_coerces_ids
4843
+ -----------------------------------------------------
4844
+  (0.0ms) rollback transaction
4845
+  (0.0ms) begin transaction
4846
+ -------------------------------------------------
4847
+ WebConsole::ConsoleSessionTest: test_model_naming
4848
+ -------------------------------------------------
4849
+  (0.0ms) rollback transaction
4850
+  (0.0ms) begin transaction
4851
+ ------------------------------------------------------------------
4852
+ WebConsole::ConsoleSessionTest: test_no_gives_not_persisted_models
4853
+ ------------------------------------------------------------------
4854
+  (0.0ms) rollback transaction
4855
+  (0.1ms) begin transaction
4856
+ -------------------------------------------------------------------------------
4857
+ WebConsole::ConsoleSessionTest: test_not_found_exceptions_are_JSON_serializable
4858
+ -------------------------------------------------------------------------------
4859
+  (0.0ms) rollback transaction
4860
+  (0.1ms) begin transaction
4861
+ -----------------------------------------------
4862
+ WebConsole::ConsoleSessionTest: test_persisted?
4863
+ -----------------------------------------------
4864
+  (0.0ms) rollback transaction
4865
+  (0.0ms) begin transaction
4866
+ ----------------------------------------------------------------------------
4867
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_about_their_keys
4868
+ ----------------------------------------------------------------------------
4869
+  (0.0ms) rollback transaction
4870
+  (0.0ms) begin transaction
4871
+ -----------------------------------------------------------------------------------
4872
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_that_they_are_in_memory
4873
+ -----------------------------------------------------------------------------------
4874
+  (0.0ms) rollback transaction
4875
+  (0.0ms) begin transaction
4876
+ ---------------------------------------------------------------------------------------------
4877
+ WebConsole::ConsoleSessionTest: test_raises_ConsoleSession::Unavailable_on_not_found_sessions
4878
+ ---------------------------------------------------------------------------------------------
4879
+  (0.0ms) rollback transaction
4880
+  (0.1ms) begin transaction
4881
+ ------------------------------------------------------------------------------
4882
+ WebConsole::ConsoleSessionTest: test_slave_methods_are_cached_on_the_singleton
4883
+ ------------------------------------------------------------------------------
4884
+  (0.0ms) rollback transaction
4885
+  (0.1ms) begin transaction
4886
+ -------------------------------------------
4887
+ WebConsole::ConsoleSessionTest: test_to_key
4888
+ -------------------------------------------
4889
+  (0.0ms) rollback transaction
4890
+  (0.0ms) begin transaction
4891
+ ---------------------------------------------
4892
+ WebConsole::ConsoleSessionTest: test_to_param
4893
+ ---------------------------------------------
4894
+  (0.0ms) rollback transaction
4895
+  (0.0ms) begin transaction
4896
+ ----------------------------------------------------
4897
+ WebConsole::ConsoleSessionTest: test_to_partial_path
4898
+ ----------------------------------------------------
4899
+  (0.0ms) rollback transaction
4900
+  (0.0ms) begin transaction
4901
+ -------------------------------------------------------------------------------------
4902
+ WebConsole::ConsoleSessionsControllerTest: test_GET_index_creates_new_console_session
4903
+ -------------------------------------------------------------------------------------
4904
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4905
+ Completed 500 Internal Server Error in 35ms
4906
+  (0.1ms) rollback transaction
4907
+  (0.0ms) begin transaction
4908
+ -------------------------------------------------------------------------------------------------
4909
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_gives_the_slave_pending_output
4910
+ -------------------------------------------------------------------------------------------------
4911
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4912
+ Completed 500 Internal Server Error in 10ms
4913
+  (0.1ms) rollback transaction
4914
+  (0.0ms) begin transaction
4915
+ --------------------------------------------------------------------------------------------------------
4916
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_raises_410_on_exitted_slave_processes
4917
+ --------------------------------------------------------------------------------------------------------
4918
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4919
+ Completed 500 Internal Server Error in 8ms
4920
+  (0.0ms) rollback transaction
4921
+  (0.0ms) begin transaction
4922
+ ------------------------------------------------------------------------------------------
4923
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_configuration_adjust_the_terminal_size
4924
+ ------------------------------------------------------------------------------------------
4925
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4926
+ Completed 500 Internal Server Error in 8ms
4927
+  (0.0ms) rollback transaction
4928
+  (0.0ms) begin transaction
4929
+ ----------------------------------------------------------------------------------
4930
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_sends_input_to_the_slave
4931
+ ----------------------------------------------------------------------------------
4932
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4933
+ Completed 500 Internal Server Error in 12ms
4934
+  (0.1ms) rollback transaction
4935
+  (0.0ms) begin transaction
4936
+ -------------------------------------------------------------------------------------
4937
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_validates_for_missing_input
4938
+ -------------------------------------------------------------------------------------
4939
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4940
+ Completed 500 Internal Server Error in 8ms
4941
+  (0.0ms) rollback transaction
4942
+  (0.0ms) begin transaction
4943
+ ------------------------------------------------------------------------------------
4944
+ WebConsole::ConsoleSessionsControllerTest: test_allows_requests_from_whitelisted_ips
4945
+ ------------------------------------------------------------------------------------
4946
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4947
+ Completed 500 Internal Server Error in 7ms
4948
+  (0.1ms) rollback transaction
4949
+  (0.0ms) begin transaction
4950
+ ----------------------------------------------------------------------------------------
4951
+ WebConsole::ConsoleSessionsControllerTest: test_blocks_requests_from_non-whitelisted_ips
4952
+ ----------------------------------------------------------------------------------------
4953
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4954
+ Filter chain halted as :prevent_unauthorized_requests! rendered or redirected
4955
+ Completed 401 Unauthorized in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4956
+  (0.0ms) rollback transaction
4957
+  (0.1ms) begin transaction
4958
+ --------------------------------------------------------------------
4959
+ WebConsole::ConsoleSessionsControllerTest: test_index_generated_path
4960
+ --------------------------------------------------------------------
4961
+  (0.0ms) rollback transaction
4962
+  (0.1ms) begin transaction
4963
+ -------------------------------------------------------------------
4964
+ WebConsole::ConsoleSessionsControllerTest: test_index_is_successful
4965
+ -------------------------------------------------------------------
4966
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
4967
+ Completed 500 Internal Server Error in 8ms
4968
+  (0.1ms) rollback transaction
4969
+  (0.0ms) begin transaction
4970
+ -----------------------------------------------------------------------------
4971
+ WebConsole::EngineTest: test_blank_commands_are_expanded_to_the_rails_console
4972
+ -----------------------------------------------------------------------------
4973
+  (0.1ms) begin transaction
4974
+ ------------------------------------------------------
4975
+ WebConsole::EngineTest: test_custom_default_mount_path
4976
+ ------------------------------------------------------
4977
+  (0.2ms) begin transaction
4978
+ ---------------------------------------------------
4979
+ WebConsole::EngineTest: test_disabling_automounting
4980
+ ---------------------------------------------------
4981
+  (0.1ms) begin transaction
4982
+ ---------------------------------------------------------------
4983
+ WebConsole::EngineTest: test_present_commands_are_not_processed
4984
+ ---------------------------------------------------------------
4985
+  (0.1ms) begin transaction
4986
+ --------------------------------------------------------
4987
+ WebConsole::EngineTest: test_whitelist_multiple_networks
4988
+ --------------------------------------------------------
4989
+  (0.2ms) begin transaction
4990
+ -----------------------------------------------------
4991
+ WebConsole::EngineTest: test_whitelist_whole_networks
4992
+ -----------------------------------------------------
4993
+  (0.1ms) begin transaction
4994
+ -----------------------------------------------------------------------
4995
+ WebConsole::EngineTest: test_whitelisted_ips.include?_coerces_to_IPAddr
4996
+ -----------------------------------------------------------------------
4997
+  (0.1ms) begin transaction
4998
+ -----------------------------------------------------------------------
4999
+ WebConsole::EngineTest: test_whitelisted_ips.include?_works_with_IPAddr
5000
+ -----------------------------------------------------------------------
5001
+  (0.1ms) begin transaction
5002
+ ------------------------------------------------------------------
5003
+ WebConsole::EngineTest: test_whitelisted_ips_are_courced_to_IPAddr
5004
+ ------------------------------------------------------------------
5005
+  (0.1ms) begin transaction
5006
+ -----------------------------------------------------------------------------
5007
+ WebConsole::EngineTest: test_whitelisted_ips_are_normalized_and_unique_IPAddr
5008
+ -----------------------------------------------------------------------------
5009
+  (0.1ms) begin transaction
5010
+ -----------------------------------------------------------------------
5011
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
5012
+ -----------------------------------------------------------------------
5013
+  (0.0ms) rollback transaction
5014
+  (0.0ms) begin transaction
5015
+ --------------------------------------------------
5016
+ WebConsole::REPLSessionTest: test_find_coerces_ids
5017
+ --------------------------------------------------
5018
+  (0.0ms) rollback transaction
5019
+  (0.0ms) begin transaction
5020
+ ---------------------------------------------------------------
5021
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
5022
+ ---------------------------------------------------------------
5023
+  (0.0ms) rollback transaction
5024
+  (0.0ms) begin transaction
5025
+ ----------------------------------------------------------------------------
5026
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
5027
+ ----------------------------------------------------------------------------
5028
+  (0.0ms) rollback transaction
5029
+  (0.1ms) begin transaction
5030
+ ------------------------------------------------------------------------------------------------
5031
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
5032
+ ------------------------------------------------------------------------------------------------
5033
+  (0.0ms) rollback transaction
5034
+  (0.0ms) begin transaction
5035
+ ----------------------------------------------------------------
5036
+ WebConsole::SlaveTest: test_#configure_changes_@input_dimentions
5037
+ ----------------------------------------------------------------
5038
+  (0.0ms) rollback transaction
5039
+  (0.0ms) begin transaction
5040
+ -------------------------------------------------------------------------------------------
5041
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_height_is_zero
5042
+ -------------------------------------------------------------------------------------------
5043
+  (0.0ms) rollback transaction
5044
+  (0.1ms) begin transaction
5045
+ ------------------------------------------------------------------------------------------
5046
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_width_is_zero
5047
+ ------------------------------------------------------------------------------------------
5048
+  (0.0ms) rollback transaction
5049
+  (0.1ms) begin transaction
5050
+ ---------------------------------------------------------------------------
5051
+ WebConsole::SlaveTest: test_#dispose!_can_reraise_Errno::ESRCH_if_requested
5052
+ ---------------------------------------------------------------------------
5053
+  (0.0ms) rollback transaction
5054
+  (0.0ms) begin transaction
5055
+ ----------------------------------------------------------------------------------
5056
+ WebConsole::SlaveTest: test_#dispose!_sends_SIGKILL_to_the_process_and_detaches_it
5057
+ ----------------------------------------------------------------------------------
5058
+  (0.0ms) rollback transaction
5059
+  (0.0ms) begin transaction
5060
+ --------------------------------------------------------------------------
5061
+ WebConsole::SlaveTest: test_#dispose_can_reraise_Errno::ESRCH_if_requested
5062
+ --------------------------------------------------------------------------
5063
+  (0.1ms) rollback transaction
5064
+  (0.1ms) begin transaction
5065
+ ---------------------------------------------------------------------------------
5066
+ WebConsole::SlaveTest: test_#dispose_sends_SIGTERM_to_the_process_and_detaches_it
5067
+ ---------------------------------------------------------------------------------
5068
+  (0.0ms) rollback transaction
5069
+  (0.0ms) begin transaction
5070
+ --------------------------------------------------------------------------
5071
+ WebConsole::SlaveTest: test_#pending_output_always_encodes_output_in_UTF-8
5072
+ --------------------------------------------------------------------------
5073
+  (0.0ms) rollback transaction
5074
+  (0.0ms) begin transaction
5075
+ ---------------------------------------------------------------------------------------------
5076
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_EOFError
5077
+ ---------------------------------------------------------------------------------------------
5078
+  (0.0ms) rollback transaction
5079
+  (0.1ms) begin transaction
5080
+ -----------------------------------------------------------------------------------------------
5081
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_Errno::EIO
5082
+ -----------------------------------------------------------------------------------------------
5083
+  (0.0ms) rollback transaction
5084
+  (0.0ms) begin transaction
5085
+ ------------------------------------------------------------------------------------
5086
+ WebConsole::SlaveTest: test_#pending_output_returns_a_string_with_the_current_output
5087
+ ------------------------------------------------------------------------------------
5088
+  (0.0ms) rollback transaction
5089
+  (0.0ms) begin transaction
5090
+ ----------------------------------------------------------------------------
5091
+ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
5092
+ ----------------------------------------------------------------------------
5093
+  (0.0ms) rollback transaction
5094
+  (0.0ms) begin transaction
5095
+ -------------------------------------------------------------------------
5096
+ WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
5097
+ -------------------------------------------------------------------------
5098
+  (0.0ms) rollback transaction
5099
+  (0.2ms) begin transaction
5100
+ --------------------------------------------------------------------------------------------------------
5101
+ ActionDispatch::ExceptionWrapperTest: test_#extract_sources_fetches_source_fragments_for_every_backtrace
5102
+ --------------------------------------------------------------------------------------------------------
5103
+  (0.0ms) rollback transaction
5104
+  (0.0ms) begin transaction
5105
+ -----------------------------------------------------------------------------------------
5106
+ ExceptionExtensionTest: test_should_store_binding_trace_if_binding_of_caller_is_available
5107
+ -----------------------------------------------------------------------------------------
5108
+  (0.0ms) rollback transaction
5109
+  (0.0ms) begin transaction
5110
+ ---------------------------------------------------
5111
+ REPLTest: test_preserves_the_session_in_the_binding
5112
+ ---------------------------------------------------
5113
+  (0.0ms) rollback transaction
5114
+  (0.0ms) begin transaction
5115
+ --------------------------------
5116
+ REPLTest: test_prompt_is_present
5117
+ --------------------------------
5118
+  (0.0ms) rollback transaction
5119
+  (0.0ms) begin transaction
5120
+ ---------------------------------------------------------
5121
+ REPLTest: test_sending_input_returns_the_result_as_output
5122
+ ---------------------------------------------------------
5123
+  (0.0ms) rollback transaction
5124
+  (0.0ms) begin transaction
5125
+ ----------------------------------------------------------
5126
+ REPLTest: test_session_preservation_requires_same_bindings
5127
+ ----------------------------------------------------------
5128
+  (0.0ms) rollback transaction
5129
+  (0.0ms) begin transaction
5130
+ --------------------------------------------------------------------
5131
+ WebConsole::ColorsTest: test_#background=_is_an_alias_of_#background
5132
+ --------------------------------------------------------------------
5133
+  (0.0ms) rollback transaction
5134
+  (0.0ms) begin transaction
5135
+ --------------------------------------------------------------------
5136
+ WebConsole::ColorsTest: test_#background_can_be_explicitly_specified
5137
+ --------------------------------------------------------------------
5138
+  (0.0ms) rollback transaction
5139
+  (0.0ms) begin transaction
5140
+ ----------------------------------------------------------------------------
5141
+ WebConsole::ColorsTest: test_#background_is_the_first_color_if_not_specified
5142
+ ----------------------------------------------------------------------------
5143
+  (0.0ms) rollback transaction
5144
+  (0.0ms) begin transaction
5145
+ -----------------------------------------------
5146
+ WebConsole::ColorsTest: test_#default_is_:light
5147
+ -----------------------------------------------
5148
+  (0.0ms) rollback transaction
5149
+  (0.0ms) begin transaction
5150
+ --------------------------------------------------------------------
5151
+ WebConsole::ColorsTest: test_#foreground=_is_an_alias_of_#foreground
5152
+ --------------------------------------------------------------------
5153
+  (0.0ms) rollback transaction
5154
+  (0.0ms) begin transaction
5155
+ --------------------------------------------------------------------
5156
+ WebConsole::ColorsTest: test_#foreground_can_be_explicitly_specified
5157
+ --------------------------------------------------------------------
5158
+  (0.0ms) rollback transaction
5159
+  (0.0ms) begin transaction
5160
+ ---------------------------------------------------------------------------
5161
+ WebConsole::ColorsTest: test_#foreground_is_the_last_color_if_not_specified
5162
+ ---------------------------------------------------------------------------
5163
+  (0.0ms) rollback transaction
5164
+  (0.0ms) begin transaction
5165
+ --------------------------------------------------------------------------------
5166
+ WebConsole::ColorsTest: test_#to_json_includes_the_background_and_the_foreground
5167
+ --------------------------------------------------------------------------------
5168
+  (0.0ms) rollback transaction
5169
+  (0.0ms) begin transaction
5170
+ -----------------------------------------------------------
5171
+ WebConsole::ColorsTest: test_.[]_is_an_alias_for_.themes#[]
5172
+ -----------------------------------------------------------
5173
+  (0.0ms) rollback transaction
5174
+  (0.1ms) begin transaction
5175
+ ----------------------------------------------------------------------------------
5176
+ WebConsole::ColorsTest: test_.register_theme_creates_Colors_instance_for_the_block
5177
+ ----------------------------------------------------------------------------------
5178
+  (0.1ms) rollback transaction
5179
+  (0.0ms) begin transaction
5180
+ --------------------------------------------------------------------------------------
5181
+ WebConsole::ConsoleSessionTest: test_can_be_used_as_slave_as_the_methods_are_delegated
5182
+ --------------------------------------------------------------------------------------
5183
+  (0.0ms) rollback transaction
5184
+  (0.0ms) begin transaction
5185
+ --------------------------------------------------------------------------
5186
+ WebConsole::ConsoleSessionTest: test_create_gives_already_persisted_models
5187
+ --------------------------------------------------------------------------
5188
+  (0.0ms) rollback transaction
5189
+  (0.0ms) begin transaction
5190
+ ------------------------------------------------
5191
+ WebConsole::ConsoleSessionTest: test_errors_aref
5192
+ ------------------------------------------------
5193
+  (0.0ms) rollback transaction
5194
+  (0.0ms) begin transaction
5195
+ -----------------------------------------------------
5196
+ WebConsole::ConsoleSessionTest: test_find_coerces_ids
5197
+ -----------------------------------------------------
5198
+  (0.0ms) rollback transaction
5199
+  (0.0ms) begin transaction
5200
+ -------------------------------------------------
5201
+ WebConsole::ConsoleSessionTest: test_model_naming
5202
+ -------------------------------------------------
5203
+  (0.0ms) rollback transaction
5204
+  (0.0ms) begin transaction
5205
+ ------------------------------------------------------------------
5206
+ WebConsole::ConsoleSessionTest: test_no_gives_not_persisted_models
5207
+ ------------------------------------------------------------------
5208
+  (0.1ms) rollback transaction
5209
+  (0.0ms) begin transaction
5210
+ -------------------------------------------------------------------------------
5211
+ WebConsole::ConsoleSessionTest: test_not_found_exceptions_are_JSON_serializable
5212
+ -------------------------------------------------------------------------------
5213
+  (0.0ms) rollback transaction
5214
+  (0.0ms) begin transaction
5215
+ -----------------------------------------------
5216
+ WebConsole::ConsoleSessionTest: test_persisted?
5217
+ -----------------------------------------------
5218
+  (0.0ms) rollback transaction
5219
+  (0.1ms) begin transaction
5220
+ ----------------------------------------------------------------------------
5221
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_about_their_keys
5222
+ ----------------------------------------------------------------------------
5223
+  (0.0ms) rollback transaction
5224
+  (0.0ms) begin transaction
5225
+ -----------------------------------------------------------------------------------
5226
+ WebConsole::ConsoleSessionTest: test_persisted_models_knows_that_they_are_in_memory
5227
+ -----------------------------------------------------------------------------------
5228
+  (0.0ms) rollback transaction
5229
+  (0.0ms) begin transaction
5230
+ ---------------------------------------------------------------------------------------------
5231
+ WebConsole::ConsoleSessionTest: test_raises_ConsoleSession::Unavailable_on_not_found_sessions
5232
+ ---------------------------------------------------------------------------------------------
5233
+  (0.0ms) rollback transaction
5234
+  (0.0ms) begin transaction
5235
+ ------------------------------------------------------------------------------
5236
+ WebConsole::ConsoleSessionTest: test_slave_methods_are_cached_on_the_singleton
5237
+ ------------------------------------------------------------------------------
5238
+  (0.0ms) rollback transaction
5239
+  (0.0ms) begin transaction
5240
+ -------------------------------------------
5241
+ WebConsole::ConsoleSessionTest: test_to_key
5242
+ -------------------------------------------
5243
+  (0.0ms) rollback transaction
5244
+  (0.0ms) begin transaction
5245
+ ---------------------------------------------
5246
+ WebConsole::ConsoleSessionTest: test_to_param
5247
+ ---------------------------------------------
5248
+  (0.0ms) rollback transaction
5249
+  (0.0ms) begin transaction
5250
+ ----------------------------------------------------
5251
+ WebConsole::ConsoleSessionTest: test_to_partial_path
5252
+ ----------------------------------------------------
5253
+  (0.0ms) rollback transaction
5254
+  (0.0ms) begin transaction
5255
+ -------------------------------------------------------------------------------------
5256
+ WebConsole::ConsoleSessionsControllerTest: test_GET_index_creates_new_console_session
5257
+ -------------------------------------------------------------------------------------
5258
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
5259
+ Completed 200 OK in 39ms (Views: 38.5ms | ActiveRecord: 0.0ms)
5260
+  (0.1ms) rollback transaction
5261
+  (0.0ms) begin transaction
5262
+ -------------------------------------------------------------------------------------------------
5263
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_gives_the_slave_pending_output
5264
+ -------------------------------------------------------------------------------------------------
5265
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
5266
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
5267
+ Processing by WebConsole::ConsoleSessionsController#pending_output as HTML
5268
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5269
+  (0.0ms) rollback transaction
5270
+  (0.1ms) begin transaction
5271
+ --------------------------------------------------------------------------------------------------------
5272
+ WebConsole::ConsoleSessionsControllerTest: test_GET_pending_output_raises_410_on_exitted_slave_processes
5273
+ --------------------------------------------------------------------------------------------------------
5274
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
5275
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
5276
+ Processing by WebConsole::ConsoleSessionsController#pending_output as HTML
5277
+ Completed 410 Gone in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5278
+  (0.1ms) rollback transaction
5279
+  (0.1ms) begin transaction
5280
+ ------------------------------------------------------------------------------------------
5281
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_configuration_adjust_the_terminal_size
5282
+ ------------------------------------------------------------------------------------------
5283
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
5284
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
5285
+ Processing by WebConsole::ConsoleSessionsController#configuration as HTML
5286
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
5287
+  (0.0ms) rollback transaction
5288
+  (0.1ms) begin transaction
5289
+ ----------------------------------------------------------------------------------
5290
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_sends_input_to_the_slave
5291
+ ----------------------------------------------------------------------------------
5292
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
5293
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
5294
+ Processing by WebConsole::ConsoleSessionsController#input as HTML
5295
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5296
+  (0.1ms) rollback transaction
5297
+  (0.1ms) begin transaction
5298
+ -------------------------------------------------------------------------------------
5299
+ WebConsole::ConsoleSessionsControllerTest: test_PUT_input_validates_for_missing_input
5300
+ -------------------------------------------------------------------------------------
5301
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
5302
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
5303
+ Processing by WebConsole::ConsoleSessionsController#input as HTML
5304
+ Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5305
+  (0.0ms) rollback transaction
5306
+  (0.0ms) begin transaction
5307
+ ------------------------------------------------------------------------------------
5308
+ WebConsole::ConsoleSessionsControllerTest: test_allows_requests_from_whitelisted_ips
5309
+ ------------------------------------------------------------------------------------
5310
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
5311
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
5312
+  (0.1ms) rollback transaction
5313
+  (0.0ms) begin transaction
5314
+ ----------------------------------------------------------------------------------------
5315
+ WebConsole::ConsoleSessionsControllerTest: test_blocks_requests_from_non-whitelisted_ips
5316
+ ----------------------------------------------------------------------------------------
5317
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
5318
+ Filter chain halted as :prevent_unauthorized_requests! rendered or redirected
5319
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5320
+  (0.0ms) rollback transaction
5321
+  (0.0ms) begin transaction
5322
+ --------------------------------------------------------------------
5323
+ WebConsole::ConsoleSessionsControllerTest: test_index_generated_path
5324
+ --------------------------------------------------------------------
5325
+  (0.0ms) rollback transaction
5326
+  (0.0ms) begin transaction
5327
+ -------------------------------------------------------------------
5328
+ WebConsole::ConsoleSessionsControllerTest: test_index_is_successful
5329
+ -------------------------------------------------------------------
5330
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
5331
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
5332
+  (0.0ms) rollback transaction
5333
+  (0.1ms) begin transaction
5334
+ -----------------------------------------------------------------------------
5335
+ WebConsole::EngineTest: test_blank_commands_are_expanded_to_the_rails_console
5336
+ -----------------------------------------------------------------------------
5337
+  (0.1ms) begin transaction
5338
+ ------------------------------------------------------
5339
+ WebConsole::EngineTest: test_custom_default_mount_path
5340
+ ------------------------------------------------------
5341
+  (0.1ms) begin transaction
5342
+ ---------------------------------------------------
5343
+ WebConsole::EngineTest: test_disabling_automounting
5344
+ ---------------------------------------------------
5345
+  (0.2ms) begin transaction
5346
+ ---------------------------------------------------------------
5347
+ WebConsole::EngineTest: test_present_commands_are_not_processed
5348
+ ---------------------------------------------------------------
5349
+  (0.1ms) begin transaction
5350
+ --------------------------------------------------------
5351
+ WebConsole::EngineTest: test_whitelist_multiple_networks
5352
+ --------------------------------------------------------
5353
+  (0.1ms) begin transaction
5354
+ -----------------------------------------------------
5355
+ WebConsole::EngineTest: test_whitelist_whole_networks
5356
+ -----------------------------------------------------
5357
+  (0.1ms) begin transaction
5358
+ -----------------------------------------------------------------------
5359
+ WebConsole::EngineTest: test_whitelisted_ips.include?_coerces_to_IPAddr
5360
+ -----------------------------------------------------------------------
5361
+  (0.1ms) begin transaction
5362
+ -----------------------------------------------------------------------
5363
+ WebConsole::EngineTest: test_whitelisted_ips.include?_works_with_IPAddr
5364
+ -----------------------------------------------------------------------
5365
+  (0.2ms) begin transaction
5366
+ ------------------------------------------------------------------
5367
+ WebConsole::EngineTest: test_whitelisted_ips_are_courced_to_IPAddr
5368
+ ------------------------------------------------------------------
5369
+  (0.1ms) begin transaction
5370
+ -----------------------------------------------------------------------------
5371
+ WebConsole::EngineTest: test_whitelisted_ips_are_normalized_and_unique_IPAddr
5372
+ -----------------------------------------------------------------------------
5373
+  (0.1ms) begin transaction
5374
+ -----------------------------------------------------------------------
5375
+ WebConsole::REPLSessionTest: test_create_gives_already_persisted_models
5376
+ -----------------------------------------------------------------------
5377
+  (0.0ms) rollback transaction
5378
+  (0.0ms) begin transaction
5379
+ --------------------------------------------------
5380
+ WebConsole::REPLSessionTest: test_find_coerces_ids
5381
+ --------------------------------------------------
5382
+  (0.1ms) rollback transaction
5383
+  (0.0ms) begin transaction
5384
+ ---------------------------------------------------------------
5385
+ WebConsole::REPLSessionTest: test_no_gives_not_persisted_models
5386
+ ---------------------------------------------------------------
5387
+  (0.0ms) rollback transaction
5388
+  (0.0ms) begin transaction
5389
+ ----------------------------------------------------------------------------
5390
+ WebConsole::REPLSessionTest: test_not_found_exceptions_are_JSON_serializable
5391
+ ----------------------------------------------------------------------------
5392
+  (0.0ms) rollback transaction
5393
+  (0.1ms) begin transaction
5394
+ ------------------------------------------------------------------------------------------------
5395
+ WebConsole::REPLSessionTest: test_raises_WebConsole::REPLSession::NotFound_on_not_found_sessions
5396
+ ------------------------------------------------------------------------------------------------
5397
+  (0.0ms) rollback transaction
5398
+  (0.0ms) begin transaction
5399
+ ----------------------------------------------------------------
5400
+ WebConsole::SlaveTest: test_#configure_changes_@input_dimentions
5401
+ ----------------------------------------------------------------
5402
+  (0.0ms) rollback transaction
5403
+  (0.0ms) begin transaction
5404
+ -------------------------------------------------------------------------------------------
5405
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_height_is_zero
5406
+ -------------------------------------------------------------------------------------------
5407
+  (0.0ms) rollback transaction
5408
+  (0.1ms) begin transaction
5409
+ ------------------------------------------------------------------------------------------
5410
+ WebConsole::SlaveTest: test_#configure_only_changes_the_@input_dimentions_if_width_is_zero
5411
+ ------------------------------------------------------------------------------------------
5412
+  (0.1ms) rollback transaction
5413
+  (0.0ms) begin transaction
5414
+ ---------------------------------------------------------------------------
5415
+ WebConsole::SlaveTest: test_#dispose!_can_reraise_Errno::ESRCH_if_requested
5416
+ ---------------------------------------------------------------------------
5417
+  (0.0ms) rollback transaction
5418
+  (0.1ms) begin transaction
5419
+ ----------------------------------------------------------------------------------
5420
+ WebConsole::SlaveTest: test_#dispose!_sends_SIGKILL_to_the_process_and_detaches_it
5421
+ ----------------------------------------------------------------------------------
5422
+  (0.0ms) rollback transaction
5423
+  (0.0ms) begin transaction
5424
+ --------------------------------------------------------------------------
5425
+ WebConsole::SlaveTest: test_#dispose_can_reraise_Errno::ESRCH_if_requested
5426
+ --------------------------------------------------------------------------
5427
+  (0.1ms) rollback transaction
5428
+  (0.0ms) begin transaction
5429
+ ---------------------------------------------------------------------------------
5430
+ WebConsole::SlaveTest: test_#dispose_sends_SIGTERM_to_the_process_and_detaches_it
5431
+ ---------------------------------------------------------------------------------
5432
+  (0.0ms) rollback transaction
5433
+  (0.1ms) begin transaction
5434
+ --------------------------------------------------------------------------
5435
+ WebConsole::SlaveTest: test_#pending_output_always_encodes_output_in_UTF-8
5436
+ --------------------------------------------------------------------------
5437
+  (0.0ms) rollback transaction
5438
+  (0.0ms) begin transaction
5439
+ ---------------------------------------------------------------------------------------------
5440
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_EOFError
5441
+ ---------------------------------------------------------------------------------------------
5442
+  (0.0ms) rollback transaction
5443
+  (0.0ms) begin transaction
5444
+ -----------------------------------------------------------------------------------------------
5445
+ WebConsole::SlaveTest: test_#pending_output_raises_Slave::Closed_when_the_end_raises_Errno::EIO
5446
+ -----------------------------------------------------------------------------------------------
5447
+  (0.1ms) rollback transaction
5448
+  (0.0ms) begin transaction
5449
+ ------------------------------------------------------------------------------------
5450
+ WebConsole::SlaveTest: test_#pending_output_returns_a_string_with_the_current_output
5451
+ ------------------------------------------------------------------------------------
5452
+  (0.0ms) rollback transaction
5453
+  (0.1ms) begin transaction
5454
+ ----------------------------------------------------------------------------
5455
+ WebConsole::SlaveTest: test_#pending_output_returns_nil_on_no_pending_output
5456
+ ----------------------------------------------------------------------------
5457
+  (0.0ms) rollback transaction
5458
+  (0.0ms) begin transaction
5459
+ -------------------------------------------------------------------------
5460
+ WebConsole::SlaveTest: test_#send_input_raises_ArgumentError_on_bad_input
1544
5461
  -------------------------------------------------------------------------
1545
5462
   (0.0ms) rollback transaction