aws_elb_health_check 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +39 -0
- data/Rakefile +37 -0
- data/app/assets/javascripts/aws_elb_health_check/application.js +13 -0
- data/app/assets/stylesheets/aws_elb_health_check/application.css +15 -0
- data/app/controllers/aws_elb_health_check/application_controller.rb +5 -0
- data/app/controllers/aws_elb_health_check/health_checks_controller.rb +26 -0
- data/app/helpers/aws_elb_health_check/application_helper.rb +4 -0
- data/app/views/layouts/aws_elb_health_check/application.html.erb +14 -0
- data/config/routes.rb +4 -0
- data/lib/aws_elb_health_check/engine.rb +5 -0
- data/lib/aws_elb_health_check/version.rb +3 -0
- data/lib/aws_elb_health_check.rb +4 -0
- data/lib/tasks/aws_elb_health_check_tasks.rake +4 -0
- data/test/aws_elb_health_check_test.rb +7 -0
- data/test/controllers/aws_elb_health_check/health_checks_controller_test.rb +34 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +86 -0
- data/test/dummy/log/test.log +568 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/integration/navigation_test.rb +8 -0
- data/test/test_helper.rb +21 -0
- metadata +186 -0
@@ -0,0 +1,568 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
+
---------------------------------
|
3
|
+
AwsElbHealthCheckTest: test_truth
|
4
|
+
---------------------------------
|
5
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
---------------------------------
|
8
|
+
AwsElbHealthCheckTest: test_truth
|
9
|
+
---------------------------------
|
10
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12
|
+
----------------------------------------------------------------------------------------------------------
|
13
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
14
|
+
----------------------------------------------------------------------------------------------------------
|
15
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
16
|
+
Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
|
17
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
18
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19
|
+
-------------------------------------------------------------------------------------------------
|
20
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
21
|
+
-------------------------------------------------------------------------------------------------
|
22
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
23
|
+
Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
24
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
25
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
26
|
+
-----------------------------------------------------------------------------------------------
|
27
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
28
|
+
-----------------------------------------------------------------------------------------------
|
29
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
30
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
31
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
32
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
33
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
34
|
+
----------------------------------------------------------------------------------------------
|
35
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
36
|
+
----------------------------------------------------------------------------------------------
|
37
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
38
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
39
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
40
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
41
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
42
|
+
---------------------------------
|
43
|
+
AwsElbHealthCheckTest: test_truth
|
44
|
+
---------------------------------
|
45
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
46
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
47
|
+
-----------------------------------------------------------------------------------------------
|
48
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
49
|
+
-----------------------------------------------------------------------------------------------
|
50
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
51
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
52
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
53
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
54
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55
|
+
----------------------------------------------------------------------------------------------------------
|
56
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
57
|
+
----------------------------------------------------------------------------------------------------------
|
58
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
59
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
60
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
61
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
62
|
+
-------------------------------------------------------------------------------------------------
|
63
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
64
|
+
-------------------------------------------------------------------------------------------------
|
65
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
66
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
67
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
68
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
69
|
+
----------------------------------------------------------------------------------------------
|
70
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
71
|
+
----------------------------------------------------------------------------------------------
|
72
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
73
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
74
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
75
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
76
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
77
|
+
---------------------------------
|
78
|
+
AwsElbHealthCheckTest: test_truth
|
79
|
+
---------------------------------
|
80
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
81
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
82
|
+
----------------------------------------------------------------------------------------------------------
|
83
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
84
|
+
----------------------------------------------------------------------------------------------------------
|
85
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
86
|
+
Completed 200 OK in 1ms (ActiveRecord: 0.0ms)
|
87
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
88
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
89
|
+
-----------------------------------------------------------------------------------------------
|
90
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
91
|
+
-----------------------------------------------------------------------------------------------
|
92
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
93
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
94
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
95
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
96
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
97
|
+
----------------------------------------------------------------------------------------------
|
98
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
99
|
+
----------------------------------------------------------------------------------------------
|
100
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
101
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
102
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
103
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
104
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
105
|
+
-------------------------------------------------------------------------------------------------
|
106
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
107
|
+
-------------------------------------------------------------------------------------------------
|
108
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
109
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
110
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
111
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
112
|
+
---------------------------------
|
113
|
+
AwsElbHealthCheckTest: test_truth
|
114
|
+
---------------------------------
|
115
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
116
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
117
|
+
----------------------------------------------------------------------------------------------------------
|
118
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
119
|
+
----------------------------------------------------------------------------------------------------------
|
120
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
121
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
122
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
123
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
124
|
+
-------------------------------------------------------------------------------------------------
|
125
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
126
|
+
-------------------------------------------------------------------------------------------------
|
127
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
128
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
129
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
130
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
131
|
+
-----------------------------------------------------------------------------------------------
|
132
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
133
|
+
-----------------------------------------------------------------------------------------------
|
134
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
135
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
136
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
137
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
138
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
139
|
+
----------------------------------------------------------------------------------------------
|
140
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
141
|
+
----------------------------------------------------------------------------------------------
|
142
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
143
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
144
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
145
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
146
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
147
|
+
---------------------------------
|
148
|
+
AwsElbHealthCheckTest: test_truth
|
149
|
+
---------------------------------
|
150
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
151
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
152
|
+
----------------------------------------------------------------------------------------------------------
|
153
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
154
|
+
----------------------------------------------------------------------------------------------------------
|
155
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
156
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
157
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
158
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
159
|
+
-----------------------------------------------------------------------------------------------
|
160
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
161
|
+
-----------------------------------------------------------------------------------------------
|
162
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
163
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
164
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
165
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
166
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
167
|
+
-------------------------------------------------------------------------------------------------
|
168
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
169
|
+
-------------------------------------------------------------------------------------------------
|
170
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
171
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
172
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
173
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
174
|
+
----------------------------------------------------------------------------------------------
|
175
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
176
|
+
----------------------------------------------------------------------------------------------
|
177
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
178
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
179
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
180
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
181
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
182
|
+
---------------------------------
|
183
|
+
AwsElbHealthCheckTest: test_truth
|
184
|
+
---------------------------------
|
185
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
186
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
187
|
+
----------------------------------------------------------------------------------------------------------
|
188
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
189
|
+
----------------------------------------------------------------------------------------------------------
|
190
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
191
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
192
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
193
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
194
|
+
----------------------------------------------------------------------------------------------
|
195
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
196
|
+
----------------------------------------------------------------------------------------------
|
197
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
198
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
199
|
+
Completed 403 Forbidden in 3ms (ActiveRecord: 0.0ms)
|
200
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
201
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
202
|
+
-------------------------------------------------------------------------------------------------
|
203
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
204
|
+
-------------------------------------------------------------------------------------------------
|
205
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
206
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
207
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
208
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
209
|
+
-----------------------------------------------------------------------------------------------
|
210
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
211
|
+
-----------------------------------------------------------------------------------------------
|
212
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
213
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
214
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
215
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
216
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
217
|
+
----------------------------------------------------------------------------------------------------------
|
218
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
219
|
+
----------------------------------------------------------------------------------------------------------
|
220
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
221
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
222
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
223
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
224
|
+
----------------------------------------------------------------------------------------------
|
225
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
226
|
+
----------------------------------------------------------------------------------------------
|
227
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
228
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
229
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
230
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
231
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
232
|
+
-----------------------------------------------------------------------------------------------
|
233
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
234
|
+
-----------------------------------------------------------------------------------------------
|
235
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
236
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
237
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
238
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
239
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
240
|
+
-------------------------------------------------------------------------------------------------
|
241
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
242
|
+
-------------------------------------------------------------------------------------------------
|
243
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
244
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
245
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
246
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
247
|
+
---------------------------------
|
248
|
+
AwsElbHealthCheckTest: test_truth
|
249
|
+
---------------------------------
|
250
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
251
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
252
|
+
---------------------------------
|
253
|
+
AwsElbHealthCheckTest: test_truth
|
254
|
+
---------------------------------
|
255
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
256
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
257
|
+
----------------------------------------------------------------------------------------------------------
|
258
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
259
|
+
----------------------------------------------------------------------------------------------------------
|
260
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
261
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
262
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
263
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
264
|
+
-------------------------------------------------------------------------------------------------
|
265
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
266
|
+
-------------------------------------------------------------------------------------------------
|
267
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
268
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
269
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
270
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
271
|
+
----------------------------------------------------------------------------------------------
|
272
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
273
|
+
----------------------------------------------------------------------------------------------
|
274
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
275
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
276
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
277
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
278
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
279
|
+
-----------------------------------------------------------------------------------------------
|
280
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
281
|
+
-----------------------------------------------------------------------------------------------
|
282
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
283
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
284
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
285
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
286
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
287
|
+
----------------------------------------------------------------------------------------------
|
288
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
289
|
+
----------------------------------------------------------------------------------------------
|
290
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
291
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
292
|
+
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
|
293
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
294
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
295
|
+
----------------------------------------------------------------------------------------------------------
|
296
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
297
|
+
----------------------------------------------------------------------------------------------------------
|
298
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
299
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
300
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
301
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
302
|
+
-------------------------------------------------------------------------------------------------
|
303
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
304
|
+
-------------------------------------------------------------------------------------------------
|
305
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
306
|
+
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
|
307
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
308
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
309
|
+
-----------------------------------------------------------------------------------------------
|
310
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
311
|
+
-----------------------------------------------------------------------------------------------
|
312
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
313
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
314
|
+
Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
|
315
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
316
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
317
|
+
---------------------------------
|
318
|
+
AwsElbHealthCheckTest: test_truth
|
319
|
+
---------------------------------
|
320
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
321
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
322
|
+
---------------------------------
|
323
|
+
AwsElbHealthCheckTest: test_truth
|
324
|
+
---------------------------------
|
325
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
326
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
327
|
+
-----------------------------------------------------------------------------------------------
|
328
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
329
|
+
-----------------------------------------------------------------------------------------------
|
330
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
331
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
332
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
333
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
334
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
335
|
+
----------------------------------------------------------------------------------------------
|
336
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
337
|
+
----------------------------------------------------------------------------------------------
|
338
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
339
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
340
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
341
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
342
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
343
|
+
-------------------------------------------------------------------------------------------------
|
344
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
345
|
+
-------------------------------------------------------------------------------------------------
|
346
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
347
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
348
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
349
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
350
|
+
----------------------------------------------------------------------------------------------------------
|
351
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
352
|
+
----------------------------------------------------------------------------------------------------------
|
353
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
354
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
355
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
356
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
357
|
+
---------------------------------
|
358
|
+
AwsElbHealthCheckTest: test_truth
|
359
|
+
---------------------------------
|
360
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
361
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
362
|
+
----------------------------------------------------------------------------------------------------------
|
363
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
364
|
+
----------------------------------------------------------------------------------------------------------
|
365
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
366
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
367
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
368
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
369
|
+
-------------------------------------------------------------------------------------------------
|
370
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
371
|
+
-------------------------------------------------------------------------------------------------
|
372
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
373
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
374
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
375
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
376
|
+
-----------------------------------------------------------------------------------------------
|
377
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
378
|
+
-----------------------------------------------------------------------------------------------
|
379
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
380
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}}
|
381
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
382
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
383
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
384
|
+
----------------------------------------------------------------------------------------------
|
385
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
386
|
+
----------------------------------------------------------------------------------------------
|
387
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
388
|
+
Parameters: {"params"=>{"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}}
|
389
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
390
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
391
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
392
|
+
---------------------------------
|
393
|
+
AwsElbHealthCheckTest: test_truth
|
394
|
+
---------------------------------
|
395
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
396
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
397
|
+
----------------------------------------------------------------------------------------------------------
|
398
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
399
|
+
----------------------------------------------------------------------------------------------------------
|
400
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
401
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
402
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
403
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
404
|
+
-------------------------------------------------------------------------------------------------
|
405
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
406
|
+
-------------------------------------------------------------------------------------------------
|
407
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
408
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
409
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
410
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
411
|
+
-----------------------------------------------------------------------------------------------
|
412
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
413
|
+
-----------------------------------------------------------------------------------------------
|
414
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
415
|
+
Parameters: {"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}
|
416
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
417
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
418
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
419
|
+
----------------------------------------------------------------------------------------------
|
420
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
421
|
+
----------------------------------------------------------------------------------------------
|
422
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
423
|
+
Parameters: {"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}
|
424
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
425
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
426
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
427
|
+
---------------------------------
|
428
|
+
AwsElbHealthCheckTest: test_truth
|
429
|
+
---------------------------------
|
430
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
431
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
432
|
+
----------------------------------------------------------------------------------------------------------
|
433
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
434
|
+
----------------------------------------------------------------------------------------------------------
|
435
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
436
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
437
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
438
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
439
|
+
-------------------------------------------------------------------------------------------------
|
440
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
441
|
+
-------------------------------------------------------------------------------------------------
|
442
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
443
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
444
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
445
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
446
|
+
-----------------------------------------------------------------------------------------------
|
447
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
448
|
+
-----------------------------------------------------------------------------------------------
|
449
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
450
|
+
Parameters: {"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}
|
451
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
452
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
453
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
454
|
+
----------------------------------------------------------------------------------------------
|
455
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
456
|
+
----------------------------------------------------------------------------------------------
|
457
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
458
|
+
Parameters: {"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}
|
459
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
460
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
461
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
462
|
+
----------------------------------------------------------------------------------------------------------
|
463
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
464
|
+
----------------------------------------------------------------------------------------------------------
|
465
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
466
|
+
Application is not configured properly: 'AWS_ELB_HEALTHCHECK_SECRET_KEY' is not set up, so no health check can ever pass
|
467
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
468
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
469
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
470
|
+
-------------------------------------------------------------------------------------------------
|
471
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
472
|
+
-------------------------------------------------------------------------------------------------
|
473
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
474
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
475
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
476
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
477
|
+
----------------------------------------------------------------------------------------------
|
478
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
479
|
+
----------------------------------------------------------------------------------------------
|
480
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
481
|
+
Parameters: {"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}
|
482
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
483
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
484
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
485
|
+
-----------------------------------------------------------------------------------------------
|
486
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
487
|
+
-----------------------------------------------------------------------------------------------
|
488
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
489
|
+
Parameters: {"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}
|
490
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
491
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
492
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
493
|
+
---------------------------------
|
494
|
+
AwsElbHealthCheckTest: test_truth
|
495
|
+
---------------------------------
|
496
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
497
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
498
|
+
---------------------------------
|
499
|
+
AwsElbHealthCheckTest: test_truth
|
500
|
+
---------------------------------
|
501
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
502
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
503
|
+
-----------------------------------------------------------------------------------------------
|
504
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
505
|
+
-----------------------------------------------------------------------------------------------
|
506
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
507
|
+
Parameters: {"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}
|
508
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
509
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
510
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
511
|
+
-------------------------------------------------------------------------------------------------
|
512
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
513
|
+
-------------------------------------------------------------------------------------------------
|
514
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
515
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
516
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
517
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
518
|
+
----------------------------------------------------------------------------------------------
|
519
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
520
|
+
----------------------------------------------------------------------------------------------
|
521
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
522
|
+
Parameters: {"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}
|
523
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
524
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
525
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
526
|
+
----------------------------------------------------------------------------------------------------------
|
527
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
528
|
+
----------------------------------------------------------------------------------------------------------
|
529
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
530
|
+
Application is not configured properly: 'AWS_ELB_HEALTHCHECK_SECRET_KEY' is not set up, so no health check can ever pass
|
531
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
532
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
533
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
534
|
+
----------------------------------------------------------------------------------------------
|
535
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_success_when_secret_key_is_used
|
536
|
+
----------------------------------------------------------------------------------------------
|
537
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
538
|
+
Parameters: {"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlf"}
|
539
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
540
|
+
[1m[35m (3.6ms)[0m rollback transaction
|
541
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
542
|
+
-------------------------------------------------------------------------------------------------
|
543
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_omitted
|
544
|
+
-------------------------------------------------------------------------------------------------
|
545
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
546
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
547
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
548
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
549
|
+
----------------------------------------------------------------------------------------------------------
|
550
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_501_when_secret_key_has_not_been_configured
|
551
|
+
----------------------------------------------------------------------------------------------------------
|
552
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
553
|
+
Application is not configured properly: 'AWS_ELB_HEALTH_CHECK_SECRET_KEY' is not set up, so no health check can ever pass
|
554
|
+
Completed 501 Not Implemented in 0ms (ActiveRecord: 0.0ms)
|
555
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
556
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
557
|
+
-----------------------------------------------------------------------------------------------
|
558
|
+
AwsElbHealthCheck::HealthChecksControllerTest: test_should_get_failure_when_secret_key_is_wrong
|
559
|
+
-----------------------------------------------------------------------------------------------
|
560
|
+
Processing by AwsElbHealthCheck::HealthChecksController#index as HTML
|
561
|
+
Parameters: {"key"=>"asdlkfjhasdlkfjhasdlkjfhasdlkfjhasdlffoobar"}
|
562
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
563
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
564
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
565
|
+
---------------------------------
|
566
|
+
AwsElbHealthCheckTest: test_truth
|
567
|
+
---------------------------------
|
568
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/404.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|