houston-core 0.7.0.beta3 → 0.7.0.beta4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (157) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +56 -56
  3. data/app/assets/javascripts/houston/app/infinite_scroll.coffee +6 -2
  4. data/app/assets/javascripts/houston/app/models/ticket.coffee +0 -42
  5. data/app/assets/javascripts/houston/app/ticket_tracker_refresh.coffee +0 -2
  6. data/app/assets/javascripts/houston/app/views/keyboard_shortcuts_modal.coffee +0 -6
  7. data/app/assets/javascripts/houston/core/handlebars_helpers.coffee +0 -5
  8. data/app/assets/stylesheets/houston/application/actions.scss +15 -0
  9. data/app/assets/stylesheets/houston/application/layout.scss +3 -0
  10. data/app/assets/stylesheets/houston/application/markdown.scss +1 -1
  11. data/app/assets/stylesheets/houston/application/navigation.scss +3 -1
  12. data/app/assets/stylesheets/houston/application/project_banner_buttons.scss +2 -0
  13. data/app/assets/stylesheets/houston/application/tables.scss +0 -1
  14. data/app/assets/stylesheets/houston/application/timeline.scss +1 -1
  15. data/app/assets/stylesheets/houston/core/overrides.scss +2 -1
  16. data/app/concerns/houston/props.rb +11 -4
  17. data/app/concerns/project_adapter.rb +1 -1
  18. data/app/concerns/unique_add.rb +1 -1
  19. data/app/controllers/actions_controller.rb +39 -0
  20. data/app/controllers/commits_controller.rb +1 -1
  21. data/app/controllers/errors_controller.rb +10 -0
  22. data/app/controllers/hooks_controller.rb +1 -1
  23. data/app/controllers/omnibar_controller.rb +1 -11
  24. data/app/controllers/project_hooks_controller.rb +2 -2
  25. data/app/controllers/projects_controller.rb +2 -0
  26. data/app/controllers/test_runs_controller.rb +14 -3
  27. data/app/controllers/triggers_controller.rb +8 -0
  28. data/app/helpers/actions_helper.rb +7 -0
  29. data/app/helpers/application_helper.rb +1 -1
  30. data/app/interactors/cache_key_dependencies.rb +1 -1
  31. data/app/interactors/test_run_comparer.rb +1 -1
  32. data/app/mailers/project_notification.rb +0 -31
  33. data/app/models/ability.rb +0 -11
  34. data/app/models/{job.rb → action.rb} +19 -7
  35. data/app/models/commit.rb +2 -2
  36. data/app/models/deploy.rb +3 -3
  37. data/app/models/github/comment_event.rb +9 -3
  38. data/app/models/github/post_receive_event.rb +1 -1
  39. data/app/models/github/pull_request.rb +5 -5
  40. data/app/models/persistent_trigger.rb +46 -0
  41. data/app/models/project.rb +0 -1
  42. data/app/models/release.rb +1 -1
  43. data/app/models/run_tests_on_post_receive.rb +17 -17
  44. data/app/models/task.rb +4 -4
  45. data/app/models/test_run.rb +18 -5
  46. data/app/models/ticket.rb +2 -21
  47. data/app/models/ticket_antecedent.rb +3 -3
  48. data/app/models/user.rb +0 -1
  49. data/app/views/actions/index.html.erb +69 -0
  50. data/app/views/actions/show.html.erb +45 -0
  51. data/app/views/commits/show.html.erb +7 -8
  52. data/app/views/errors/_actions.html.erb +11 -0
  53. data/app/views/errors/index.html.erb +39 -0
  54. data/app/views/layouts/_mobile_navigation.html.erb +1 -9
  55. data/app/views/layouts/_navigation.html.erb +14 -8
  56. data/app/views/layouts/application.html.erb +1 -3
  57. data/app/views/project_notification/test_run.html.erb +13 -3
  58. data/app/views/projects/_form.html.erb +13 -7
  59. data/app/views/triggers/index.html.erb +39 -0
  60. data/config/initializers/add_navigation_renderers.rb +0 -6
  61. data/config/initializers/houston_async.rb +4 -2
  62. data/config/initializers/houston_scheduler_daemon.rb +6 -0
  63. data/config/initializers/load_persistent_triggers.rb +7 -0
  64. data/config/initializers/requirements.rb +2 -1
  65. data/config/initializers/sync_commits_on_post_receive.rb +2 -2
  66. data/config/routes.rb +17 -15
  67. data/db/migrate/20160711170921_rename_jobs_to_actions.rb +5 -0
  68. data/db/migrate/20160713204605_add_trigger_and_params_to_actions.rb +6 -0
  69. data/db/migrate/20160715173039_create_persistent_triggers.rb +10 -0
  70. data/db/structure.sql +197 -221
  71. data/houston-core.gemspec +1 -1
  72. data/lib/houston/boot/actions.rb +105 -0
  73. data/lib/houston/boot/active_record_serializer.rb +24 -0
  74. data/lib/houston/boot/configuration.rb +118 -49
  75. data/lib/houston/boot/events.rb +46 -0
  76. data/lib/houston/boot/extensions.rb +118 -14
  77. data/lib/houston/boot/observer.rb +122 -24
  78. data/lib/houston/boot/readonly_hash_serializer.rb +15 -0
  79. data/lib/houston/boot/serializer.rb +83 -0
  80. data/lib/houston/boot/ticket_antecedent_serializer.rb +21 -0
  81. data/lib/houston/boot/timer.rb +45 -0
  82. data/lib/houston/boot/triggers.rb +75 -0
  83. data/lib/houston/boot.rb +5 -0
  84. data/lib/houston/version.rb +1 -1
  85. data/lib/params_serializer.rb +18 -0
  86. data/lib/tasks/actions.rake +12 -0
  87. data/lib/tasks/events.rake +11 -0
  88. data/templates/new-instance/config/abilities.rb +0 -8
  89. data/templates/new-instance/config/{triggers → events}/alerts/slack_when_assigned.rb +1 -1
  90. data/templates/new-instance/config/{triggers → events}/alerts/slack_when_opened.rb +1 -1
  91. data/templates/new-instance/config/{triggers → events}/daemons/health.rb +6 -6
  92. data/templates/new-instance/config/{triggers → events}/deploy/autoresolve_errs.rb +1 -1
  93. data/templates/new-instance/config/{triggers → events}/deploy/checkout_mentioned_alerts.rb +1 -1
  94. data/templates/new-instance/config/{triggers → events}/deploy/notify_deployer_when_finished.rb +2 -2
  95. data/templates/new-instance/config/{triggers → events}/github/publish_comments_on_slack.rb +9 -9
  96. data/templates/new-instance/config/{triggers → events}/tests/slack_when_analyzed.rb +1 -1
  97. data/templates/new-instance/config/{triggers → events}/tests/slack_when_completed.rb +1 -1
  98. data/templates/new-instance/config/{triggers → events}/tickets/mark_tasks_completed_on_commit.rb +1 -1
  99. data/templates/new-instance/config/main.rb +8 -35
  100. data/templates/new-instance/config/{jobs → timers}/cache_key_dependencies.rb +0 -0
  101. data/templates/new-instance/config/{jobs → timers}/email_about_open_alerts.rb +0 -0
  102. data/templates/new-instance/config/{jobs → timers}/purge_jobs.rb +0 -0
  103. data/templates/new-instance/config/{jobs → timers}/slack_reminders_about_alerts.rb +0 -0
  104. data/templates/new-instance/config/{jobs → timers}/sync_commits.rb +0 -0
  105. data/templates/new-instance/config/{jobs → timers}/sync_pull_requests.rb +0 -0
  106. data/templates/new-instance/config/{jobs → timers}/sync_tickets.rb +0 -0
  107. data/templates/new-module/lib/houston/%name%.rb +13 -0
  108. data/test/integration/ci_integration_test.rb +5 -5
  109. data/test/integration/web_hook_test.rb +1 -1
  110. data/test/test_helper.rb +14 -0
  111. data/test/unit/controllers/hooks_controller_test.rb +2 -2
  112. data/test/unit/initializers/sync_commits_on_post_receive_test.rb +1 -1
  113. data/test/unit/models/actions_test.rb +107 -0
  114. data/test/unit/models/configuration_test.rb +108 -0
  115. data/test/unit/models/observer_test.rb +87 -3
  116. data/test/unit/models/persistent_trigger_test.rb +94 -0
  117. data/test/unit/models/serializer_test.rb +80 -0
  118. data/test/unit/models/triggers_test.rb +53 -0
  119. metadata +60 -60
  120. data/app/assets/javascripts/houston/app/models/testing_note.coffee +0 -18
  121. data/app/assets/javascripts/houston/app/views/commit_view.coffee +0 -13
  122. data/app/assets/javascripts/houston/app/views/testing_note_view.coffee +0 -85
  123. data/app/assets/javascripts/houston/app/views/testing_report_view.coffee +0 -29
  124. data/app/assets/javascripts/houston/app/views/testing_ticket_view.coffee +0 -203
  125. data/app/assets/stylesheets/houston/application/jobs.scss +0 -5
  126. data/app/assets/stylesheets/houston/application/testing_report.scss +0 -279
  127. data/app/assets/templates/commit.hbs +0 -9
  128. data/app/assets/templates/testing_notes/edit.hbs +0 -20
  129. data/app/assets/templates/testing_notes/new.hbs +0 -27
  130. data/app/assets/templates/testing_notes/show.hbs +0 -11
  131. data/app/assets/templates/testing_report/description.hbs +0 -12
  132. data/app/assets/templates/testing_report/ticket.hbs +0 -21
  133. data/app/assets/templates/testing_report/verdict.hbs +0 -4
  134. data/app/controllers/jobs_controller.rb +0 -42
  135. data/app/controllers/testing_notes_controller.rb +0 -50
  136. data/app/controllers/testing_report_controller.rb +0 -38
  137. data/app/models/testing_note.rb +0 -64
  138. data/app/presenters/testing_note_presenter.rb +0 -27
  139. data/app/presenters/testing_report_ticket_presenter.rb +0 -71
  140. data/app/views/jobs/index.html.erb +0 -72
  141. data/app/views/jobs/show.html.erb +0 -41
  142. data/app/views/project_notification/testing_note.html.erb +0 -9
  143. data/app/views/testing_report/_scripts.html.erb +0 -12
  144. data/app/views/testing_report/index.html.erb +0 -31
  145. data/app/views/testing_report/show.html.erb +0 -29
  146. data/config/initializers/houston_scheduler.rb +0 -23
  147. data/db/migrate/20120424212706_create_testing_notes.rb +0 -14
  148. data/db/migrate/20120501231817_add_expires_at_to_testing_notes.rb +0 -5
  149. data/db/migrate/20120501231948_add_unfuddle_id_to_testing_notes.rb +0 -5
  150. data/db/migrate/20120715230526_change_testing_notes_comment_to_text.rb +0 -9
  151. data/db/migrate/20130211015046_add_min_passing_verdicts_to_projects.rb +0 -5
  152. data/db/migrate/20130407220039_add_project_id_to_testing_notes.rb +0 -26
  153. data/db/migrate/20140511024021_rename_testing_notes_unfuddle_id_to_remote_id.rb +0 -5
  154. data/templates/new-instance/config/triggers/tickets/email_testing_notes.rb +0 -7
  155. data/templates/new-instance/log/development.log +0 -41253
  156. data/templates/new-instance/log/test.log +0 -545
  157. data/templates/new-module/config/initializers/add_navigation_renderer.rb +0 -3
