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.
- checksums.yaml +4 -4
- data/Gemfile.lock +56 -56
- data/app/assets/javascripts/houston/app/infinite_scroll.coffee +6 -2
- data/app/assets/javascripts/houston/app/models/ticket.coffee +0 -42
- data/app/assets/javascripts/houston/app/ticket_tracker_refresh.coffee +0 -2
- data/app/assets/javascripts/houston/app/views/keyboard_shortcuts_modal.coffee +0 -6
- data/app/assets/javascripts/houston/core/handlebars_helpers.coffee +0 -5
- data/app/assets/stylesheets/houston/application/actions.scss +15 -0
- data/app/assets/stylesheets/houston/application/layout.scss +3 -0
- data/app/assets/stylesheets/houston/application/markdown.scss +1 -1
- data/app/assets/stylesheets/houston/application/navigation.scss +3 -1
- data/app/assets/stylesheets/houston/application/project_banner_buttons.scss +2 -0
- data/app/assets/stylesheets/houston/application/tables.scss +0 -1
- data/app/assets/stylesheets/houston/application/timeline.scss +1 -1
- data/app/assets/stylesheets/houston/core/overrides.scss +2 -1
- data/app/concerns/houston/props.rb +11 -4
- data/app/concerns/project_adapter.rb +1 -1
- data/app/concerns/unique_add.rb +1 -1
- data/app/controllers/actions_controller.rb +39 -0
- data/app/controllers/commits_controller.rb +1 -1
- data/app/controllers/errors_controller.rb +10 -0
- data/app/controllers/hooks_controller.rb +1 -1
- data/app/controllers/omnibar_controller.rb +1 -11
- data/app/controllers/project_hooks_controller.rb +2 -2
- data/app/controllers/projects_controller.rb +2 -0
- data/app/controllers/test_runs_controller.rb +14 -3
- data/app/controllers/triggers_controller.rb +8 -0
- data/app/helpers/actions_helper.rb +7 -0
- data/app/helpers/application_helper.rb +1 -1
- data/app/interactors/cache_key_dependencies.rb +1 -1
- data/app/interactors/test_run_comparer.rb +1 -1
- data/app/mailers/project_notification.rb +0 -31
- data/app/models/ability.rb +0 -11
- data/app/models/{job.rb → action.rb} +19 -7
- data/app/models/commit.rb +2 -2
- data/app/models/deploy.rb +3 -3
- data/app/models/github/comment_event.rb +9 -3
- data/app/models/github/post_receive_event.rb +1 -1
- data/app/models/github/pull_request.rb +5 -5
- data/app/models/persistent_trigger.rb +46 -0
- data/app/models/project.rb +0 -1
- data/app/models/release.rb +1 -1
- data/app/models/run_tests_on_post_receive.rb +17 -17
- data/app/models/task.rb +4 -4
- data/app/models/test_run.rb +18 -5
- data/app/models/ticket.rb +2 -21
- data/app/models/ticket_antecedent.rb +3 -3
- data/app/models/user.rb +0 -1
- data/app/views/actions/index.html.erb +69 -0
- data/app/views/actions/show.html.erb +45 -0
- data/app/views/commits/show.html.erb +7 -8
- data/app/views/errors/_actions.html.erb +11 -0
- data/app/views/errors/index.html.erb +39 -0
- data/app/views/layouts/_mobile_navigation.html.erb +1 -9
- data/app/views/layouts/_navigation.html.erb +14 -8
- data/app/views/layouts/application.html.erb +1 -3
- data/app/views/project_notification/test_run.html.erb +13 -3
- data/app/views/projects/_form.html.erb +13 -7
- data/app/views/triggers/index.html.erb +39 -0
- data/config/initializers/add_navigation_renderers.rb +0 -6
- data/config/initializers/houston_async.rb +4 -2
- data/config/initializers/houston_scheduler_daemon.rb +6 -0
- data/config/initializers/load_persistent_triggers.rb +7 -0
- data/config/initializers/requirements.rb +2 -1
- data/config/initializers/sync_commits_on_post_receive.rb +2 -2
- data/config/routes.rb +17 -15
- data/db/migrate/20160711170921_rename_jobs_to_actions.rb +5 -0
- data/db/migrate/20160713204605_add_trigger_and_params_to_actions.rb +6 -0
- data/db/migrate/20160715173039_create_persistent_triggers.rb +10 -0
- data/db/structure.sql +197 -221
- data/houston-core.gemspec +1 -1
- data/lib/houston/boot/actions.rb +105 -0
- data/lib/houston/boot/active_record_serializer.rb +24 -0
- data/lib/houston/boot/configuration.rb +118 -49
- data/lib/houston/boot/events.rb +46 -0
- data/lib/houston/boot/extensions.rb +118 -14
- data/lib/houston/boot/observer.rb +122 -24
- data/lib/houston/boot/readonly_hash_serializer.rb +15 -0
- data/lib/houston/boot/serializer.rb +83 -0
- data/lib/houston/boot/ticket_antecedent_serializer.rb +21 -0
- data/lib/houston/boot/timer.rb +45 -0
- data/lib/houston/boot/triggers.rb +75 -0
- data/lib/houston/boot.rb +5 -0
- data/lib/houston/version.rb +1 -1
- data/lib/params_serializer.rb +18 -0
- data/lib/tasks/actions.rake +12 -0
- data/lib/tasks/events.rake +11 -0
- data/templates/new-instance/config/abilities.rb +0 -8
- data/templates/new-instance/config/{triggers → events}/alerts/slack_when_assigned.rb +1 -1
- data/templates/new-instance/config/{triggers → events}/alerts/slack_when_opened.rb +1 -1
- data/templates/new-instance/config/{triggers → events}/daemons/health.rb +6 -6
- data/templates/new-instance/config/{triggers → events}/deploy/autoresolve_errs.rb +1 -1
- data/templates/new-instance/config/{triggers → events}/deploy/checkout_mentioned_alerts.rb +1 -1
- data/templates/new-instance/config/{triggers → events}/deploy/notify_deployer_when_finished.rb +2 -2
- data/templates/new-instance/config/{triggers → events}/github/publish_comments_on_slack.rb +9 -9
- data/templates/new-instance/config/{triggers → events}/tests/slack_when_analyzed.rb +1 -1
- data/templates/new-instance/config/{triggers → events}/tests/slack_when_completed.rb +1 -1
- data/templates/new-instance/config/{triggers → events}/tickets/mark_tasks_completed_on_commit.rb +1 -1
- data/templates/new-instance/config/main.rb +8 -35
- data/templates/new-instance/config/{jobs → timers}/cache_key_dependencies.rb +0 -0
- data/templates/new-instance/config/{jobs → timers}/email_about_open_alerts.rb +0 -0
- data/templates/new-instance/config/{jobs → timers}/purge_jobs.rb +0 -0
- data/templates/new-instance/config/{jobs → timers}/slack_reminders_about_alerts.rb +0 -0
- data/templates/new-instance/config/{jobs → timers}/sync_commits.rb +0 -0
- data/templates/new-instance/config/{jobs → timers}/sync_pull_requests.rb +0 -0
- data/templates/new-instance/config/{jobs → timers}/sync_tickets.rb +0 -0
- data/templates/new-module/lib/houston/%name%.rb +13 -0
- data/test/integration/ci_integration_test.rb +5 -5
- data/test/integration/web_hook_test.rb +1 -1
- data/test/test_helper.rb +14 -0
- data/test/unit/controllers/hooks_controller_test.rb +2 -2
- data/test/unit/initializers/sync_commits_on_post_receive_test.rb +1 -1
- data/test/unit/models/actions_test.rb +107 -0
- data/test/unit/models/configuration_test.rb +108 -0
- data/test/unit/models/observer_test.rb +87 -3
- data/test/unit/models/persistent_trigger_test.rb +94 -0
- data/test/unit/models/serializer_test.rb +80 -0
- data/test/unit/models/triggers_test.rb +53 -0
- metadata +60 -60
- data/app/assets/javascripts/houston/app/models/testing_note.coffee +0 -18
- data/app/assets/javascripts/houston/app/views/commit_view.coffee +0 -13
- data/app/assets/javascripts/houston/app/views/testing_note_view.coffee +0 -85
- data/app/assets/javascripts/houston/app/views/testing_report_view.coffee +0 -29
- data/app/assets/javascripts/houston/app/views/testing_ticket_view.coffee +0 -203
- data/app/assets/stylesheets/houston/application/jobs.scss +0 -5
- data/app/assets/stylesheets/houston/application/testing_report.scss +0 -279
- data/app/assets/templates/commit.hbs +0 -9
- data/app/assets/templates/testing_notes/edit.hbs +0 -20
- data/app/assets/templates/testing_notes/new.hbs +0 -27
- data/app/assets/templates/testing_notes/show.hbs +0 -11
- data/app/assets/templates/testing_report/description.hbs +0 -12
- data/app/assets/templates/testing_report/ticket.hbs +0 -21
- data/app/assets/templates/testing_report/verdict.hbs +0 -4
- data/app/controllers/jobs_controller.rb +0 -42
- data/app/controllers/testing_notes_controller.rb +0 -50
- data/app/controllers/testing_report_controller.rb +0 -38
- data/app/models/testing_note.rb +0 -64
- data/app/presenters/testing_note_presenter.rb +0 -27
- data/app/presenters/testing_report_ticket_presenter.rb +0 -71
- data/app/views/jobs/index.html.erb +0 -72
- data/app/views/jobs/show.html.erb +0 -41
- data/app/views/project_notification/testing_note.html.erb +0 -9
- data/app/views/testing_report/_scripts.html.erb +0 -12
- data/app/views/testing_report/index.html.erb +0 -31
- data/app/views/testing_report/show.html.erb +0 -29
- data/config/initializers/houston_scheduler.rb +0 -23
- data/db/migrate/20120424212706_create_testing_notes.rb +0 -14
- data/db/migrate/20120501231817_add_expires_at_to_testing_notes.rb +0 -5
- data/db/migrate/20120501231948_add_unfuddle_id_to_testing_notes.rb +0 -5
- data/db/migrate/20120715230526_change_testing_notes_comment_to_text.rb +0 -9
- data/db/migrate/20130211015046_add_min_passing_verdicts_to_projects.rb +0 -5
- data/db/migrate/20130407220039_add_project_id_to_testing_notes.rb +0 -26
- data/db/migrate/20140511024021_rename_testing_notes_unfuddle_id_to_remote_id.rb +0 -5
- data/templates/new-instance/config/triggers/tickets/email_testing_notes.rb +0 -7
- data/templates/new-instance/log/development.log +0 -41253
- data/templates/new-instance/log/test.log +0 -545
- 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
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
3
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
4
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
5
|
-
[1m[36mActiveRecord::SchemaMigration Load (1.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
6
|
-
[1m[35m (0.3ms)[0m BEGIN
|
7
|
-
-----------------------------------
|
8
|
-
TestTest: test_the_test_suite_works
|
9
|
-
-----------------------------------
|
10
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
11
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
12
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
13
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
14
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
15
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
16
|
-
[1m[35m (0.3ms)[0m BEGIN
|
17
|
-
-----------------------------------
|
18
|
-
TestTest: test_the_test_suite_works
|
19
|
-
-----------------------------------
|
20
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
21
|
-
[1m[35m (0.3ms)[0m BEGIN
|
22
|
-
------------------------------------------------------------------------------------------------------------------
|
23
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
24
|
-
------------------------------------------------------------------------------------------------------------------
|
25
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
26
|
-
[1m[35m (0.3ms)[0m BEGIN
|
27
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
28
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
29
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
30
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
31
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
32
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
33
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
34
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
35
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
36
|
-
[1m[35m (0.3ms)[0m BEGIN
|
37
|
-
------------------------------------------------------------------------------------------------------------------
|
38
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
39
|
-
------------------------------------------------------------------------------------------------------------------
|
40
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
41
|
-
[1m[35m (0.1ms)[0m BEGIN
|
42
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
43
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
44
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
45
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
46
|
-
[1m[35m (0.2ms)[0m BEGIN
|
47
|
-
-----------------------------------
|
48
|
-
TestTest: test_the_test_suite_works
|
49
|
-
-----------------------------------
|
50
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
51
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
52
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
53
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
54
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
55
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
56
|
-
[1m[35m (0.2ms)[0m BEGIN
|
57
|
-
-----------------------------------
|
58
|
-
TestTest: test_the_test_suite_works
|
59
|
-
-----------------------------------
|
60
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
61
|
-
[1m[35m (0.2ms)[0m BEGIN
|
62
|
-
------------------------------------------------------------------------------------------------------------------
|
63
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
64
|
-
------------------------------------------------------------------------------------------------------------------
|
65
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
66
|
-
[1m[35m (0.1ms)[0m BEGIN
|
67
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
68
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
69
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
70
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
71
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
72
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
73
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
74
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
75
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
76
|
-
[1m[35m (0.3ms)[0m BEGIN
|
77
|
-
------------------------------------------------------------------------------------------------------------------
|
78
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
79
|
-
------------------------------------------------------------------------------------------------------------------
|
80
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
81
|
-
[1m[35m (0.2ms)[0m BEGIN
|
82
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
83
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
84
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
85
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
86
|
-
[1m[35m (0.1ms)[0m BEGIN
|
87
|
-
-----------------------------------
|
88
|
-
TestTest: test_the_test_suite_works
|
89
|
-
-----------------------------------
|
90
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
91
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
92
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
93
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
94
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
95
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
96
|
-
[1m[35m (0.3ms)[0m BEGIN
|
97
|
-
-----------------------------------
|
98
|
-
TestTest: test_the_test_suite_works
|
99
|
-
-----------------------------------
|
100
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
101
|
-
[1m[35m (0.2ms)[0m BEGIN
|
102
|
-
------------------------------------------------------------------------------------------------------------------
|
103
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
104
|
-
------------------------------------------------------------------------------------------------------------------
|
105
|
-
[1m[36m (0.7ms)[0m [1mSELECT COUNT(*) FROM "projects"[0m
|
106
|
-
[1m[35m (0.5ms)[0m SAVEPOINT active_record_1
|
107
|
-
[1m[36mSQL (1.3ms)[0m [1mINSERT 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"[0m [["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
|
-
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
109
|
-
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
110
|
-
[1m[35m (0.1ms)[0m BEGIN
|
111
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
112
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
113
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
114
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
115
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
116
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
117
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
118
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
119
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
120
|
-
[1m[35m (0.2ms)[0m BEGIN
|
121
|
-
-----------------------------------
|
122
|
-
TestTest: test_the_test_suite_works
|
123
|
-
-----------------------------------
|
124
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
125
|
-
[1m[35m (0.1ms)[0m BEGIN
|
126
|
-
------------------------------------------------------------------------------------------------------------------
|
127
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
128
|
-
------------------------------------------------------------------------------------------------------------------
|
129
|
-
[1m[36m (0.4ms)[0m [1mSAVEPOINT active_record_1[0m
|
130
|
-
[1m[35mSQL (1.3ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (1.8ms)[0m 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
|
-
[1m[36mProject Load (0.7ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1[0m
|
141
|
-
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.7ms)
|
142
|
-
[1m[35m (0.5ms)[0m ROLLBACK
|
143
|
-
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
144
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
145
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
146
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
147
|
-
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
148
|
-
[1m[36mSQL (0.7ms)[0m [1mINSERT 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"[0m [["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
|
-
[1m[35m (0.3ms)[0m 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
|
-
[1m[36mProject Load (0.7ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."slug" = 'test' ORDER BY "projects"."name" ASC LIMIT 1[0m
|
154
|
-
Completed 404 Not Found in 12ms (Views: 9.4ms | ActiveRecord: 0.7ms)
|
155
|
-
[1m[35m (0.3ms)[0m ROLLBACK
|
156
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
157
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
158
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
159
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
160
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
161
|
-
[1m[35m (0.3ms)[0m BEGIN
|
162
|
-
------------------------------------------------------------------------------------------------------------------
|
163
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
164
|
-
------------------------------------------------------------------------------------------------------------------
|
165
|
-
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
166
|
-
[1m[35mSQL (1.1ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (1.6ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
174
|
-
[1m[35m (0.1ms)[0m BEGIN
|
175
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
176
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
177
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
178
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
179
|
-
[1m[35mSQL (0.5ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (0.6ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
187
|
-
[1m[35m (0.1ms)[0m BEGIN
|
188
|
-
-----------------------------------
|
189
|
-
TestTest: test_the_test_suite_works
|
190
|
-
-----------------------------------
|
191
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
192
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
193
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
194
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
195
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
196
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
197
|
-
[1m[35m (0.5ms)[0m BEGIN
|
198
|
-
------------------------------------------------------------------------------------------------------------------
|
199
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
200
|
-
------------------------------------------------------------------------------------------------------------------
|
201
|
-
[1m[36m (0.4ms)[0m [1mSAVEPOINT active_record_1[0m
|
202
|
-
[1m[35mSQL (1.3ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (1.7ms)[0m 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
|
-
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
210
|
-
[1m[35m (0.2ms)[0m BEGIN
|
211
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
212
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
213
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
214
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
215
|
-
[1m[35mSQL (0.6ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (0.7ms)[0m 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
|
-
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
223
|
-
[1m[35m (0.2ms)[0m BEGIN
|
224
|
-
-----------------------------------
|
225
|
-
TestTest: test_the_test_suite_works
|
226
|
-
-----------------------------------
|
227
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
228
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
229
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
230
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
231
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
232
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
233
|
-
[1m[35m (0.3ms)[0m BEGIN
|
234
|
-
-----------------------------------
|
235
|
-
TestTest: test_the_test_suite_works
|
236
|
-
-----------------------------------
|
237
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
238
|
-
[1m[35m (0.2ms)[0m BEGIN
|
239
|
-
------------------------------------------------------------------------------------------------------------------
|
240
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
241
|
-
------------------------------------------------------------------------------------------------------------------
|
242
|
-
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
243
|
-
[1m[35mSQL (1.0ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (1.7ms)[0m 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
|
-
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
251
|
-
[1m[35m (0.2ms)[0m BEGIN
|
252
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
253
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
254
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
255
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
256
|
-
[1m[35mSQL (0.5ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (0.6ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
264
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
265
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
266
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
267
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
268
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
269
|
-
[1m[35m (0.3ms)[0m BEGIN
|
270
|
-
------------------------------------------------------------------------------------------------------------------
|
271
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
272
|
-
------------------------------------------------------------------------------------------------------------------
|
273
|
-
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
274
|
-
[1m[35mSQL (0.9ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (1.6ms)[0m 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
|
-
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
282
|
-
[1m[35m (0.1ms)[0m BEGIN
|
283
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
284
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
285
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
286
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
287
|
-
[1m[35mSQL (0.5ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (0.7ms)[0m 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
|
-
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
295
|
-
[1m[35m (0.2ms)[0m BEGIN
|
296
|
-
-----------------------------------
|
297
|
-
TestTest: test_the_test_suite_works
|
298
|
-
-----------------------------------
|
299
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
300
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
301
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
302
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
303
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
304
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
305
|
-
[1m[35m (0.3ms)[0m BEGIN
|
306
|
-
------------------------------------------------------------------------------------------------------------------
|
307
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
308
|
-
------------------------------------------------------------------------------------------------------------------
|
309
|
-
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
310
|
-
[1m[35mSQL (1.1ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (2.3ms)[0m 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
|
-
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
318
|
-
[1m[35m (0.1ms)[0m BEGIN
|
319
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
320
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
321
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
322
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
323
|
-
[1m[35mSQL (0.5ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (0.6ms)[0m 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
|
-
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
331
|
-
[1m[35m (0.2ms)[0m BEGIN
|
332
|
-
-----------------------------------
|
333
|
-
TestTest: test_the_test_suite_works
|
334
|
-
-----------------------------------
|
335
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
336
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
337
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
338
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
339
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
340
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
341
|
-
[1m[35m (0.3ms)[0m BEGIN
|
342
|
-
-----------------------------------
|
343
|
-
TestTest: test_the_test_suite_works
|
344
|
-
-----------------------------------
|
345
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
346
|
-
[1m[35m (0.2ms)[0m BEGIN
|
347
|
-
------------------------------------------------------------------------------------------------------------------
|
348
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
349
|
-
------------------------------------------------------------------------------------------------------------------
|
350
|
-
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
351
|
-
[1m[35mSQL (1.2ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (1.6ms)[0m 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
|
-
[1m[36m (0.5ms)[0m [1mROLLBACK[0m
|
359
|
-
[1m[35m (0.2ms)[0m BEGIN
|
360
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
361
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
362
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
363
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
364
|
-
[1m[35mSQL (0.6ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (0.7ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
372
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
373
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
374
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
375
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
376
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
377
|
-
[1m[35m (0.3ms)[0m BEGIN
|
378
|
-
------------------------------------------------------------------------------------------------------------------
|
379
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
380
|
-
------------------------------------------------------------------------------------------------------------------
|
381
|
-
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
382
|
-
[1m[35mSQL (0.9ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (1.7ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
390
|
-
[1m[35m (0.1ms)[0m BEGIN
|
391
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
392
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
393
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
394
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
395
|
-
[1m[35mSQL (0.5ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (0.7ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
403
|
-
[1m[35m (0.1ms)[0m BEGIN
|
404
|
-
-----------------------------------
|
405
|
-
TestTest: test_the_test_suite_works
|
406
|
-
-----------------------------------
|
407
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
408
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
409
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
410
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
411
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
412
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
413
|
-
[1m[35m (0.3ms)[0m BEGIN
|
414
|
-
-----------------------------------
|
415
|
-
TestTest: test_the_test_suite_works
|
416
|
-
-----------------------------------
|
417
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
418
|
-
[1m[35m (0.2ms)[0m BEGIN
|
419
|
-
------------------------------------------------------------------------------------------------------------------
|
420
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
421
|
-
------------------------------------------------------------------------------------------------------------------
|
422
|
-
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
423
|
-
[1m[35mSQL (1.1ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (1.7ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
431
|
-
[1m[35m (0.3ms)[0m BEGIN
|
432
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
433
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
434
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
435
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
436
|
-
[1m[35mSQL (0.8ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (0.7ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
444
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
445
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
446
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
447
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
448
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
449
|
-
[1m[35m (0.3ms)[0m BEGIN
|
450
|
-
-----------------------------------
|
451
|
-
TestTest: test_the_test_suite_works
|
452
|
-
-----------------------------------
|
453
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
454
|
-
[1m[35m (0.2ms)[0m BEGIN
|
455
|
-
------------------------------------------------------------------------------------------------------------------
|
456
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
457
|
-
------------------------------------------------------------------------------------------------------------------
|
458
|
-
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
459
|
-
[1m[35mSQL (1.0ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (2.3ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
467
|
-
[1m[35m (0.2ms)[0m BEGIN
|
468
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
469
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
470
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
471
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
472
|
-
[1m[35mSQL (0.7ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (0.7ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
480
|
-
[SKYLIGHT] [0.8.0] authentication token required; disabling Skylight agent
|
481
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
482
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
483
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
484
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
485
|
-
[1m[35m (0.3ms)[0m BEGIN
|
486
|
-
------------------------------------------------------------------------------------------------------------------
|
487
|
-
ExceptionReportingTest: test_: when an exception occurs during a normal web hook, it should report the exception.
|
488
|
-
------------------------------------------------------------------------------------------------------------------
|
489
|
-
[1m[36m (0.4ms)[0m [1mSAVEPOINT active_record_1[0m
|
490
|
-
[1m[35mSQL (1.2ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (1.8ms)[0m 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
|
-
[1m[36m (0.4ms)[0m [1mROLLBACK[0m
|
498
|
-
[1m[35m (0.1ms)[0m BEGIN
|
499
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
500
|
-
ExceptionReportingTest: test_: when an exception occurs during the exception_report webhook, it should not report the exception.
|
501
|
-
---------------------------------------------------------------------------------------------------------------------------------
|
502
|
-
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
503
|
-
[1m[35mSQL (0.5ms)[0m 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
|
-
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
-
[1m[35mProject Load (0.6ms)[0m 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
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
511
|
-
[1m[35m (0.2ms)[0m BEGIN
|
512
|
-
-----------------------------------
|
513
|
-
TestTest: test_the_test_suite_works
|
514
|
-
-----------------------------------
|
515
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
516
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
517
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
518
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
519
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
520
|
-
[1m[35m (0.4ms)[0m BEGIN
|
521
|
-
-----------------------------------
|
522
|
-
TestTest: test_the_test_suite_works
|
523
|
-
-----------------------------------
|
524
|
-
[1m[36m (0.2ms)[0m [1mROLLBACK[0m
|
525
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
526
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
527
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
528
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
529
|
-
[1m[35m (0.3ms)[0m BEGIN
|
530
|
-
-----------------------------------
|
531
|
-
TestTest: test_the_test_suite_works
|
532
|
-
-----------------------------------
|
533
|
-
[1m[36m (0.3ms)[0m [1mROLLBACK[0m
|
534
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
535
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
536
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|
537
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
538
|
-
[1m[35m (0.2ms)[0m BEGIN
|
539
|
-
-----------------------------------
|
540
|
-
TestTest: test_the_test_suite_works
|
541
|
-
-----------------------------------
|
542
|
-
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
|
543
|
-
[94m[daemon:slack] Skipping daemon since we're not running as a server[0m
|
544
|
-
[94m[daemon:scheduler] Skipping daemon since we're not running as a server[0m
|
545
|
-
[34;1mSetting up observers for RunTestsOnPostReceive[0m
|