@@ -1,545 +0,0 @@
1
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
2
- [daemon:slack] Skipping daemon since we're not running as a server
3
- [daemon:scheduler] Skipping daemon since we're not running as a server
4
- Setting up observers for RunTestsOnPostReceive
5
- ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
6
-  (0.3ms) BEGIN
7
- -----------------------------------
8
- TestTest: test_the_test_suite_works
9
- -----------------------------------
10
-  (0.3ms) ROLLBACK
11
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
12
- [daemon:slack] Skipping daemon since we're not running as a server
13
- [daemon:scheduler] Skipping daemon since we're not running as a server
14
- Setting up observers for RunTestsOnPostReceive
15
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
-  (0.3ms) BEGIN
17
- -----------------------------------
18
- TestTest: test_the_test_suite_works
19
- -----------------------------------
20
-  (0.2ms) ROLLBACK
21
-  (0.3ms) BEGIN
22
- ------------------------------------------------------------------------------------------------------------------
23
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
24
- ------------------------------------------------------------------------------------------------------------------
25
-  (0.2ms) ROLLBACK
26
-  (0.3ms) BEGIN
27
- ---------------------------------------------------------------------------------------------------------------------------------
28
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
29
- ---------------------------------------------------------------------------------------------------------------------------------
30
-  (0.2ms) ROLLBACK
31
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
32
- [daemon:slack] Skipping daemon since we're not running as a server
33
- [daemon:scheduler] Skipping daemon since we're not running as a server
34
- Setting up observers for RunTestsOnPostReceive
35
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
36
-  (0.3ms) BEGIN
37
- ------------------------------------------------------------------------------------------------------------------
38
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
39
- ------------------------------------------------------------------------------------------------------------------
40
-  (0.2ms) ROLLBACK
41
-  (0.1ms) BEGIN
42
- ---------------------------------------------------------------------------------------------------------------------------------
43
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
44
- ---------------------------------------------------------------------------------------------------------------------------------
45
-  (0.2ms) ROLLBACK
46
-  (0.2ms) BEGIN
47
- -----------------------------------
48
- TestTest: test_the_test_suite_works
49
- -----------------------------------
50
-  (0.1ms) ROLLBACK
51
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
52
- [daemon:slack] Skipping daemon since we're not running as a server
53
- [daemon:scheduler] Skipping daemon since we're not running as a server
54
- Setting up observers for RunTestsOnPostReceive
55
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
56
-  (0.2ms) BEGIN
57
- -----------------------------------
58
- TestTest: test_the_test_suite_works
59
- -----------------------------------
60
-  (0.2ms) ROLLBACK
61
-  (0.2ms) BEGIN
62
- ------------------------------------------------------------------------------------------------------------------
63
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
64
- ------------------------------------------------------------------------------------------------------------------
65
-  (0.2ms) ROLLBACK
66
-  (0.1ms) BEGIN
67
- ---------------------------------------------------------------------------------------------------------------------------------
68
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
69
- ---------------------------------------------------------------------------------------------------------------------------------
70
-  (0.2ms) ROLLBACK
71
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
72
- [daemon:slack] Skipping daemon since we're not running as a server
73
- [daemon:scheduler] Skipping daemon since we're not running as a server
74
- Setting up observers for RunTestsOnPostReceive
75
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
76
-  (0.3ms) BEGIN
77
- ------------------------------------------------------------------------------------------------------------------
78
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
79
- ------------------------------------------------------------------------------------------------------------------
80
-  (0.2ms) ROLLBACK
81
-  (0.2ms) BEGIN
82
- ---------------------------------------------------------------------------------------------------------------------------------
83
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
84
- ---------------------------------------------------------------------------------------------------------------------------------
85
-  (0.2ms) ROLLBACK
86
-  (0.1ms) BEGIN
87
- -----------------------------------
88
- TestTest: test_the_test_suite_works
89
- -----------------------------------
90
-  (0.1ms) ROLLBACK
91
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
92
- [daemon:slack] Skipping daemon since we're not running as a server
93
- [daemon:scheduler] Skipping daemon since we're not running as a server
94
- Setting up observers for RunTestsOnPostReceive
95
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
96
-  (0.3ms) BEGIN
97
- -----------------------------------
98
- TestTest: test_the_test_suite_works
99
- -----------------------------------
100
-  (0.2ms) ROLLBACK
101
-  (0.2ms) BEGIN
102
- ------------------------------------------------------------------------------------------------------------------
103
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
104
- ------------------------------------------------------------------------------------------------------------------
105
-  (0.7ms) SELECT COUNT(*) FROM "projects"
106
-  (0.5ms) SAVEPOINT active_record_1
107
- SQL (1.3ms) INSERT INTO "projects" ("created_at", "name", "updated_at") VALUES ('2015-09-27 20:44:53.463292', 'Test', '2015-09-27 20:44:53.463292') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:44:53 CDT -05:00], ["name", "Test"], ["updated_at", Sun, 27 Sep 2015 15:44:53 CDT -05:00]]
108
-  (0.3ms) RELEASE SAVEPOINT active_record_1
109
-  (0.4ms) ROLLBACK
110
-  (0.1ms) BEGIN
111
- ---------------------------------------------------------------------------------------------------------------------------------
112
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
113
- ---------------------------------------------------------------------------------------------------------------------------------
114
-  (0.2ms) ROLLBACK
115
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
116
- [daemon:slack] Skipping daemon since we're not running as a server
117
- [daemon:scheduler] Skipping daemon since we're not running as a server
118
- Setting up observers for RunTestsOnPostReceive
119
- ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
120
-  (0.2ms) BEGIN
121
- -----------------------------------
122
- TestTest: test_the_test_suite_works
123
- -----------------------------------
124
-  (0.1ms) ROLLBACK
125
-  (0.1ms) BEGIN
126
- ------------------------------------------------------------------------------------------------------------------
127
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
128
- ------------------------------------------------------------------------------------------------------------------
129
-  (0.4ms) SAVEPOINT active_record_1
130
- SQL (1.3ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:45:19.283780', 'Test', 'test', '2015-09-27 20:45:19.283780') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:45:19 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:45:19 CDT -05:00]]
131
-  (0.3ms) RELEASE SAVEPOINT active_record_1
132
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 15:45:20 -0500
133
- Processing by ProjectHooksController#trigger as HTML
134
- Parameters: {"project_id"=>"test", "hook"=>"something"}
135
- Project Load (1.8ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
136
- Completed 200 OK in 31ms (ActiveRecord: 1.8ms)
137
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 15:45:22 -0500
138
- Processing by ProjectHooksController#trigger as HTML
139
- Parameters: {"project_id"=>"test", "hook"=>"something"}
140
- Project Load (0.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
141
- Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.7ms)
142
-  (0.5ms) ROLLBACK
143
-  (0.2ms) BEGIN
144
- ---------------------------------------------------------------------------------------------------------------------------------
145
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
146
- ---------------------------------------------------------------------------------------------------------------------------------
147
-  (0.3ms) SAVEPOINT active_record_1
148
- SQL (0.7ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:45:22.679968', 'Test', 'test', '2015-09-27 20:45:22.679968') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:45:22 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:45:22 CDT -05:00]]
149
-  (0.3ms) RELEASE SAVEPOINT active_record_1
150
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 15:45:22 -0500
151
- Processing by ProjectHooksController#trigger as HTML
152
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
153
- Project Load (0.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
154
- Completed 404 Not Found in 12ms (Views: 9.4ms | ActiveRecord: 0.7ms)
155
-  (0.3ms) ROLLBACK
156
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
157
- [daemon:slack] Skipping daemon since we're not running as a server
158
- [daemon:scheduler] Skipping daemon since we're not running as a server
159
- Setting up observers for RunTestsOnPostReceive
160
- ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
161
-  (0.3ms) BEGIN
162
- ------------------------------------------------------------------------------------------------------------------
163
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
164
- ------------------------------------------------------------------------------------------------------------------
165
-  (0.3ms) SAVEPOINT active_record_1
166
- SQL (1.1ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:45:38.276679', 'Test', 'test', '2015-09-27 20:45:38.276679') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:45:38 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:45:38 CDT -05:00]]
167
-  (0.2ms) RELEASE SAVEPOINT active_record_1
168
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 15:45:38 -0500
169
- Processing by ProjectHooksController#trigger as HTML
170
- Parameters: {"project_id"=>"test", "hook"=>"something"}
171
- Project Load (1.6ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
172
- Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.6ms)
173
-  (0.3ms) ROLLBACK
174
-  (0.1ms) BEGIN
175
- ---------------------------------------------------------------------------------------------------------------------------------
176
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
177
- ---------------------------------------------------------------------------------------------------------------------------------
178
-  (0.2ms) SAVEPOINT active_record_1
179
- SQL (0.5ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:45:38.386074', 'Test', 'test', '2015-09-27 20:45:38.386074') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:45:38 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:45:38 CDT -05:00]]
180
-  (0.2ms) RELEASE SAVEPOINT active_record_1
181
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 15:45:38 -0500
182
- Processing by ProjectHooksController#trigger as HTML
183
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
184
- Project Load (0.6ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
185
- Completed 404 Not Found in 8ms (Views: 6.1ms | ActiveRecord: 0.6ms)
186
-  (0.3ms) ROLLBACK
187
-  (0.1ms) BEGIN
188
- -----------------------------------
189
- TestTest: test_the_test_suite_works
190
- -----------------------------------
191
-  (0.1ms) ROLLBACK
192
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
193
- [daemon:slack] Skipping daemon since we're not running as a server
194
- [daemon:scheduler] Skipping daemon since we're not running as a server
195
- Setting up observers for RunTestsOnPostReceive
196
- ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
197
-  (0.5ms) BEGIN
198
- ------------------------------------------------------------------------------------------------------------------
199
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
200
- ------------------------------------------------------------------------------------------------------------------
201
-  (0.4ms) SAVEPOINT active_record_1
202
- SQL (1.3ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:46:12.764270', 'Test', 'test', '2015-09-27 20:46:12.764270') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:46:12 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:46:12 CDT -05:00]]
203
-  (0.3ms) RELEASE SAVEPOINT active_record_1
204
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 15:46:12 -0500
205
- Processing by ProjectHooksController#trigger as HTML
206
- Parameters: {"project_id"=>"test", "hook"=>"something"}
207
- Project Load (1.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
208
- Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.7ms)
209
-  (0.4ms) ROLLBACK
210
-  (0.2ms) BEGIN
211
- ---------------------------------------------------------------------------------------------------------------------------------
212
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
213
- ---------------------------------------------------------------------------------------------------------------------------------
214
-  (0.2ms) SAVEPOINT active_record_1
215
- SQL (0.6ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:46:12.888358', 'Test', 'test', '2015-09-27 20:46:12.888358') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:46:12 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:46:12 CDT -05:00]]
216
-  (0.2ms) RELEASE SAVEPOINT active_record_1
217
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 15:46:40 -0500
218
- Processing by ProjectHooksController#trigger as HTML
219
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
220
- Project Load (0.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
221
- Completed 404 Not Found in 9ms (Views: 6.4ms | ActiveRecord: 0.7ms)
222
-  (0.5ms) ROLLBACK
223
-  (0.2ms) BEGIN
224
- -----------------------------------
225
- TestTest: test_the_test_suite_works
226
- -----------------------------------
227
-  (0.2ms) ROLLBACK
228
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
229
- [daemon:slack] Skipping daemon since we're not running as a server
230
- [daemon:scheduler] Skipping daemon since we're not running as a server
231
- Setting up observers for RunTestsOnPostReceive
232
- ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
233
-  (0.3ms) BEGIN
234
- -----------------------------------
235
- TestTest: test_the_test_suite_works
236
- -----------------------------------
237
-  (0.2ms) ROLLBACK
238
-  (0.2ms) BEGIN
239
- ------------------------------------------------------------------------------------------------------------------
240
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
241
- ------------------------------------------------------------------------------------------------------------------
242
-  (0.3ms) SAVEPOINT active_record_1
243
- SQL (1.0ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:46:47.286703', 'Test', 'test', '2015-09-27 20:46:47.286703') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:46:47 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:46:47 CDT -05:00]]
244
-  (0.2ms) RELEASE SAVEPOINT active_record_1
245
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 15:46:47 -0500
246
- Processing by ProjectHooksController#trigger as HTML
247
- Parameters: {"project_id"=>"test", "hook"=>"something"}
248
- Project Load (1.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
249
- Completed 500 Internal Server Error in 12ms (ActiveRecord: 1.7ms)
250
-  (0.5ms) ROLLBACK
251
-  (0.2ms) BEGIN
252
- ---------------------------------------------------------------------------------------------------------------------------------
253
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
254
- ---------------------------------------------------------------------------------------------------------------------------------
255
-  (0.2ms) SAVEPOINT active_record_1
256
- SQL (0.5ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:47:17.912757', 'Test', 'test', '2015-09-27 20:47:17.912757') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:47:17 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:47:17 CDT -05:00]]
257
-  (0.2ms) RELEASE SAVEPOINT active_record_1
258
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 15:47:17 -0500
259
- Processing by ProjectHooksController#trigger as HTML
260
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
261
- Project Load (0.6ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
262
- Completed 404 Not Found in 12ms (Views: 8.9ms | ActiveRecord: 0.6ms)
263
-  (0.3ms) ROLLBACK
264
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
265
- [daemon:slack] Skipping daemon since we're not running as a server
266
- [daemon:scheduler] Skipping daemon since we're not running as a server
267
- Setting up observers for RunTestsOnPostReceive
268
- ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
269
-  (0.3ms) BEGIN
270
- ------------------------------------------------------------------------------------------------------------------
271
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
272
- ------------------------------------------------------------------------------------------------------------------
273
-  (0.3ms) SAVEPOINT active_record_1
274
- SQL (0.9ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:47:41.223575', 'Test', 'test', '2015-09-27 20:47:41.223575') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:47:41 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:47:41 CDT -05:00]]
275
-  (0.2ms) RELEASE SAVEPOINT active_record_1
276
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 15:47:41 -0500
277
- Processing by ProjectHooksController#trigger as HTML
278
- Parameters: {"project_id"=>"test", "hook"=>"something"}
279
- Project Load (1.6ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
280
- Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.6ms)
281
-  (0.5ms) ROLLBACK
282
-  (0.1ms) BEGIN
283
- ---------------------------------------------------------------------------------------------------------------------------------
284
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
285
- ---------------------------------------------------------------------------------------------------------------------------------
286
-  (0.2ms) SAVEPOINT active_record_1
287
- SQL (0.5ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:47:46.610794', 'Test', 'test', '2015-09-27 20:47:46.610794') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:47:46 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:47:46 CDT -05:00]]
288
-  (0.2ms) RELEASE SAVEPOINT active_record_1
289
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 15:47:46 -0500
290
- Processing by ProjectHooksController#trigger as HTML
291
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
292
- Project Load (0.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
293
- Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.7ms)
294
-  (0.5ms) ROLLBACK
295
-  (0.2ms) BEGIN
296
- -----------------------------------
297
- TestTest: test_the_test_suite_works
298
- -----------------------------------
299
-  (0.2ms) ROLLBACK
300
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
301
- [daemon:slack] Skipping daemon since we're not running as a server
302
- [daemon:scheduler] Skipping daemon since we're not running as a server
303
- Setting up observers for RunTestsOnPostReceive
304
- ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
305
-  (0.3ms) BEGIN
306
- ------------------------------------------------------------------------------------------------------------------
307
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
308
- ------------------------------------------------------------------------------------------------------------------
309
-  (0.3ms) SAVEPOINT active_record_1
310
- SQL (1.1ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:48:07.393802', 'Test', 'test', '2015-09-27 20:48:07.393802') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:48:07 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:48:07 CDT -05:00]]
311
-  (0.2ms) RELEASE SAVEPOINT active_record_1
312
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 15:48:07 -0500
313
- Processing by ProjectHooksController#trigger as HTML
314
- Parameters: {"project_id"=>"test", "hook"=>"something"}
315
- Project Load (2.3ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
316
- Completed 500 Internal Server Error in 14ms (ActiveRecord: 2.3ms)
317
-  (0.5ms) ROLLBACK
318
-  (0.1ms) BEGIN
319
- ---------------------------------------------------------------------------------------------------------------------------------
320
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
321
- ---------------------------------------------------------------------------------------------------------------------------------
322
-  (0.2ms) SAVEPOINT active_record_1
323
- SQL (0.5ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:48:07.509862', 'Test', 'test', '2015-09-27 20:48:07.509862') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:48:07 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:48:07 CDT -05:00]]
324
-  (0.2ms) RELEASE SAVEPOINT active_record_1
325
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 15:48:07 -0500
326
- Processing by ProjectHooksController#trigger as HTML
327
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
328
- Project Load (0.6ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
329
- Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.6ms)
330
-  (0.4ms) ROLLBACK
331
-  (0.2ms) BEGIN
332
- -----------------------------------
333
- TestTest: test_the_test_suite_works
334
- -----------------------------------
335
-  (0.2ms) ROLLBACK
336
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
337
- [daemon:slack] Skipping daemon since we're not running as a server
338
- [daemon:scheduler] Skipping daemon since we're not running as a server
339
- Setting up observers for RunTestsOnPostReceive
340
- ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
341
-  (0.3ms) BEGIN
342
- -----------------------------------
343
- TestTest: test_the_test_suite_works
344
- -----------------------------------
345
-  (0.2ms) ROLLBACK
346
-  (0.2ms) BEGIN
347
- ------------------------------------------------------------------------------------------------------------------
348
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
349
- ------------------------------------------------------------------------------------------------------------------
350
-  (0.3ms) SAVEPOINT active_record_1
351
- SQL (1.2ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:49:55.611372', 'Test', 'test', '2015-09-27 20:49:55.611372') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:49:55 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:49:55 CDT -05:00]]
352
-  (0.3ms) RELEASE SAVEPOINT active_record_1
353
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 15:49:55 -0500
354
- Processing by ProjectHooksController#trigger as HTML
355
- Parameters: {"project_id"=>"test", "hook"=>"something"}
356
- Project Load (1.6ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
357
- Completed 500 Internal Server Error in 12ms (ActiveRecord: 1.6ms)
358
-  (0.5ms) ROLLBACK
359
-  (0.2ms) BEGIN
360
- ---------------------------------------------------------------------------------------------------------------------------------
361
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
362
- ---------------------------------------------------------------------------------------------------------------------------------
363
-  (0.2ms) SAVEPOINT active_record_1
364
- SQL (0.6ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:49:55.720611', 'Test', 'test', '2015-09-27 20:49:55.720611') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:49:55 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:49:55 CDT -05:00]]
365
-  (0.2ms) RELEASE SAVEPOINT active_record_1
366
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 15:49:55 -0500
367
- Processing by ProjectHooksController#trigger as HTML
368
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
369
- Project Load (0.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
370
- Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.7ms)
371
-  (0.3ms) ROLLBACK
372
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
373
- [daemon:slack] Skipping daemon since we're not running as a server
374
- [daemon:scheduler] Skipping daemon since we're not running as a server
375
- Setting up observers for RunTestsOnPostReceive
376
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
377
-  (0.3ms) BEGIN
378
- ------------------------------------------------------------------------------------------------------------------
379
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
380
- ------------------------------------------------------------------------------------------------------------------
381
-  (0.3ms) SAVEPOINT active_record_1
382
- SQL (0.9ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:50:05.207262', 'Test', 'test', '2015-09-27 20:50:05.207262') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:50:05 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:50:05 CDT -05:00]]
383
-  (0.2ms) RELEASE SAVEPOINT active_record_1
384
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 15:50:05 -0500
385
- Processing by ProjectHooksController#trigger as HTML
386
- Parameters: {"project_id"=>"test", "hook"=>"something"}
387
- Project Load (1.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
388
- Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.7ms)
389
-  (0.3ms) ROLLBACK
390
-  (0.1ms) BEGIN
391
- ---------------------------------------------------------------------------------------------------------------------------------
392
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
393
- ---------------------------------------------------------------------------------------------------------------------------------
394
-  (0.2ms) SAVEPOINT active_record_1
395
- SQL (0.5ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 20:50:05.315322', 'Test', 'test', '2015-09-27 20:50:05.315322') RETURNING "id" [["created_at", Sun, 27 Sep 2015 15:50:05 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 15:50:05 CDT -05:00]]
396
-  (0.2ms) RELEASE SAVEPOINT active_record_1
397
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 15:50:05 -0500
398
- Processing by ProjectHooksController#trigger as HTML
399
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
400
- Project Load (0.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
401
- Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.7ms)
402
-  (0.3ms) ROLLBACK
403
-  (0.1ms) BEGIN
404
- -----------------------------------
405
- TestTest: test_the_test_suite_works
406
- -----------------------------------
407
-  (0.1ms) ROLLBACK
408
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
409
- [daemon:slack] Skipping daemon since we're not running as a server
410
- [daemon:scheduler] Skipping daemon since we're not running as a server
411
- Setting up observers for RunTestsOnPostReceive
412
- ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
413
-  (0.3ms) BEGIN
414
- -----------------------------------
415
- TestTest: test_the_test_suite_works
416
- -----------------------------------
417
-  (0.2ms) ROLLBACK
418
-  (0.2ms) BEGIN
419
- ------------------------------------------------------------------------------------------------------------------
420
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
421
- ------------------------------------------------------------------------------------------------------------------
422
-  (0.3ms) SAVEPOINT active_record_1
423
- SQL (1.1ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 21:10:57.902666', 'Test', 'test', '2015-09-27 21:10:57.902666') RETURNING "id" [["created_at", Sun, 27 Sep 2015 16:10:57 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 16:10:57 CDT -05:00]]
424
-  (0.2ms) RELEASE SAVEPOINT active_record_1
425
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 16:10:57 -0500
426
- Processing by ProjectHooksController#trigger as HTML
427
- Parameters: {"project_id"=>"test", "hook"=>"something"}
428
- Project Load (1.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
429
- Completed 500 Internal Server Error in 15ms (ActiveRecord: 1.7ms)
430
-  (0.3ms) ROLLBACK
431
-  (0.3ms) BEGIN
432
- ---------------------------------------------------------------------------------------------------------------------------------
433
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
434
- ---------------------------------------------------------------------------------------------------------------------------------
435
-  (0.2ms) SAVEPOINT active_record_1
436
- SQL (0.8ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 21:10:58.030162', 'Test', 'test', '2015-09-27 21:10:58.030162') RETURNING "id" [["created_at", Sun, 27 Sep 2015 16:10:58 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 16:10:58 CDT -05:00]]
437
-  (0.3ms) RELEASE SAVEPOINT active_record_1
438
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 16:10:58 -0500
439
- Processing by ProjectHooksController#trigger as HTML
440
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
441
- Project Load (0.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
442
- Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.7ms)
443
-  (0.3ms) ROLLBACK
444
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
445
- [daemon:slack] Skipping daemon since we're not running as a server
446
- [daemon:scheduler] Skipping daemon since we're not running as a server
447
- Setting up observers for RunTestsOnPostReceive
448
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
449
-  (0.3ms) BEGIN
450
- -----------------------------------
451
- TestTest: test_the_test_suite_works
452
- -----------------------------------
453
-  (0.2ms) ROLLBACK
454
-  (0.2ms) BEGIN
455
- ------------------------------------------------------------------------------------------------------------------
456
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
457
- ------------------------------------------------------------------------------------------------------------------
458
-  (0.3ms) SAVEPOINT active_record_1
459
- SQL (1.0ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 21:12:01.973175', 'Test', 'test', '2015-09-27 21:12:01.973175') RETURNING "id" [["created_at", Sun, 27 Sep 2015 16:12:01 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 16:12:01 CDT -05:00]]
460
-  (0.2ms) RELEASE SAVEPOINT active_record_1
461
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 16:12:01 -0500
462
- Processing by ProjectHooksController#trigger as HTML
463
- Parameters: {"project_id"=>"test", "hook"=>"something"}
464
- Project Load (2.3ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
465
- Completed 500 Internal Server Error in 11ms (ActiveRecord: 2.3ms)
466
-  (0.3ms) ROLLBACK
467
-  (0.2ms) BEGIN
468
- ---------------------------------------------------------------------------------------------------------------------------------
469
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
470
- ---------------------------------------------------------------------------------------------------------------------------------
471
-  (0.2ms) SAVEPOINT active_record_1
472
- SQL (0.7ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 21:12:02.094847', 'Test', 'test', '2015-09-27 21:12:02.094847') RETURNING "id" [["created_at", Sun, 27 Sep 2015 16:12:02 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 16:12:02 CDT -05:00]]
473
-  (0.2ms) RELEASE SAVEPOINT active_record_1
474
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 16:12:02 -0500
475
- Processing by ProjectHooksController#trigger as HTML
476
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
477
- Project Load (0.7ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
478
- Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.7ms)
479
-  (0.3ms) ROLLBACK
480
- [SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
481
- [daemon:slack] Skipping daemon since we're not running as a server
482
- [daemon:scheduler] Skipping daemon since we're not running as a server
483
- Setting up observers for RunTestsOnPostReceive
484
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
485
-  (0.3ms) BEGIN
486
- ------------------------------------------------------------------------------------------------------------------
487
- ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
488
- ------------------------------------------------------------------------------------------------------------------
489
-  (0.4ms) SAVEPOINT active_record_1
490
- SQL (1.2ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 21:13:01.551493', 'Test', 'test', '2015-09-27 21:13:01.551493') RETURNING "id" [["created_at", Sun, 27 Sep 2015 16:13:01 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 16:13:01 CDT -05:00]]
491
-  (0.3ms) RELEASE SAVEPOINT active_record_1
492
- Started POST "/projects/test/hooks/something" for 127.0.0.1 at 2015-09-27 16:13:01 -0500
493
- Processing by ProjectHooksController#trigger as HTML
494
- Parameters: {"project_id"=>"test", "hook"=>"something"}
495
- Project Load (1.8ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
496
- Completed 500 Internal Server Error in 13ms (ActiveRecord: 1.8ms)
497
-  (0.4ms) ROLLBACK
498
-  (0.1ms) BEGIN
499
- ---------------------------------------------------------------------------------------------------------------------------------
500
- ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
501
- ---------------------------------------------------------------------------------------------------------------------------------
502
-  (0.2ms) SAVEPOINT active_record_1
503
- SQL (0.5ms) INSERT INTO "projects" ("created_at", "name", "slug", "updated_at") VALUES ('2015-09-27 21:13:01.672871', 'Test', 'test', '2015-09-27 21:13:01.672871') RETURNING "id" [["created_at", Sun, 27 Sep 2015 16:13:01 CDT -05:00], ["name", "Test"], ["slug", "test"], ["updated_at", Sun, 27 Sep 2015 16:13:01 CDT -05:00]]
504
-  (0.2ms) RELEASE SAVEPOINT active_record_1
505
- Started POST "/projects/test/hooks/exception_report" for 127.0.0.1 at 2015-09-27 16:13:01 -0500
506
- Processing by ProjectHooksController#trigger as HTML
507
- Parameters: {"project_id"=>"test", "hook"=>"exception_report"}
508
- Project Load (0.6ms) SELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1
509
- Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.6ms)
510
-  (0.3ms) ROLLBACK
511
-  (0.2ms) BEGIN
512
- -----------------------------------
513
- TestTest: test_the_test_suite_works
514
- -----------------------------------
515
-  (0.1ms) ROLLBACK
516
- [daemon:slack] Skipping daemon since we're not running as a server
517
- [daemon:scheduler] Skipping daemon since we're not running as a server
518
- Setting up observers for RunTestsOnPostReceive
519
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
520
-  (0.4ms) BEGIN
521
- -----------------------------------
522
- TestTest: test_the_test_suite_works
523
- -----------------------------------
524
-  (0.2ms) ROLLBACK
525
- [daemon:slack] Skipping daemon since we're not running as a server
526
- [daemon:scheduler] Skipping daemon since we're not running as a server
527
- Setting up observers for RunTestsOnPostReceive
528
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
529
-  (0.3ms) BEGIN
530
- -----------------------------------
531
- TestTest: test_the_test_suite_works
532
- -----------------------------------
533
-  (0.3ms) ROLLBACK
534
- [daemon:slack] Skipping daemon since we're not running as a server
535
- [daemon:scheduler] Skipping daemon since we're not running as a server
536
- Setting up observers for RunTestsOnPostReceive
537
- ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
538
-  (0.2ms) BEGIN
539
- -----------------------------------
540
- TestTest: test_the_test_suite_works
541
- -----------------------------------
542
-  (0.1ms) ROLLBACK
543
- [daemon:slack] Skipping daemon since we're not running as a server
544
- [daemon:scheduler] Skipping daemon since we're not running as a server
545
- Setting up observers for RunTestsOnPostReceive
@@ -1,3 +0,0 @@
1
- # Houston.add_navigation_renderer :<%= name %> do
2
- # render_nav_link "<%= camelized %>", Houston::<%= camelized %>::Engine.routes.url_helpers.root_path, icon: "fa-thumbs-up"
3
- # end