bot 0.0.1 → 0.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/bot/bot_controller.rb +23 -0
  3. data/lib/bot.rb +7 -1
  4. data/lib/bot/adapter.rb +8 -0
  5. data/lib/bot/adapters/base.rb +15 -0
  6. data/lib/bot/adapters/kik.rb +26 -0
  7. data/lib/bot/adapters/test.rb +19 -0
  8. data/lib/bot/configuration.rb +21 -0
  9. data/lib/bot/engine.rb +4 -0
  10. data/lib/bot/handler.rb +46 -0
  11. data/lib/bot/responder.rb +96 -0
  12. data/lib/bot/responder_chain.rb +15 -0
  13. data/lib/bot/route_extensions.rb +7 -0
  14. data/lib/bot/rspec.rb +23 -0
  15. data/lib/bot/rspec/fixnum_helper.rb +13 -0
  16. data/lib/bot/rspec/matchers.rb +41 -0
  17. data/lib/bot/rspec/syntax.rb +39 -0
  18. data/lib/bot/version.rb +1 -1
  19. data/lib/generators/bot/install/install_generator.rb +24 -0
  20. data/lib/generators/bot/install/templates/application_handler.rb +7 -0
  21. data/lib/generators/bot/install/templates/application_responder.rb +11 -0
  22. data/lib/generators/bot/install/templates/initializer.rb +3 -0
  23. data/lib/generators/bot/responder/responder_generator.rb +25 -0
  24. data/lib/generators/rspec/install_generator.rb +14 -0
  25. data/lib/generators/rspec/responder_generator.rb +14 -0
  26. data/lib/generators/rspec/templates/application_handler_spec.rb +5 -0
  27. data/lib/generators/rspec/templates/responder_spec.rb +17 -0
  28. data/test/dummy/app/bot/application_handler.rb +5 -0
  29. data/test/dummy/app/bot/application_responder.rb +2 -0
  30. data/test/dummy/app/bot/responders/multi.rb +11 -0
  31. data/test/dummy/app/bot/responders/scan.rb +11 -0
  32. data/test/dummy/app/bot/responders/test.rb +11 -0
  33. data/test/dummy/app/bot/responders/text.rb +9 -0
  34. data/test/dummy/config/environments/development.rb +2 -0
  35. data/test/dummy/config/initializers/bot.rb +3 -0
  36. data/test/dummy/config/routes.rb +1 -2
  37. data/test/dummy/db/development.sqlite3 +0 -0
  38. data/test/dummy/db/schema.rb +16 -0
  39. data/test/dummy/db/test.sqlite3 +0 -0
  40. data/test/dummy/log/development.log +4 -0
  41. data/test/dummy/log/test.log +2345 -0
  42. data/test/integration/navigation_test.rb +24 -1
  43. data/test/test_helper.rb +2 -0
  44. metadata +90 -8
  45. data/app/controllers/bot/kik_controller.rb +0 -8
  46. data/config/routes.rb +0 -3
  47. data/lib/bot/message_handler.rb +0 -26
@@ -1,3 +1,3 @@
1
1
  module Bot
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.16"
3
3
  end
@@ -0,0 +1,24 @@
1
+ module Bot
2
+ module Generators
3
+ class InstallGenerator < Rails::Generators::Base
4
+ source_root File.expand_path("../templates", __FILE__)
5
+
6
+ def create_application_responder
7
+ copy_file(
8
+ "application_responder.rb",
9
+ "app/bot/application_responder.rb"
10
+ )
11
+ copy_file(
12
+ "application_handler.rb",
13
+ "app/bot/application_handler.rb"
14
+ )
15
+ copy_file(
16
+ "initializer.rb",
17
+ "config/initializers/bot.rb"
18
+ )
19
+ end
20
+
21
+ hook_for :test_framework
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,7 @@
1
+ class ApplicationHandler < Bot::Handler
2
+ use Responders::ApplicationResponder
3
+
4
+ # def user_for(message)
5
+ # User.find_or_initialize_by(username: message["from"])
6
+ # end
7
+ end
@@ -0,0 +1,11 @@
1
+ class ApplicationResponder < Bot::Responder
2
+ #
3
+ # def can_handle?
4
+ # true
5
+ # end
6
+ #
7
+ # def handle
8
+ # text_response('Hello!')
9
+ # end
10
+ #
11
+ end
@@ -0,0 +1,3 @@
1
+ Bot.configure do |config|
2
+ config.adapter = Bot::Adapter::Kik.new(bot_user: '', bot_token: '')
3
+ end
@@ -0,0 +1,25 @@
1
+ module Bot
2
+ module Generators
3
+ class ResponderGenerator < Rails::Generators::NamedBase
4
+ desc "This generator creates a blank responder in bot/responders"
5
+
6
+ def create_responder
7
+ create_file "app/bot/responders/#{file_name}.rb", <<-FILE
8
+ class Responders::#{class_name} < ApplicationResponder
9
+ #
10
+ # def can_handle?
11
+ # true
12
+ # end
13
+ #
14
+ # def handle
15
+ # text_response('Hello!')
16
+ # end
17
+ #
18
+ end
19
+ FILE
20
+ end
21
+
22
+ hook_for :test_framework
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,14 @@
1
+ module Rspec
2
+ module Generators
3
+ class InstallGenerator < Rails::Generators::NamedBase
4
+ desc "Generate a Handler spec in spec/bot"
5
+
6
+ source_root File.expand_path("../templates", __FILE__)
7
+
8
+ def copy_files
9
+ empty_directory 'spec/bot'
10
+ template "application_handler_spec.rb", "spec/bot/application_handler_spec.rb"
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ module Rspec
2
+ module Generators
3
+ class ResponderGenerator < Rails::Generators::NamedBase
4
+ desc "Generate a Responder spec in spec/bot/responders"
5
+
6
+ source_root File.expand_path("../templates", __FILE__)
7
+
8
+ def copy_files
9
+ empty_directory 'spec/bot/responders'
10
+ template "responder_spec.rb", "spec/bot/responders/#{file_name}_spec.rb"
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,5 @@
1
+ require 'rails_helper'
2
+
3
+ describe "ApplicationResponder" %> do
4
+ pending "add some examples to (or delete) #{__FILE__}"
5
+ end
@@ -0,0 +1,17 @@
1
+ require 'rails_helper'
2
+
3
+ describe <%= "Responders::#{class_name}" %>, type: :responder do
4
+ subject { responder }
5
+
6
+ describe "#can_handle?" do
7
+ subject { responder.can_handle? }
8
+
9
+ pending "add some examples to (or delete) #{__FILE__}"
10
+ end
11
+
12
+ describe "#handle" do
13
+ subject { responder.handle }
14
+
15
+ pending "add some examples to (or delete) #{__FILE__}"
16
+ end
17
+ end
@@ -0,0 +1,5 @@
1
+ class ApplicationHandler < Bot::Handler
2
+ use Responders::Multi
3
+ use Responders::Text
4
+ use Responders::Scan
5
+ end
@@ -0,0 +1,2 @@
1
+ class ApplicationResponder < Bot::Responder
2
+ end
@@ -0,0 +1,11 @@
1
+ class Responders::Multi < ApplicationResponder
2
+ respond_to "scan-data", "text"
3
+
4
+ def can_handle?
5
+ match_message('multi')
6
+ end
7
+
8
+ def handle
9
+ text_response('Hello multi!')
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ class Responders::Scan < ApplicationResponder
2
+ respond_to "scan-data"
3
+
4
+ def can_handle?
5
+ true
6
+ end
7
+
8
+ def handle
9
+ text_response('Hello scan!')
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ class Responders::Test < ApplicationResponder
2
+ #
3
+ # def can_handle?
4
+ # true
5
+ # end
6
+ #
7
+ # def handle
8
+ # text_response('Hello!')
9
+ # end
10
+ #
11
+ end
@@ -0,0 +1,9 @@
1
+ class Responders::Text < ApplicationResponder
2
+ def can_handle?
3
+ true
4
+ end
5
+
6
+ def handle
7
+ text_response('Hello text!')
8
+ end
9
+ end
@@ -36,6 +36,8 @@ Rails.application.configure do
36
36
  # Raises helpful error messages.
37
37
  config.assets.raise_runtime_errors = true
38
38
 
39
+ config.autoload_paths += Dir["#{config.root}/app/bot/configuration/**"]
40
+
39
41
  # Raises error for missing translations
40
42
  # config.action_view.raise_on_missing_translations = true
41
43
  end
@@ -0,0 +1,3 @@
1
+ Bot.configure do |config|
2
+ config.adapter = Bot::Adapter::Test.new
3
+ end
@@ -1,4 +1,3 @@
1
1
  Rails.application.routes.draw do
2
-
3
- mount Bot::Engine => "/bot"
2
+ mount_bot
4
3
  end
@@ -0,0 +1,16 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 0) do
15
+
16
+ end
Binary file
@@ -0,0 +1,4 @@
1
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -88,3 +88,2348 @@ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:15:07 -0500
88
88
  Processing by Bot::KikController#notify as HTML
89
89
  Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
90
90
   (0.1ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+ -------------------
93
+ BotTest: test_truth
94
+ -------------------
95
+  (0.0ms) rollback transaction
96
+  (0.0ms) begin transaction
97
+ ---------------------------
98
+ NavigationTest: test_notify
99
+ ---------------------------
100
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:20:26 -0500
101
+ Processing by Bot::KikController#notify as HTML
102
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
103
+  (0.1ms) rollback transaction
104
+  (0.1ms) begin transaction
105
+ ---------------------------
106
+ NavigationTest: test_notify
107
+ ---------------------------
108
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:22:33 -0500
109
+ Processing by Bot::KikController#notify as HTML
110
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
111
+  (0.1ms) rollback transaction
112
+  (0.1ms) begin transaction
113
+ -------------------
114
+ BotTest: test_truth
115
+ -------------------
116
+  (0.0ms) rollback transaction
117
+  (0.1ms) begin transaction
118
+ ---------------------------
119
+ NavigationTest: test_notify
120
+ ---------------------------
121
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:22:57 -0500
122
+ Processing by Bot::KikController#notify as HTML
123
+ []
124
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
125
+  (0.1ms) rollback transaction
126
+  (0.0ms) begin transaction
127
+ -------------------
128
+ BotTest: test_truth
129
+ -------------------
130
+  (0.0ms) rollback transaction
131
+  (0.2ms) begin transaction
132
+ -------------------
133
+ BotTest: test_truth
134
+ -------------------
135
+  (0.1ms) rollback transaction
136
+  (0.1ms) begin transaction
137
+ ---------------------------
138
+ NavigationTest: test_notify
139
+ ---------------------------
140
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:24:49 -0500
141
+ Processing by Bot::KikController#notify as HTML
142
+ []
143
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
144
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:24:49 -0500
145
+ Processing by Bot::KikController#notify as HTML
146
+ Parameters: {"messages"=>[{"body"=>"Double cup please", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "kik"=>{"messages"=>[{"body"=>"Double cup please", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}]}}
147
+ []
148
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
149
+  (0.1ms) rollback transaction
150
+  (0.1ms) begin transaction
151
+ -------------------
152
+ BotTest: test_truth
153
+ -------------------
154
+  (0.1ms) rollback transaction
155
+  (0.0ms) begin transaction
156
+ ---------------------------
157
+ NavigationTest: test_notify
158
+ ---------------------------
159
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:24:59 -0500
160
+ Processing by Bot::KikController#notify as HTML
161
+ []
162
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
163
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:24:59 -0500
164
+ Processing by Bot::KikController#notify as HTML
165
+ Parameters: {"messages"=>[{"body"=>"Double cup please", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "kik"=>{"messages"=>[{"body"=>"Double cup please", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}]}}
166
+ []
167
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
168
+  (0.1ms) rollback transaction
169
+  (0.1ms) begin transaction
170
+ -------------------
171
+ BotTest: test_truth
172
+ -------------------
173
+  (0.1ms) rollback transaction
174
+  (0.1ms) begin transaction
175
+ ---------------------------
176
+ NavigationTest: test_notify
177
+ ---------------------------
178
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:25:17 -0500
179
+ Processing by Bot::KikController#notify as HTML
180
+ []
181
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
182
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:25:17 -0500
183
+ Processing by Bot::KikController#notify as HTML
184
+ Parameters: {"messages"=>[{"body"=>"Double cup please", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "kik"=>{"messages"=>[{"body"=>"Double cup please", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}]}}
185
+ []
186
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
187
+  (0.2ms) rollback transaction
188
+  (0.2ms) begin transaction
189
+ ---------------------------
190
+ NavigationTest: test_notify
191
+ ---------------------------
192
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:25:36 -0500
193
+ Processing by Bot::KikController#notify as HTML
194
+ []
195
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
196
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-15 14:25:36 -0500
197
+ Processing by Bot::KikController#notify as HTML
198
+ Parameters: {"messages"=>[{"body"=>"Double cup please", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "kik"=>{"messages"=>[{"body"=>"Double cup please", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}]}}
199
+ []
200
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
201
+  (0.1ms) rollback transaction
202
+  (0.1ms) begin transaction
203
+ -------------------
204
+ BotTest: test_truth
205
+ -------------------
206
+  (0.0ms) rollback transaction
207
+  (0.1ms) begin transaction
208
+ -------------------
209
+ BotTest: test_truth
210
+ -------------------
211
+  (0.1ms) rollback transaction
212
+  (0.1ms) begin transaction
213
+ ---------------------------
214
+ NavigationTest: test_notify
215
+ ---------------------------
216
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-18 10:57:34 -0500
217
+ Processing by Bot::KikController#notify as HTML
218
+ []
219
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
220
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-18 10:57:34 -0500
221
+ Processing by Bot::KikController#notify as HTML
222
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}]}
223
+ []
224
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
225
+  (0.1ms) rollback transaction
226
+  (0.2ms) begin transaction
227
+ ---------------------------
228
+ NavigationTest: test_notify
229
+ ---------------------------
230
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-18 10:58:06 -0500
231
+ Processing by Bot::KikController#notify as HTML
232
+ []
233
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
234
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-18 10:58:06 -0500
235
+ Processing by Bot::KikController#notify as HTML
236
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}]}
237
+ []
238
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
239
+  (0.1ms) rollback transaction
240
+  (0.1ms) begin transaction
241
+ -------------------
242
+ BotTest: test_truth
243
+ -------------------
244
+  (0.0ms) rollback transaction
245
+  (0.1ms) begin transaction
246
+ ---------------------------
247
+ NavigationTest: test_notify
248
+ ---------------------------
249
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-18 10:58:15 -0500
250
+ Processing by Bot::KikController#notify as HTML
251
+ []
252
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
253
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-18 10:58:15 -0500
254
+ Processing by Bot::KikController#notify as HTML
255
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}]}
256
+ []
257
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
258
+  (0.1ms) rollback transaction
259
+  (0.0ms) begin transaction
260
+ -------------------
261
+ BotTest: test_truth
262
+ -------------------
263
+  (0.0ms) rollback transaction
264
+  (0.1ms) begin transaction
265
+ ---------------------------
266
+ NavigationTest: test_notify
267
+ ---------------------------
268
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-19 17:12:15 -0500
269
+ Processing by Bot::KikController#notify as HTML
270
+ []
271
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
272
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-19 17:12:15 -0500
273
+ Processing by Bot::KikController#notify as HTML
274
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}]}
275
+ []
276
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
277
+  (0.1ms) rollback transaction
278
+  (0.1ms) begin transaction
279
+ -------------------
280
+ BotTest: test_truth
281
+ -------------------
282
+  (0.1ms) rollback transaction
283
+  (0.2ms) begin transaction
284
+ -------------------
285
+ BotTest: test_truth
286
+ -------------------
287
+  (0.1ms) rollback transaction
288
+  (0.1ms) begin transaction
289
+ ---------------------------
290
+ NavigationTest: test_notify
291
+ ---------------------------
292
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-19 17:31:35 -0500
293
+ Processing by Bot::KikController#notify as HTML
294
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
295
+  (0.1ms) rollback transaction
296
+  (0.1ms) begin transaction
297
+ ---------------------------
298
+ NavigationTest: test_notify
299
+ ---------------------------
300
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-19 17:52:57 -0500
301
+  (0.1ms) rollback transaction
302
+  (0.1ms) begin transaction
303
+ -------------------
304
+ BotTest: test_truth
305
+ -------------------
306
+  (0.0ms) rollback transaction
307
+  (0.1ms) begin transaction
308
+ ---------------------------
309
+ NavigationTest: test_notify
310
+ ---------------------------
311
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-19 18:00:33 -0500
312
+  (0.1ms) rollback transaction
313
+  (0.1ms) begin transaction
314
+ -------------------
315
+ BotTest: test_truth
316
+ -------------------
317
+  (0.2ms) rollback transaction
318
+  (0.1ms) begin transaction
319
+ ---------------------------
320
+ NavigationTest: test_notify
321
+ ---------------------------
322
+ Started POST "/bot/kik-notify" for 127.0.0.1 at 2016-01-19 18:02:58 -0500
323
+  (0.1ms) rollback transaction
324
+  (0.1ms) begin transaction
325
+ -------------------
326
+ BotTest: test_truth
327
+ -------------------
328
+  (0.0ms) rollback transaction
329
+  (0.1ms) begin transaction
330
+ ---------------------------
331
+ NavigationTest: test_notify
332
+ ---------------------------
333
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:03:52 -0500
334
+  (0.1ms) rollback transaction
335
+  (0.1ms) begin transaction
336
+ -------------------
337
+ BotTest: test_truth
338
+ -------------------
339
+  (0.0ms) rollback transaction
340
+  (0.1ms) begin transaction
341
+ -------------------
342
+ BotTest: test_truth
343
+ -------------------
344
+  (0.1ms) rollback transaction
345
+  (0.0ms) begin transaction
346
+ ---------------------------
347
+ NavigationTest: test_notify
348
+ ---------------------------
349
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:04:08 -0500
350
+  (0.1ms) rollback transaction
351
+  (0.1ms) begin transaction
352
+ -------------------
353
+ BotTest: test_truth
354
+ -------------------
355
+  (0.1ms) rollback transaction
356
+  (0.1ms) begin transaction
357
+ ---------------------------
358
+ NavigationTest: test_notify
359
+ ---------------------------
360
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:04:34 -0500
361
+  (0.1ms) rollback transaction
362
+  (0.1ms) begin transaction
363
+ ---------------------------
364
+ NavigationTest: test_notify
365
+ ---------------------------
366
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:04:48 -0500
367
+ Processing by Bot::KikController#notify as HTML
368
+ Parameters: {"bot"=>ApplicationHandler}
369
+ []
370
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
371
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:04:48 -0500
372
+ Processing by Bot::KikController#notify as HTML
373
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
374
+ []
375
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
376
+  (0.1ms) rollback transaction
377
+  (0.0ms) begin transaction
378
+ -------------------
379
+ BotTest: test_truth
380
+ -------------------
381
+  (0.0ms) rollback transaction
382
+  (0.1ms) begin transaction
383
+ -------------------
384
+ BotTest: test_truth
385
+ -------------------
386
+  (0.1ms) rollback transaction
387
+  (0.1ms) begin transaction
388
+ ---------------------------
389
+ NavigationTest: test_notify
390
+ ---------------------------
391
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:09:22 -0500
392
+ Processing by Bot::KikController#notify as HTML
393
+ Parameters: {"bot"=>ApplicationHandler}
394
+ Using ApplicationHandler
395
+ []
396
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
397
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:09:22 -0500
398
+ Processing by Bot::KikController#notify as HTML
399
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
400
+ Using ApplicationHandler
401
+ []
402
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
403
+  (0.1ms) rollback transaction
404
+  (0.1ms) begin transaction
405
+ ---------------------------
406
+ NavigationTest: test_notify
407
+ ---------------------------
408
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:11:11 -0500
409
+ Processing by Bot::KikController#notify as HTML
410
+ Parameters: {"bot"=>ApplicationHandler}
411
+ Using ApplicationHandler
412
+ []
413
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
414
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:11:11 -0500
415
+ Processing by Bot::KikController#notify as HTML
416
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
417
+ Using ApplicationHandler
418
+ []
419
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
420
+  (0.1ms) rollback transaction
421
+  (0.1ms) begin transaction
422
+ -------------------
423
+ BotTest: test_truth
424
+ -------------------
425
+  (0.1ms) rollback transaction
426
+  (0.1ms) begin transaction
427
+ -------------------
428
+ BotTest: test_truth
429
+ -------------------
430
+  (0.0ms) rollback transaction
431
+  (0.1ms) begin transaction
432
+ ---------------------------
433
+ NavigationTest: test_notify
434
+ ---------------------------
435
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:11:24 -0500
436
+ Processing by Bot::KikController#notify as HTML
437
+ Parameters: {"bot"=>ApplicationHandler}
438
+ Using ApplicationHandler
439
+ []
440
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
441
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:11:24 -0500
442
+ Processing by Bot::KikController#notify as HTML
443
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
444
+ Using ApplicationHandler
445
+ []
446
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
447
+  (0.1ms) rollback transaction
448
+  (0.1ms) begin transaction
449
+ ---------------------------
450
+ NavigationTest: test_notify
451
+ ---------------------------
452
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:11:39 -0500
453
+ Processing by Bot::KikController#notify as HTML
454
+ Parameters: {"bot"=>ApplicationHandler}
455
+ Using ApplicationHandler
456
+ []
457
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
458
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:11:39 -0500
459
+ Processing by Bot::KikController#notify as HTML
460
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
461
+ Using ApplicationHandler
462
+ []
463
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
464
+  (0.1ms) rollback transaction
465
+  (0.0ms) begin transaction
466
+ -------------------
467
+ BotTest: test_truth
468
+ -------------------
469
+  (0.0ms) rollback transaction
470
+  (0.1ms) begin transaction
471
+ ---------------------------
472
+ NavigationTest: test_notify
473
+ ---------------------------
474
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:11:49 -0500
475
+ Processing by Bot::KikController#notify as HTML
476
+ Parameters: {"bot"=>ApplicationHandler}
477
+ Using ApplicationHandler
478
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
479
+  (0.1ms) begin transaction
480
+ ---------------------------
481
+ NavigationTest: test_notify
482
+ ---------------------------
483
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:12:16 -0500
484
+ Processing by Bot::KikController#notify as HTML
485
+ Parameters: {"bot"=>ApplicationHandler}
486
+ Using ApplicationHandler
487
+ []
488
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
489
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:12:17 -0500
490
+ Processing by Bot::KikController#notify as HTML
491
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
492
+ Using ApplicationHandler
493
+ []
494
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
495
+  (0.1ms) rollback transaction
496
+  (0.0ms) begin transaction
497
+ -------------------
498
+ BotTest: test_truth
499
+ -------------------
500
+  (0.0ms) rollback transaction
501
+  (0.1ms) begin transaction
502
+ -------------------
503
+ BotTest: test_truth
504
+ -------------------
505
+  (0.0ms) rollback transaction
506
+  (0.0ms) begin transaction
507
+ ---------------------------
508
+ NavigationTest: test_notify
509
+ ---------------------------
510
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:12:29 -0500
511
+ Processing by Bot::KikController#notify as HTML
512
+ Parameters: {"bot"=>ApplicationHandler}
513
+ Using ApplicationHandler
514
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
515
+  (0.1ms) begin transaction
516
+ -------------------
517
+ BotTest: test_truth
518
+ -------------------
519
+  (0.0ms) rollback transaction
520
+  (0.0ms) begin transaction
521
+ ---------------------------
522
+ NavigationTest: test_notify
523
+ ---------------------------
524
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:13:21 -0500
525
+ Processing by Bot::KikController#notify as HTML
526
+ Parameters: {"bot"=>ApplicationHandler}
527
+ Using ApplicationHandler
528
+ []
529
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
530
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:13:21 -0500
531
+ Processing by Bot::KikController#notify as HTML
532
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
533
+ Using ApplicationHandler
534
+ []
535
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
536
+  (0.1ms) rollback transaction
537
+  (0.1ms) begin transaction
538
+ ---------------------------
539
+ NavigationTest: test_notify
540
+ ---------------------------
541
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:14:38 -0500
542
+ Processing by Bot::KikController#notify as HTML
543
+ Parameters: {"bot"=>ApplicationHandler}
544
+ Using ApplicationHandler
545
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
546
+  (0.1ms) begin transaction
547
+ ---------------------------
548
+ NavigationTest: test_notify
549
+ ---------------------------
550
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:14:53 -0500
551
+ Processing by Bot::KikController#notify as HTML
552
+ Parameters: {"bot"=>ApplicationHandler}
553
+ Using ApplicationHandler
554
+ []
555
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
556
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:14:53 -0500
557
+ Processing by Bot::KikController#notify as HTML
558
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
559
+ Using ApplicationHandler
560
+ []
561
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
562
+  (0.1ms) rollback transaction
563
+  (0.0ms) begin transaction
564
+ -------------------
565
+ BotTest: test_truth
566
+ -------------------
567
+  (0.0ms) rollback transaction
568
+  (0.1ms) begin transaction
569
+ ---------------------------
570
+ NavigationTest: test_notify
571
+ ---------------------------
572
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:15:43 -0500
573
+ Processing by Bot::KikController#notify as HTML
574
+ Parameters: {"bot"=>ApplicationHandler}
575
+ Using ApplicationHandler
576
+ []
577
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
578
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:15:43 -0500
579
+ Processing by Bot::KikController#notify as HTML
580
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
581
+ Using ApplicationHandler
582
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
583
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
584
+  (0.1ms) select sqlite_version(*)
585
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
586
+  (0.1ms) SELECT version FROM "schema_migrations"
587
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
588
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
589
+  (0.1ms) begin transaction
590
+ -------------------
591
+ BotTest: test_truth
592
+ -------------------
593
+  (0.0ms) rollback transaction
594
+  (0.0ms) begin transaction
595
+ ---------------------------
596
+ NavigationTest: test_notify
597
+ ---------------------------
598
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:16:08 -0500
599
+ Processing by Bot::KikController#notify as HTML
600
+ Parameters: {"bot"=>ApplicationHandler}
601
+ Using ApplicationHandler
602
+ []
603
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
604
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:16:08 -0500
605
+ Processing by Bot::KikController#notify as HTML
606
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
607
+ Using ApplicationHandler
608
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
609
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
610
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
611
+  (0.1ms) select sqlite_version(*)
612
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
613
+  (0.2ms) SELECT version FROM "schema_migrations"
614
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
615
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
616
+  (0.1ms) begin transaction
617
+ -------------------
618
+ BotTest: test_truth
619
+ -------------------
620
+  (0.0ms) rollback transaction
621
+  (0.0ms) begin transaction
622
+ ---------------------------
623
+ NavigationTest: test_notify
624
+ ---------------------------
625
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:16:23 -0500
626
+ Processing by Bot::KikController#notify as HTML
627
+ Parameters: {"bot"=>ApplicationHandler}
628
+ Using ApplicationHandler
629
+ []
630
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
631
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:16:23 -0500
632
+ Processing by Bot::KikController#notify as HTML
633
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
634
+ Using ApplicationHandler
635
+ []
636
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
637
+  (0.1ms) rollback transaction
638
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
639
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
640
+  (0.1ms) select sqlite_version(*)
641
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
642
+  (0.1ms) SELECT version FROM "schema_migrations"
643
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
644
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
645
+  (0.1ms) begin transaction
646
+ ---------------------------
647
+ NavigationTest: test_notify
648
+ ---------------------------
649
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:16:35 -0500
650
+ Processing by Bot::KikController#notify as HTML
651
+ Parameters: {"bot"=>ApplicationHandler}
652
+ Using ApplicationHandler
653
+ []
654
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
655
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:16:35 -0500
656
+ Processing by Bot::KikController#notify as HTML
657
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
658
+ Using ApplicationHandler
659
+ []
660
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
661
+  (0.1ms) rollback transaction
662
+  (0.0ms) begin transaction
663
+ -------------------
664
+ BotTest: test_truth
665
+ -------------------
666
+  (0.0ms) rollback transaction
667
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
668
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
669
+  (0.1ms) select sqlite_version(*)
670
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
671
+  (0.1ms) SELECT version FROM "schema_migrations"
672
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
673
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
674
+  (0.1ms) begin transaction
675
+ ---------------------------
676
+ NavigationTest: test_notify
677
+ ---------------------------
678
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:16:54 -0500
679
+ Processing by Bot::KikController#notify as HTML
680
+ Parameters: {"bot"=>ApplicationHandler}
681
+ Using ApplicationHandler
682
+ []
683
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
684
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:16:54 -0500
685
+ Processing by Bot::KikController#notify as HTML
686
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
687
+ Using ApplicationHandler
688
+ []
689
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
690
+  (0.1ms) rollback transaction
691
+  (0.0ms) begin transaction
692
+ -------------------
693
+ BotTest: test_truth
694
+ -------------------
695
+  (0.0ms) rollback transaction
696
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
697
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
698
+  (0.1ms) select sqlite_version(*)
699
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
700
+  (0.1ms) SELECT version FROM "schema_migrations"
701
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
702
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
703
+  (0.1ms) begin transaction
704
+ ---------------------------
705
+ NavigationTest: test_notify
706
+ ---------------------------
707
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:19:47 -0500
708
+ Processing by Bot::KikController#notify as HTML
709
+ Parameters: {"bot"=>ApplicationHandler}
710
+ Using ApplicationHandler
711
+ []
712
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
713
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-19 18:19:47 -0500
714
+ Processing by Bot::KikController#notify as HTML
715
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
716
+ Using ApplicationHandler
717
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
718
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
719
+  (0.1ms) rollback transaction
720
+  (0.1ms) begin transaction
721
+ -------------------
722
+ BotTest: test_truth
723
+ -------------------
724
+  (0.2ms) rollback transaction
725
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
726
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
727
+  (0.1ms) select sqlite_version(*)
728
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
729
+  (0.1ms) SELECT version FROM "schema_migrations"
730
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
731
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
732
+  (0.2ms) begin transaction
733
+ -------------------
734
+ BotTest: test_truth
735
+ -------------------
736
+  (0.0ms) rollback transaction
737
+  (0.0ms) begin transaction
738
+ ---------------------------
739
+ NavigationTest: test_notify
740
+ ---------------------------
741
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 11:02:46 -0500
742
+ Processing by Bot::KikController#notify as HTML
743
+ Parameters: {"bot"=>ApplicationHandler}
744
+ Using ApplicationHandler
745
+ []
746
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
747
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 11:02:46 -0500
748
+ Processing by Bot::KikController#notify as HTML
749
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
750
+ Using ApplicationHandler
751
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
752
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
753
+  (0.2ms) rollback transaction
754
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
755
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
756
+  (0.1ms) select sqlite_version(*)
757
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
758
+  (0.1ms) SELECT version FROM "schema_migrations"
759
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
760
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
761
+  (0.1ms) begin transaction
762
+ -------------------
763
+ BotTest: test_truth
764
+ -------------------
765
+  (0.0ms) rollback transaction
766
+  (0.0ms) begin transaction
767
+ ---------------------------
768
+ NavigationTest: test_notify
769
+ ---------------------------
770
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:18:25 -0500
771
+ Processing by Bot::KikController#notify as HTML
772
+ Parameters: {"bot"=>ApplicationHandler}
773
+ Using ApplicationHandler
774
+ []
775
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
776
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:18:25 -0500
777
+ Processing by Bot::KikController#notify as HTML
778
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
779
+ Using ApplicationHandler
780
+ []
781
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
782
+  (0.1ms) rollback transaction
783
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
784
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
785
+  (0.1ms) select sqlite_version(*)
786
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
787
+  (0.1ms) SELECT version FROM "schema_migrations"
788
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
789
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
790
+  (0.1ms) begin transaction
791
+ -------------------
792
+ BotTest: test_truth
793
+ -------------------
794
+  (0.1ms) rollback transaction
795
+  (0.0ms) begin transaction
796
+ ---------------------------
797
+ NavigationTest: test_notify
798
+ ---------------------------
799
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:19:45 -0500
800
+  (0.3ms) rollback transaction
801
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
802
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
803
+  (0.1ms) select sqlite_version(*)
804
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
805
+  (0.1ms) SELECT version FROM "schema_migrations"
806
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
807
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
808
+  (0.1ms) begin transaction
809
+ -------------------
810
+ BotTest: test_truth
811
+ -------------------
812
+  (0.0ms) rollback transaction
813
+  (0.1ms) begin transaction
814
+ ---------------------------
815
+ NavigationTest: test_notify
816
+ ---------------------------
817
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:19:50 -0500
818
+ Processing by Bot::KikController#notify as HTML
819
+ Parameters: {"bot"=>ApplicationHandler}
820
+ Using ApplicationHandler
821
+ []
822
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
823
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:19:50 -0500
824
+ Processing by Bot::KikController#notify as HTML
825
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
826
+ Using ApplicationHandler
827
+ []
828
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
829
+  (0.2ms) rollback transaction
830
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
831
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
832
+  (0.1ms) select sqlite_version(*)
833
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
834
+  (0.1ms) SELECT version FROM "schema_migrations"
835
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
836
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
837
+  (0.1ms) begin transaction
838
+ -------------------
839
+ BotTest: test_truth
840
+ -------------------
841
+  (0.0ms) rollback transaction
842
+  (0.0ms) begin transaction
843
+ ---------------------------
844
+ NavigationTest: test_notify
845
+ ---------------------------
846
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:22:03 -0500
847
+ Processing by Bot::KikController#notify as HTML
848
+ Parameters: {"bot"=>ApplicationHandler}
849
+ Using ApplicationHandler
850
+ []
851
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
852
+  (0.1ms) rollback transaction
853
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
854
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
855
+  (0.1ms) select sqlite_version(*)
856
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
857
+  (0.1ms) SELECT version FROM "schema_migrations"
858
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
859
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
860
+  (0.2ms) begin transaction
861
+ -------------------
862
+ BotTest: test_truth
863
+ -------------------
864
+  (0.0ms) rollback transaction
865
+  (0.0ms) begin transaction
866
+ ---------------------------
867
+ NavigationTest: test_notify
868
+ ---------------------------
869
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:22:27 -0500
870
+ Processing by Bot::KikController#notify as HTML
871
+ Parameters: {"bot"=>ApplicationHandler}
872
+ Using ApplicationHandler
873
+ []
874
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
875
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:22:27 -0500
876
+ Processing by Bot::KikController#notify as HTML
877
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
878
+ Using ApplicationHandler
879
+ []
880
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
881
+  (0.1ms) rollback transaction
882
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
883
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
884
+  (0.1ms) select sqlite_version(*)
885
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
886
+  (0.1ms) SELECT version FROM "schema_migrations"
887
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
888
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
889
+  (0.1ms) begin transaction
890
+ ---------------------------
891
+ NavigationTest: test_notify
892
+ ---------------------------
893
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:23:40 -0500
894
+ Processing by Bot::KikController#notify as HTML
895
+ Parameters: {"bot"=>ApplicationHandler}
896
+ Using ApplicationHandler
897
+ []
898
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
899
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:23:40 -0500
900
+ Processing by Bot::KikController#notify as HTML
901
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
902
+ Using ApplicationHandler
903
+ []
904
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
905
+  (0.1ms) rollback transaction
906
+  (0.0ms) begin transaction
907
+ -------------------
908
+ BotTest: test_truth
909
+ -------------------
910
+  (0.0ms) rollback transaction
911
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
912
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
913
+  (0.1ms) select sqlite_version(*)
914
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
915
+  (0.1ms) SELECT version FROM "schema_migrations"
916
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
917
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
918
+  (0.1ms) begin transaction
919
+ -------------------
920
+ BotTest: test_truth
921
+ -------------------
922
+  (0.1ms) rollback transaction
923
+  (0.1ms) begin transaction
924
+ ---------------------------
925
+ NavigationTest: test_notify
926
+ ---------------------------
927
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:24:17 -0500
928
+ Processing by Bot::KikController#notify as HTML
929
+ Parameters: {"bot"=>ApplicationHandler}
930
+ Using ApplicationHandler
931
+ []
932
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
933
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:24:17 -0500
934
+ Processing by Bot::KikController#notify as HTML
935
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
936
+ Using ApplicationHandler
937
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
938
+
939
+
940
+
941
+ Sending:
942
+
943
+ [{"type":"text","to":"bnmrrs","body":"Hello!","typeTime":0}]
944
+
945
+
946
+
947
+
948
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
949
+  (0.1ms) rollback transaction
950
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
951
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
952
+  (0.1ms) select sqlite_version(*)
953
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
954
+  (0.1ms) SELECT version FROM "schema_migrations"
955
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
956
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
957
+  (0.1ms) begin transaction
958
+ -------------------
959
+ BotTest: test_truth
960
+ -------------------
961
+  (0.0ms) rollback transaction
962
+  (0.0ms) begin transaction
963
+ ---------------------------
964
+ NavigationTest: test_notify
965
+ ---------------------------
966
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:26:27 -0500
967
+ Processing by Bot::KikController#notify as HTML
968
+ Parameters: {"bot"=>ApplicationHandler}
969
+ Using ApplicationHandler
970
+ []
971
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
972
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:26:27 -0500
973
+ Processing by Bot::KikController#notify as HTML
974
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
975
+ Using ApplicationHandler
976
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
977
+
978
+
979
+
980
+ Sending:
981
+
982
+ [{"type":"text","to":"bnmrrs","body":"Hello!","typeTime":0}]
983
+
984
+
985
+
986
+
987
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
988
+  (0.1ms) rollback transaction
989
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
990
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
991
+  (0.1ms) select sqlite_version(*)
992
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
993
+  (0.1ms) SELECT version FROM "schema_migrations"
994
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
995
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
996
+  (0.2ms) begin transaction
997
+ -------------------
998
+ BotTest: test_truth
999
+ -------------------
1000
+  (0.1ms) rollback transaction
1001
+  (0.1ms) begin transaction
1002
+ ---------------------------
1003
+ NavigationTest: test_notify
1004
+ ---------------------------
1005
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:27:11 -0500
1006
+ Processing by Bot::KikController#notify as HTML
1007
+ Parameters: {"bot"=>ApplicationHandler}
1008
+ Using ApplicationHandler
1009
+ []
1010
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1011
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:27:11 -0500
1012
+ Processing by Bot::KikController#notify as HTML
1013
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1014
+ Using ApplicationHandler
1015
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1016
+
1017
+
1018
+
1019
+ Sending:
1020
+
1021
+ [{"type":"text","to":"bnmrrs","body":"Hello!","typeTime":0}]
1022
+
1023
+
1024
+
1025
+
1026
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1027
+  (0.1ms) rollback transaction
1028
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1029
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1030
+  (0.1ms) select sqlite_version(*)
1031
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1032
+  (0.1ms) SELECT version FROM "schema_migrations"
1033
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1034
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1035
+  (0.1ms) begin transaction
1036
+ ---------------------------
1037
+ NavigationTest: test_notify
1038
+ ---------------------------
1039
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:49:45 -0500
1040
+ Processing by Bot::KikController#notify as HTML
1041
+ Parameters: {"bot"=>ApplicationHandler}
1042
+ Using ApplicationHandler
1043
+ []
1044
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1045
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:49:45 -0500
1046
+ Processing by Bot::KikController#notify as HTML
1047
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1048
+ Using ApplicationHandler
1049
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1050
+
1051
+
1052
+
1053
+ Sending:
1054
+
1055
+ [{"type":"text","to":"bnmrrs","body":"Hello!","typeTime":0}]
1056
+
1057
+
1058
+
1059
+
1060
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1061
+  (0.1ms) rollback transaction
1062
+  (0.0ms) begin transaction
1063
+ -------------------
1064
+ BotTest: test_truth
1065
+ -------------------
1066
+  (0.0ms) rollback transaction
1067
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1068
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1069
+  (0.1ms) select sqlite_version(*)
1070
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1071
+  (0.1ms) SELECT version FROM "schema_migrations"
1072
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1073
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1074
+  (0.2ms) begin transaction
1075
+ -------------------
1076
+ BotTest: test_truth
1077
+ -------------------
1078
+  (0.1ms) rollback transaction
1079
+  (0.0ms) begin transaction
1080
+ ---------------------------
1081
+ NavigationTest: test_notify
1082
+ ---------------------------
1083
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:52:39 -0500
1084
+ Processing by Bot::KikController#notify as HTML
1085
+ Parameters: {"bot"=>ApplicationHandler}
1086
+ Using ApplicationHandler
1087
+ []
1088
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1089
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:52:39 -0500
1090
+ Processing by Bot::KikController#notify as HTML
1091
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1092
+ Using ApplicationHandler
1093
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1094
+
1095
+
1096
+
1097
+ Sending:
1098
+
1099
+ [{"type":"text","to":"bnmrrs","body":"Hello!","typeTime":0}]
1100
+
1101
+
1102
+
1103
+
1104
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
1105
+  (0.1ms) rollback transaction
1106
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1107
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1108
+  (0.1ms) select sqlite_version(*)
1109
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1110
+  (0.1ms) SELECT version FROM "schema_migrations"
1111
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1112
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1113
+  (0.1ms) begin transaction
1114
+ ---------------------------
1115
+ NavigationTest: test_notify
1116
+ ---------------------------
1117
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:55:18 -0500
1118
+ Processing by Bot::KikController#notify as HTML
1119
+ Parameters: {"bot"=>ApplicationHandler}
1120
+ Using ApplicationHandler
1121
+ []
1122
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1123
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:55:18 -0500
1124
+ Processing by Bot::KikController#notify as HTML
1125
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1126
+ Using ApplicationHandler
1127
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1128
+
1129
+
1130
+
1131
+ Sending:
1132
+
1133
+ [{"type":"text","to":"bnmrrs","body":"Hello!","typeTime":0}]
1134
+
1135
+
1136
+
1137
+
1138
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
1139
+  (0.1ms) rollback transaction
1140
+  (0.0ms) begin transaction
1141
+ -------------------
1142
+ BotTest: test_truth
1143
+ -------------------
1144
+  (0.0ms) rollback transaction
1145
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1146
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1147
+  (0.1ms) select sqlite_version(*)
1148
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1149
+  (0.1ms) SELECT version FROM "schema_migrations"
1150
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1151
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1152
+  (0.2ms) begin transaction
1153
+ ---------------------------
1154
+ NavigationTest: test_notify
1155
+ ---------------------------
1156
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:57:01 -0500
1157
+ Processing by Bot::KikController#notify as HTML
1158
+ Parameters: {"bot"=>ApplicationHandler}
1159
+ Using ApplicationHandler
1160
+ []
1161
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1162
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:57:01 -0500
1163
+ Processing by Bot::KikController#notify as HTML
1164
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1165
+ Using ApplicationHandler
1166
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1167
+
1168
+
1169
+
1170
+ Sending:
1171
+
1172
+ [{"type":"text","to":"bnmrrs","body":"Hello!","typeTime":0}]
1173
+
1174
+
1175
+
1176
+
1177
+ Completed 500 Internal Server Error in 1155ms (ActiveRecord: 0.0ms)
1178
+  (0.1ms) rollback transaction
1179
+  (0.1ms) begin transaction
1180
+ -------------------
1181
+ BotTest: test_truth
1182
+ -------------------
1183
+  (0.1ms) rollback transaction
1184
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1185
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1186
+  (0.1ms) select sqlite_version(*)
1187
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1188
+  (0.1ms) SELECT version FROM "schema_migrations"
1189
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1190
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1191
+  (0.1ms) begin transaction
1192
+ ---------------------------
1193
+ NavigationTest: test_notify
1194
+ ---------------------------
1195
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:57:40 -0500
1196
+ Processing by Bot::KikController#notify as HTML
1197
+ Parameters: {"bot"=>ApplicationHandler}
1198
+ Using ApplicationHandler
1199
+ []
1200
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1201
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:57:40 -0500
1202
+ Processing by Bot::KikController#notify as HTML
1203
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1204
+ Using ApplicationHandler
1205
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1206
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1207
+  (0.1ms) rollback transaction
1208
+  (0.1ms) begin transaction
1209
+ -------------------
1210
+ BotTest: test_truth
1211
+ -------------------
1212
+  (0.0ms) rollback transaction
1213
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1214
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1215
+  (0.1ms) select sqlite_version(*)
1216
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1217
+  (0.1ms) SELECT version FROM "schema_migrations"
1218
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1219
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1220
+  (0.1ms) begin transaction
1221
+ -------------------
1222
+ BotTest: test_truth
1223
+ -------------------
1224
+  (0.0ms) rollback transaction
1225
+  (0.1ms) begin transaction
1226
+ ---------------------------
1227
+ NavigationTest: test_notify
1228
+ ---------------------------
1229
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:59:32 -0500
1230
+ Processing by Bot::KikController#notify as HTML
1231
+ Parameters: {"bot"=>ApplicationHandler}
1232
+ Using ApplicationHandler
1233
+ []
1234
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1235
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 13:59:32 -0500
1236
+ Processing by Bot::KikController#notify as HTML
1237
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1238
+ Using ApplicationHandler
1239
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1240
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1241
+  (0.1ms) rollback transaction
1242
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1243
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1244
+  (0.1ms) select sqlite_version(*)
1245
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1246
+  (0.1ms) SELECT version FROM "schema_migrations"
1247
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1248
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1249
+  (0.1ms) begin transaction
1250
+ ---------------------------
1251
+ NavigationTest: test_notify
1252
+ ---------------------------
1253
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:01:13 -0500
1254
+ Processing by Bot::KikController#notify as HTML
1255
+ Parameters: {"bot"=>ApplicationHandler}
1256
+ Using ApplicationHandler
1257
+ []
1258
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1259
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:01:13 -0500
1260
+ Processing by Bot::KikController#notify as HTML
1261
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1262
+ Using ApplicationHandler
1263
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1264
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1265
+  (0.1ms) rollback transaction
1266
+  (0.0ms) begin transaction
1267
+ -------------------
1268
+ BotTest: test_truth
1269
+ -------------------
1270
+  (0.0ms) rollback transaction
1271
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1272
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1273
+  (0.1ms) select sqlite_version(*)
1274
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1275
+  (0.1ms) SELECT version FROM "schema_migrations"
1276
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1277
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1278
+  (0.1ms) begin transaction
1279
+ ---------------------------
1280
+ NavigationTest: test_notify
1281
+ ---------------------------
1282
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:02:10 -0500
1283
+ Processing by Bot::KikController#notify as HTML
1284
+ Parameters: {"bot"=>ApplicationHandler}
1285
+ Using ApplicationHandler
1286
+ []
1287
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1288
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:02:10 -0500
1289
+ Processing by Bot::KikController#notify as HTML
1290
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1291
+ Using ApplicationHandler
1292
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1293
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1294
+  (0.1ms) rollback transaction
1295
+  (0.1ms) begin transaction
1296
+ -------------------
1297
+ BotTest: test_truth
1298
+ -------------------
1299
+  (0.1ms) rollback transaction
1300
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1301
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1302
+  (0.1ms) select sqlite_version(*)
1303
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1304
+  (0.1ms) SELECT version FROM "schema_migrations"
1305
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1306
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1307
+  (0.2ms) begin transaction
1308
+ -------------------
1309
+ BotTest: test_truth
1310
+ -------------------
1311
+  (0.1ms) rollback transaction
1312
+  (0.1ms) begin transaction
1313
+ ---------------------------
1314
+ NavigationTest: test_notify
1315
+ ---------------------------
1316
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:02:27 -0500
1317
+ Processing by Bot::KikController#notify as HTML
1318
+ Parameters: {"bot"=>ApplicationHandler}
1319
+ Using ApplicationHandler
1320
+ []
1321
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1322
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:02:27 -0500
1323
+ Processing by Bot::KikController#notify as HTML
1324
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1325
+ Using ApplicationHandler
1326
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1327
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1328
+  (0.1ms) rollback transaction
1329
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1330
+  (4.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1331
+  (0.1ms) select sqlite_version(*)
1332
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1333
+  (0.1ms) SELECT version FROM "schema_migrations"
1334
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1335
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1336
+  (0.1ms) begin transaction
1337
+ ---------------------------
1338
+ NavigationTest: test_notify
1339
+ ---------------------------
1340
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:03:31 -0500
1341
+ Processing by Bot::KikController#notify as HTML
1342
+ Parameters: {"bot"=>ApplicationHandler}
1343
+ Using ApplicationHandler
1344
+ []
1345
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1346
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:03:31 -0500
1347
+ Processing by Bot::KikController#notify as HTML
1348
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1349
+ Using ApplicationHandler
1350
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1351
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1352
+  (0.1ms) rollback transaction
1353
+  (0.1ms) begin transaction
1354
+ -------------------
1355
+ BotTest: test_truth
1356
+ -------------------
1357
+  (0.0ms) rollback transaction
1358
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1359
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1360
+  (0.1ms) select sqlite_version(*)
1361
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1362
+  (0.1ms) SELECT version FROM "schema_migrations"
1363
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1364
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1365
+  (0.1ms) begin transaction
1366
+ -------------------
1367
+ BotTest: test_truth
1368
+ -------------------
1369
+  (0.1ms) rollback transaction
1370
+  (0.1ms) begin transaction
1371
+ ---------------------------
1372
+ NavigationTest: test_notify
1373
+ ---------------------------
1374
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:03:43 -0500
1375
+ Processing by Bot::KikController#notify as HTML
1376
+ Parameters: {"bot"=>ApplicationHandler}
1377
+ Using ApplicationHandler
1378
+ []
1379
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1380
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:03:43 -0500
1381
+ Processing by Bot::KikController#notify as HTML
1382
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1383
+ Using ApplicationHandler
1384
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1385
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1386
+  (0.1ms) rollback transaction
1387
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1388
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1389
+  (0.1ms) select sqlite_version(*)
1390
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1391
+  (0.1ms) SELECT version FROM "schema_migrations"
1392
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1393
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1394
+  (0.1ms) begin transaction
1395
+ -------------------
1396
+ BotTest: test_truth
1397
+ -------------------
1398
+  (0.1ms) rollback transaction
1399
+  (0.1ms) begin transaction
1400
+ ---------------------------
1401
+ NavigationTest: test_notify
1402
+ ---------------------------
1403
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:04:20 -0500
1404
+ Processing by Bot::KikController#notify as HTML
1405
+ Parameters: {"bot"=>ApplicationHandler}
1406
+ Using ApplicationHandler
1407
+ []
1408
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1409
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:04:20 -0500
1410
+ Processing by Bot::KikController#notify as HTML
1411
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1412
+ Using ApplicationHandler
1413
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1414
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1415
+  (0.1ms) rollback transaction
1416
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1417
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1418
+  (0.1ms) select sqlite_version(*)
1419
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1420
+  (0.1ms) SELECT version FROM "schema_migrations"
1421
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1422
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1423
+  (0.1ms) begin transaction
1424
+ ---------------------------
1425
+ NavigationTest: test_notify
1426
+ ---------------------------
1427
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:04:29 -0500
1428
+ Processing by Bot::KikController#notify as HTML
1429
+ Parameters: {"bot"=>ApplicationHandler}
1430
+ Using ApplicationHandler
1431
+ []
1432
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1433
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:04:29 -0500
1434
+ Processing by Bot::KikController#notify as HTML
1435
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1436
+ Using ApplicationHandler
1437
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1438
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1439
+  (0.1ms) rollback transaction
1440
+  (0.1ms) begin transaction
1441
+ -------------------
1442
+ BotTest: test_truth
1443
+ -------------------
1444
+  (0.1ms) rollback transaction
1445
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1446
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1447
+  (0.1ms) select sqlite_version(*)
1448
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1449
+  (0.1ms) SELECT version FROM "schema_migrations"
1450
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1451
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1452
+  (0.1ms) begin transaction
1453
+ ---------------------------
1454
+ NavigationTest: test_notify
1455
+ ---------------------------
1456
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:05:44 -0500
1457
+ Processing by Bot::KikController#notify as HTML
1458
+ Parameters: {"bot"=>ApplicationHandler}
1459
+ Using ApplicationHandler
1460
+ []
1461
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1462
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:05:44 -0500
1463
+ Processing by Bot::KikController#notify as HTML
1464
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1465
+ Using ApplicationHandler
1466
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1467
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1468
+  (0.3ms) rollback transaction
1469
+  (0.1ms) begin transaction
1470
+ -------------------
1471
+ BotTest: test_truth
1472
+ -------------------
1473
+  (0.0ms) rollback transaction
1474
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1475
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1476
+  (0.1ms) select sqlite_version(*)
1477
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1478
+  (0.2ms) SELECT version FROM "schema_migrations"
1479
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1480
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1481
+  (0.1ms) begin transaction
1482
+ -------------------
1483
+ BotTest: test_truth
1484
+ -------------------
1485
+  (0.0ms) rollback transaction
1486
+  (0.1ms) begin transaction
1487
+ ---------------------------
1488
+ NavigationTest: test_notify
1489
+ ---------------------------
1490
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:06:17 -0500
1491
+ Processing by Bot::KikController#notify as HTML
1492
+ Parameters: {"bot"=>ApplicationHandler}
1493
+ Using ApplicationHandler
1494
+ []
1495
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1496
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 14:06:17 -0500
1497
+ Processing by Bot::KikController#notify as HTML
1498
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1499
+ Using ApplicationHandler
1500
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1501
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1502
+  (0.1ms) rollback transaction
1503
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1504
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1505
+  (0.1ms) select sqlite_version(*)
1506
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1507
+  (0.1ms) SELECT version FROM "schema_migrations"
1508
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1509
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1510
+  (0.1ms) begin transaction
1511
+ -------------------
1512
+ BotTest: test_truth
1513
+ -------------------
1514
+  (0.0ms) rollback transaction
1515
+  (0.0ms) begin transaction
1516
+ ---------------------------
1517
+ NavigationTest: test_notify
1518
+ ---------------------------
1519
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 15:13:32 -0500
1520
+  (0.1ms) rollback transaction
1521
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1522
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1523
+  (0.1ms) select sqlite_version(*)
1524
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1525
+  (0.1ms) SELECT version FROM "schema_migrations"
1526
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1527
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1528
+  (0.1ms) begin transaction
1529
+ -------------------
1530
+ BotTest: test_truth
1531
+ -------------------
1532
+  (0.0ms) rollback transaction
1533
+  (0.0ms) begin transaction
1534
+ ---------------------------
1535
+ NavigationTest: test_notify
1536
+ ---------------------------
1537
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 15:14:23 -0500
1538
+ Processing by Bot::BotController#notify as HTML
1539
+ Parameters: {"bot"=>ApplicationHandler}
1540
+ Using ApplicationHandler
1541
+ []
1542
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1543
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 15:14:23 -0500
1544
+ Processing by Bot::BotController#notify as HTML
1545
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1546
+ Using ApplicationHandler
1547
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1548
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1549
+  (0.1ms) rollback transaction
1550
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1551
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1552
+  (0.1ms) select sqlite_version(*)
1553
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1554
+  (0.2ms) SELECT version FROM "schema_migrations"
1555
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1556
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1557
+  (0.1ms) begin transaction
1558
+ -------------------
1559
+ BotTest: test_truth
1560
+ -------------------
1561
+  (0.0ms) rollback transaction
1562
+  (0.0ms) begin transaction
1563
+ ---------------------------
1564
+ NavigationTest: test_notify
1565
+ ---------------------------
1566
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 15:47:13 -0500
1567
+ Processing by Bot::BotController#notify as HTML
1568
+ Parameters: {"bot"=>ApplicationHandler}
1569
+ Using ApplicationHandler
1570
+ []
1571
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1572
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 15:47:13 -0500
1573
+ Processing by Bot::BotController#notify as HTML
1574
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1575
+ Using ApplicationHandler
1576
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1577
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1578
+  (0.1ms) rollback transaction
1579
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1580
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1581
+  (0.1ms) select sqlite_version(*)
1582
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1583
+  (0.1ms) SELECT version FROM "schema_migrations"
1584
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1585
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1586
+  (0.1ms) begin transaction
1587
+ -------------------
1588
+ BotTest: test_truth
1589
+ -------------------
1590
+  (0.1ms) rollback transaction
1591
+  (0.1ms) begin transaction
1592
+ ---------------------------
1593
+ NavigationTest: test_notify
1594
+ ---------------------------
1595
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 15:59:29 -0500
1596
+ Processing by Bot::BotController#notify as HTML
1597
+ Parameters: {"bot"=>ApplicationHandler}
1598
+ []
1599
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1600
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 15:59:29 -0500
1601
+ Processing by Bot::BotController#notify as HTML
1602
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1603
+ [{"type"=>"text", "to"=>"bnmrrs", "body"=>"Hello!", "typeTime"=>0}]
1604
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1605
+  (0.1ms) rollback transaction
1606
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1607
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1608
+  (0.0ms) select sqlite_version(*)
1609
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1610
+  (0.1ms) SELECT version FROM "schema_migrations"
1611
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1612
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1613
+  (0.2ms) begin transaction
1614
+ ---------------------------
1615
+ NavigationTest: test_notify
1616
+ ---------------------------
1617
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 17:31:27 -0500
1618
+ Processing by Bot::BotController#notify as HTML
1619
+ Parameters: {"bot"=>ApplicationHandler}
1620
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1621
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-20 17:31:27 -0500
1622
+ Processing by Bot::BotController#notify as HTML
1623
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1624
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1625
+  (0.1ms) rollback transaction
1626
+  (0.1ms) begin transaction
1627
+ -------------------
1628
+ BotTest: test_truth
1629
+ -------------------
1630
+  (0.0ms) rollback transaction
1631
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1632
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1633
+  (0.1ms) select sqlite_version(*)
1634
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1635
+  (0.1ms) SELECT version FROM "schema_migrations"
1636
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1637
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1638
+  (0.1ms) begin transaction
1639
+ -------------------
1640
+ BotTest: test_truth
1641
+ -------------------
1642
+  (0.1ms) rollback transaction
1643
+  (0.0ms) begin transaction
1644
+ ---------------------------
1645
+ NavigationTest: test_notify
1646
+ ---------------------------
1647
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-21 13:48:12 -0500
1648
+ Processing by Bot::BotController#notify as HTML
1649
+ Parameters: {"bot"=>ApplicationHandler}
1650
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1651
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-21 13:48:12 -0500
1652
+ Processing by Bot::BotController#notify as HTML
1653
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1654
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1655
+  (0.2ms) rollback transaction
1656
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1657
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1658
+  (0.0ms) select sqlite_version(*)
1659
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1660
+  (0.1ms) SELECT version FROM "schema_migrations"
1661
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1662
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1663
+  (0.1ms) begin transaction
1664
+ -------------------
1665
+ BotTest: test_truth
1666
+ -------------------
1667
+  (0.1ms) rollback transaction
1668
+  (0.0ms) begin transaction
1669
+ ---------------------------
1670
+ NavigationTest: test_notify
1671
+ ---------------------------
1672
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 10:54:36 -0500
1673
+ Processing by Bot::BotController#notify as HTML
1674
+ Parameters: {"bot"=>ApplicationHandler}
1675
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1676
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 10:54:36 -0500
1677
+ Processing by Bot::BotController#notify as HTML
1678
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1679
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1680
+  (0.1ms) rollback transaction
1681
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1682
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1683
+  (0.1ms) select sqlite_version(*)
1684
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1685
+  (0.1ms) SELECT version FROM "schema_migrations"
1686
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1687
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1688
+  (0.1ms) begin transaction
1689
+ ---------------------------
1690
+ NavigationTest: test_notify
1691
+ ---------------------------
1692
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 10:56:01 -0500
1693
+ Processing by Bot::BotController#notify as HTML
1694
+ Parameters: {"bot"=>ApplicationHandler}
1695
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1696
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 10:56:01 -0500
1697
+ Processing by Bot::BotController#notify as HTML
1698
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1699
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1700
+  (0.1ms) rollback transaction
1701
+  (0.0ms) begin transaction
1702
+ -------------------
1703
+ BotTest: test_truth
1704
+ -------------------
1705
+  (0.0ms) rollback transaction
1706
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1707
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1708
+  (0.1ms) select sqlite_version(*)
1709
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1710
+  (0.1ms) SELECT version FROM "schema_migrations"
1711
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1712
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1713
+  (0.1ms) begin transaction
1714
+ -------------------
1715
+ BotTest: test_truth
1716
+ -------------------
1717
+  (0.1ms) rollback transaction
1718
+  (0.1ms) begin transaction
1719
+ ---------------------------
1720
+ NavigationTest: test_notify
1721
+ ---------------------------
1722
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:00:17 -0500
1723
+ Processing by Bot::BotController#notify as HTML
1724
+ Parameters: {"bot"=>ApplicationHandler}
1725
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1726
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:00:17 -0500
1727
+ Processing by Bot::BotController#notify as HTML
1728
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1729
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
1730
+  (0.1ms) rollback transaction
1731
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1732
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1733
+  (0.1ms) select sqlite_version(*)
1734
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1735
+  (0.1ms) SELECT version FROM "schema_migrations"
1736
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1737
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1738
+  (0.1ms) begin transaction
1739
+ -------------------
1740
+ BotTest: test_truth
1741
+ -------------------
1742
+  (0.0ms) rollback transaction
1743
+  (0.0ms) begin transaction
1744
+ ---------------------------
1745
+ NavigationTest: test_notify
1746
+ ---------------------------
1747
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:00:28 -0500
1748
+ Processing by Bot::BotController#notify as HTML
1749
+ Parameters: {"bot"=>ApplicationHandler}
1750
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1751
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:00:28 -0500
1752
+ Processing by Bot::BotController#notify as HTML
1753
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1754
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
1755
+  (0.1ms) rollback transaction
1756
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1757
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1758
+  (0.1ms) select sqlite_version(*)
1759
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1760
+  (0.1ms) SELECT version FROM "schema_migrations"
1761
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1762
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1763
+  (0.1ms) begin transaction
1764
+ -------------------
1765
+ BotTest: test_truth
1766
+ -------------------
1767
+  (0.1ms) rollback transaction
1768
+  (0.0ms) begin transaction
1769
+ ---------------------------
1770
+ NavigationTest: test_notify
1771
+ ---------------------------
1772
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:03:06 -0500
1773
+ Processing by Bot::BotController#notify as HTML
1774
+ Parameters: {"bot"=>ApplicationHandler}
1775
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1776
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:03:06 -0500
1777
+ Processing by Bot::BotController#notify as HTML
1778
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1779
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
1780
+  (0.1ms) rollback transaction
1781
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1782
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1783
+  (0.0ms) select sqlite_version(*)
1784
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1785
+  (0.1ms) SELECT version FROM "schema_migrations"
1786
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1787
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1788
+  (0.2ms) begin transaction
1789
+ -------------------
1790
+ BotTest: test_truth
1791
+ -------------------
1792
+  (0.1ms) rollback transaction
1793
+  (0.1ms) begin transaction
1794
+ ---------------------------
1795
+ NavigationTest: test_notify
1796
+ ---------------------------
1797
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:03:20 -0500
1798
+ Processing by Bot::BotController#notify as HTML
1799
+ Parameters: {"bot"=>ApplicationHandler}
1800
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1801
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:03:20 -0500
1802
+ Processing by Bot::BotController#notify as HTML
1803
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1804
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1805
+  (0.1ms) rollback transaction
1806
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1807
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1808
+  (0.1ms) select sqlite_version(*)
1809
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1810
+  (0.1ms) SELECT version FROM "schema_migrations"
1811
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1812
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1813
+  (0.1ms) begin transaction
1814
+ ---------------------------
1815
+ NavigationTest: test_notify
1816
+ ---------------------------
1817
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:03:37 -0500
1818
+ Processing by Bot::BotController#notify as HTML
1819
+ Parameters: {"bot"=>ApplicationHandler}
1820
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1821
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:03:37 -0500
1822
+ Processing by Bot::BotController#notify as HTML
1823
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1824
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
1825
+  (0.1ms) rollback transaction
1826
+  (0.1ms) begin transaction
1827
+ -------------------
1828
+ BotTest: test_truth
1829
+ -------------------
1830
+  (0.0ms) rollback transaction
1831
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1832
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1833
+  (0.1ms) select sqlite_version(*)
1834
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1835
+  (0.1ms) SELECT version FROM "schema_migrations"
1836
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1837
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1838
+  (0.1ms) begin transaction
1839
+ ---------------------------
1840
+ NavigationTest: test_notify
1841
+ ---------------------------
1842
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:03:50 -0500
1843
+ Processing by Bot::BotController#notify as HTML
1844
+ Parameters: {"bot"=>ApplicationHandler}
1845
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1846
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:03:50 -0500
1847
+ Processing by Bot::BotController#notify as HTML
1848
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1849
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1850
+  (0.1ms) rollback transaction
1851
+  (0.0ms) begin transaction
1852
+ -------------------
1853
+ BotTest: test_truth
1854
+ -------------------
1855
+  (0.0ms) rollback transaction
1856
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1857
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1858
+  (0.1ms) select sqlite_version(*)
1859
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1860
+  (0.1ms) SELECT version FROM "schema_migrations"
1861
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1862
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1863
+  (0.1ms) begin transaction
1864
+ ---------------------------
1865
+ NavigationTest: test_notify
1866
+ ---------------------------
1867
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:04:02 -0500
1868
+ Processing by Bot::BotController#notify as HTML
1869
+ Parameters: {"bot"=>ApplicationHandler}
1870
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1871
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:04:02 -0500
1872
+ Processing by Bot::BotController#notify as HTML
1873
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1874
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1875
+  (0.1ms) rollback transaction
1876
+  (0.1ms) begin transaction
1877
+ -------------------
1878
+ BotTest: test_truth
1879
+ -------------------
1880
+  (0.0ms) rollback transaction
1881
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1882
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1883
+  (0.1ms) select sqlite_version(*)
1884
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1885
+  (0.1ms) SELECT version FROM "schema_migrations"
1886
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1887
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1888
+  (0.1ms) begin transaction
1889
+ -------------------
1890
+ BotTest: test_truth
1891
+ -------------------
1892
+  (0.1ms) rollback transaction
1893
+  (0.1ms) begin transaction
1894
+ ---------------------------
1895
+ NavigationTest: test_notify
1896
+ ---------------------------
1897
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:06:52 -0500
1898
+ Processing by Bot::BotController#notify as HTML
1899
+ Parameters: {"bot"=>ApplicationHandler}
1900
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1901
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:06:52 -0500
1902
+ Processing by Bot::BotController#notify as HTML
1903
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1904
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1905
+  (0.1ms) rollback transaction
1906
+  (0.1ms) begin transaction
1907
+ -----------------------------------------
1908
+ NavigationTest: test_notify_special_types
1909
+ -----------------------------------------
1910
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:06:52 -0500
1911
+ Processing by Bot::BotController#notify as HTML
1912
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1913
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1914
+  (0.1ms) rollback transaction
1915
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1916
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1917
+  (0.1ms) select sqlite_version(*)
1918
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1919
+  (0.1ms) SELECT version FROM "schema_migrations"
1920
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1921
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1922
+  (0.1ms) begin transaction
1923
+ -------------------
1924
+ BotTest: test_truth
1925
+ -------------------
1926
+  (0.1ms) rollback transaction
1927
+  (0.0ms) begin transaction
1928
+ ---------------------------
1929
+ NavigationTest: test_notify
1930
+ ---------------------------
1931
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:07:33 -0500
1932
+ Processing by Bot::BotController#notify as HTML
1933
+ Parameters: {"bot"=>ApplicationHandler}
1934
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1935
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:07:33 -0500
1936
+ Processing by Bot::BotController#notify as HTML
1937
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1938
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1939
+  (0.1ms) rollback transaction
1940
+  (0.1ms) begin transaction
1941
+ -----------------------------------------
1942
+ NavigationTest: test_notify_special_types
1943
+ -----------------------------------------
1944
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:07:33 -0500
1945
+ Processing by Bot::BotController#notify as HTML
1946
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1947
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1948
+  (0.1ms) rollback transaction
1949
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1950
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1951
+  (0.1ms) select sqlite_version(*)
1952
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1953
+  (0.1ms) SELECT version FROM "schema_migrations"
1954
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1955
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1956
+  (0.1ms) begin transaction
1957
+ -----------------------------------------
1958
+ NavigationTest: test_notify_special_types
1959
+ -----------------------------------------
1960
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:08:53 -0500
1961
+ Processing by Bot::BotController#notify as HTML
1962
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1963
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1964
+  (0.1ms) rollback transaction
1965
+  (0.1ms) begin transaction
1966
+ ---------------------------
1967
+ NavigationTest: test_notify
1968
+ ---------------------------
1969
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:08:54 -0500
1970
+ Processing by Bot::BotController#notify as HTML
1971
+ Parameters: {"bot"=>ApplicationHandler}
1972
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1973
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:08:54 -0500
1974
+ Processing by Bot::BotController#notify as HTML
1975
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
1976
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1977
+  (0.1ms) rollback transaction
1978
+  (0.1ms) begin transaction
1979
+ -------------------
1980
+ BotTest: test_truth
1981
+ -------------------
1982
+  (0.1ms) rollback transaction
1983
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1984
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1985
+  (0.1ms) select sqlite_version(*)
1986
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1987
+  (0.1ms) SELECT version FROM "schema_migrations"
1988
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1989
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1990
+  (0.1ms) begin transaction
1991
+ -------------------
1992
+ BotTest: test_truth
1993
+ -------------------
1994
+  (0.1ms) rollback transaction
1995
+  (0.1ms) begin transaction
1996
+ ---------------------------
1997
+ NavigationTest: test_notify
1998
+ ---------------------------
1999
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:09:56 -0500
2000
+ Processing by Bot::BotController#notify as HTML
2001
+ Parameters: {"bot"=>ApplicationHandler}
2002
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2003
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:09:56 -0500
2004
+ Processing by Bot::BotController#notify as HTML
2005
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2006
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2007
+  (0.4ms) rollback transaction
2008
+  (0.1ms) begin transaction
2009
+ -----------------------------------------
2010
+ NavigationTest: test_notify_special_types
2011
+ -----------------------------------------
2012
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:09:56 -0500
2013
+ Processing by Bot::BotController#notify as HTML
2014
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2015
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2016
+  (0.1ms) rollback transaction
2017
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2018
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2019
+  (0.1ms) select sqlite_version(*)
2020
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2021
+  (0.1ms) SELECT version FROM "schema_migrations"
2022
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2023
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2024
+  (0.1ms) begin transaction
2025
+ -------------------
2026
+ BotTest: test_truth
2027
+ -------------------
2028
+  (0.1ms) rollback transaction
2029
+  (0.1ms) begin transaction
2030
+ ---------------------------
2031
+ NavigationTest: test_notify
2032
+ ---------------------------
2033
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:06 -0500
2034
+ Processing by Bot::BotController#notify as HTML
2035
+ Parameters: {"bot"=>ApplicationHandler}
2036
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2037
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:06 -0500
2038
+ Processing by Bot::BotController#notify as HTML
2039
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2040
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2041
+  (0.1ms) rollback transaction
2042
+  (0.0ms) begin transaction
2043
+ -----------------------------------------
2044
+ NavigationTest: test_notify_special_types
2045
+ -----------------------------------------
2046
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:06 -0500
2047
+ Processing by Bot::BotController#notify as HTML
2048
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2049
+ Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2050
+  (0.1ms) rollback transaction
2051
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2052
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2053
+  (0.1ms) select sqlite_version(*)
2054
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2055
+  (0.2ms) SELECT version FROM "schema_migrations"
2056
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2057
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2058
+  (0.1ms) begin transaction
2059
+ ---------------------------
2060
+ NavigationTest: test_notify
2061
+ ---------------------------
2062
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:10 -0500
2063
+ Processing by Bot::BotController#notify as HTML
2064
+ Parameters: {"bot"=>ApplicationHandler}
2065
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2066
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:10 -0500
2067
+ Processing by Bot::BotController#notify as HTML
2068
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2069
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2070
+  (0.1ms) rollback transaction
2071
+  (0.0ms) begin transaction
2072
+ -----------------------------------------
2073
+ NavigationTest: test_notify_special_types
2074
+ -----------------------------------------
2075
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:10 -0500
2076
+ Processing by Bot::BotController#notify as HTML
2077
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2078
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2079
+  (0.1ms) rollback transaction
2080
+  (0.1ms) begin transaction
2081
+ -------------------
2082
+ BotTest: test_truth
2083
+ -------------------
2084
+  (0.0ms) rollback transaction
2085
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2086
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2087
+  (0.1ms) select sqlite_version(*)
2088
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2089
+  (0.1ms) SELECT version FROM "schema_migrations"
2090
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2091
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2092
+  (0.1ms) begin transaction
2093
+ -------------------
2094
+ BotTest: test_truth
2095
+ -------------------
2096
+  (0.0ms) rollback transaction
2097
+  (0.0ms) begin transaction
2098
+ ---------------------------
2099
+ NavigationTest: test_notify
2100
+ ---------------------------
2101
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:19 -0500
2102
+ Processing by Bot::BotController#notify as HTML
2103
+ Parameters: {"bot"=>ApplicationHandler}
2104
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2105
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:19 -0500
2106
+ Processing by Bot::BotController#notify as HTML
2107
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2108
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2109
+  (0.1ms) rollback transaction
2110
+  (0.0ms) begin transaction
2111
+ -----------------------------------------
2112
+ NavigationTest: test_notify_special_types
2113
+ -----------------------------------------
2114
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:19 -0500
2115
+ Processing by Bot::BotController#notify as HTML
2116
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2117
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2118
+  (0.1ms) rollback transaction
2119
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2120
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2121
+  (0.1ms) select sqlite_version(*)
2122
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2123
+  (0.1ms) SELECT version FROM "schema_migrations"
2124
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2125
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2126
+  (0.1ms) begin transaction
2127
+ ---------------------------
2128
+ NavigationTest: test_notify
2129
+ ---------------------------
2130
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:39 -0500
2131
+ Processing by Bot::BotController#notify as HTML
2132
+ Parameters: {"bot"=>ApplicationHandler}
2133
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2134
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:39 -0500
2135
+ Processing by Bot::BotController#notify as HTML
2136
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2137
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2138
+  (0.1ms) rollback transaction
2139
+  (0.0ms) begin transaction
2140
+ -----------------------------------------
2141
+ NavigationTest: test_notify_special_types
2142
+ -----------------------------------------
2143
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:39 -0500
2144
+ Processing by Bot::BotController#notify as HTML
2145
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2146
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2147
+  (0.1ms) rollback transaction
2148
+  (0.1ms) begin transaction
2149
+ -------------------
2150
+ BotTest: test_truth
2151
+ -------------------
2152
+  (0.1ms) rollback transaction
2153
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2154
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2155
+  (0.1ms) select sqlite_version(*)
2156
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2157
+  (0.1ms) SELECT version FROM "schema_migrations"
2158
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2159
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2160
+  (0.1ms) begin transaction
2161
+ -----------------------------------------
2162
+ NavigationTest: test_notify_special_types
2163
+ -----------------------------------------
2164
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:53 -0500
2165
+ Processing by Bot::BotController#notify as HTML
2166
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2167
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2168
+  (0.1ms) rollback transaction
2169
+  (0.0ms) begin transaction
2170
+ ---------------------------
2171
+ NavigationTest: test_notify
2172
+ ---------------------------
2173
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:53 -0500
2174
+ Processing by Bot::BotController#notify as HTML
2175
+ Parameters: {"bot"=>ApplicationHandler}
2176
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2177
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:10:53 -0500
2178
+ Processing by Bot::BotController#notify as HTML
2179
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2180
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2181
+  (0.1ms) rollback transaction
2182
+  (0.0ms) begin transaction
2183
+ -------------------
2184
+ BotTest: test_truth
2185
+ -------------------
2186
+  (0.0ms) rollback transaction
2187
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2188
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2189
+  (0.1ms) select sqlite_version(*)
2190
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2191
+  (0.1ms) SELECT version FROM "schema_migrations"
2192
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2193
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2194
+  (0.1ms) begin transaction
2195
+ -------------------
2196
+ BotTest: test_truth
2197
+ -------------------
2198
+  (0.0ms) rollback transaction
2199
+  (0.0ms) begin transaction
2200
+ -----------------------------------------
2201
+ NavigationTest: test_notify_special_types
2202
+ -----------------------------------------
2203
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:13:12 -0500
2204
+ Processing by Bot::BotController#notify as HTML
2205
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2206
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2207
+  (0.1ms) rollback transaction
2208
+  (0.1ms) begin transaction
2209
+ ---------------------------
2210
+ NavigationTest: test_notify
2211
+ ---------------------------
2212
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:13:12 -0500
2213
+ Processing by Bot::BotController#notify as HTML
2214
+ Parameters: {"bot"=>ApplicationHandler}
2215
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2216
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:13:12 -0500
2217
+ Processing by Bot::BotController#notify as HTML
2218
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2219
+ Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2220
+  (0.1ms) rollback transaction
2221
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2222
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2223
+  (0.2ms) select sqlite_version(*)
2224
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2225
+  (0.1ms) SELECT version FROM "schema_migrations"
2226
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2227
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2228
+  (0.1ms) begin transaction
2229
+ -------------------
2230
+ BotTest: test_truth
2231
+ -------------------
2232
+  (0.1ms) rollback transaction
2233
+  (0.1ms) begin transaction
2234
+ ---------------------------------------
2235
+ NavigationTest: test_notify_multi_types
2236
+ ---------------------------------------
2237
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:21:30 -0500
2238
+ Processing by Bot::BotController#notify as HTML
2239
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2240
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2241
+  (0.1ms) rollback transaction
2242
+  (0.0ms) begin transaction
2243
+ ---------------------------
2244
+ NavigationTest: test_notify
2245
+ ---------------------------
2246
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:21:30 -0500
2247
+ Processing by Bot::BotController#notify as HTML
2248
+ Parameters: {"bot"=>ApplicationHandler}
2249
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2250
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:21:30 -0500
2251
+ Processing by Bot::BotController#notify as HTML
2252
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2253
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2254
+  (0.1ms) rollback transaction
2255
+  (0.0ms) begin transaction
2256
+ -----------------------------------------
2257
+ NavigationTest: test_notify_special_types
2258
+ -----------------------------------------
2259
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:21:30 -0500
2260
+ Processing by Bot::BotController#notify as HTML
2261
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2262
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2263
+  (0.1ms) rollback transaction
2264
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2265
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2266
+  (0.1ms) select sqlite_version(*)
2267
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2268
+  (0.1ms) SELECT version FROM "schema_migrations"
2269
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2270
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2271
+  (0.1ms) begin transaction
2272
+ ---------------------------------------
2273
+ NavigationTest: test_notify_multi_types
2274
+ ---------------------------------------
2275
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:21:46 -0500
2276
+ Processing by Bot::BotController#notify as HTML
2277
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2278
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2279
+  (0.1ms) rollback transaction
2280
+  (0.0ms) begin transaction
2281
+ -----------------------------------------
2282
+ NavigationTest: test_notify_special_types
2283
+ -----------------------------------------
2284
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:21:46 -0500
2285
+ Processing by Bot::BotController#notify as HTML
2286
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2287
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2288
+  (0.1ms) rollback transaction
2289
+  (0.1ms) begin transaction
2290
+ ---------------------------
2291
+ NavigationTest: test_notify
2292
+ ---------------------------
2293
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:21:46 -0500
2294
+ Processing by Bot::BotController#notify as HTML
2295
+ Parameters: {"bot"=>ApplicationHandler}
2296
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2297
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:21:46 -0500
2298
+ Processing by Bot::BotController#notify as HTML
2299
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2300
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
2301
+  (0.1ms) rollback transaction
2302
+  (0.0ms) begin transaction
2303
+ -------------------
2304
+ BotTest: test_truth
2305
+ -------------------
2306
+  (0.0ms) rollback transaction
2307
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2308
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2309
+  (0.0ms) select sqlite_version(*)
2310
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2311
+  (0.2ms) SELECT version FROM "schema_migrations"
2312
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2313
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2314
+  (0.1ms) begin transaction
2315
+ -------------------
2316
+ BotTest: test_truth
2317
+ -------------------
2318
+  (0.1ms) rollback transaction
2319
+  (0.1ms) begin transaction
2320
+ ---------------------------------------
2321
+ NavigationTest: test_notify_multi_types
2322
+ ---------------------------------------
2323
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:22:32 -0500
2324
+ Processing by Bot::BotController#notify as HTML
2325
+ Parameters: {"messages"=>[{"body"=>"multi", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2326
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2327
+  (0.1ms) rollback transaction
2328
+  (0.1ms) begin transaction
2329
+ ---------------------------
2330
+ NavigationTest: test_notify
2331
+ ---------------------------
2332
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:22:32 -0500
2333
+ Processing by Bot::BotController#notify as HTML
2334
+ Parameters: {"bot"=>ApplicationHandler}
2335
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2336
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:22:32 -0500
2337
+ Processing by Bot::BotController#notify as HTML
2338
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2339
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2340
+  (0.1ms) rollback transaction
2341
+  (0.1ms) begin transaction
2342
+ -----------------------------------------
2343
+ NavigationTest: test_notify_special_types
2344
+ -----------------------------------------
2345
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-01-27 11:22:32 -0500
2346
+ Processing by Bot::BotController#notify as HTML
2347
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2348
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2349
+  (0.1ms) rollback transaction
2350
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2351
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2352
+  (0.1ms) select sqlite_version(*)
2353
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2354
+  (0.1ms) SELECT version FROM "schema_migrations"
2355
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2356
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2357
+  (0.1ms) begin transaction
2358
+ ---------------------------
2359
+ NavigationTest: test_notify
2360
+ ---------------------------
2361
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-02-24 14:09:47 -0500
2362
+ Processing by Bot::BotController#notify as HTML
2363
+ Parameters: {"bot"=>ApplicationHandler}
2364
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2365
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-02-24 14:09:47 -0500
2366
+ Processing by Bot::BotController#notify as HTML
2367
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2368
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2369
+  (0.1ms) rollback transaction
2370
+  (0.1ms) begin transaction
2371
+ ---------------------------------------
2372
+ NavigationTest: test_notify_multi_types
2373
+ ---------------------------------------
2374
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-02-24 14:09:47 -0500
2375
+ Processing by Bot::BotController#notify as HTML
2376
+ Parameters: {"messages"=>[{"body"=>"multi", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2377
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2378
+  (0.1ms) rollback transaction
2379
+  (0.1ms) begin transaction
2380
+ -----------------------------------------
2381
+ NavigationTest: test_notify_special_types
2382
+ -----------------------------------------
2383
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-02-24 14:09:47 -0500
2384
+ Processing by Bot::BotController#notify as HTML
2385
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2386
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2387
+  (0.1ms) rollback transaction
2388
+  (0.0ms) begin transaction
2389
+ -------------------
2390
+ BotTest: test_truth
2391
+ -------------------
2392
+  (0.0ms) rollback transaction
2393
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2394
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2395
+  (0.1ms) select sqlite_version(*)
2396
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2397
+  (0.1ms) SELECT version FROM "schema_migrations"
2398
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
2399
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2400
+  (0.2ms) begin transaction
2401
+ ---------------------------
2402
+ NavigationTest: test_notify
2403
+ ---------------------------
2404
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-03-29 10:22:30 -0400
2405
+ Processing by Bot::BotController#notify as HTML
2406
+ Parameters: {"bot"=>ApplicationHandler}
2407
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2408
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-03-29 10:22:30 -0400
2409
+ Processing by Bot::BotController#notify as HTML
2410
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"text", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2411
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2412
+  (0.1ms) rollback transaction
2413
+  (0.1ms) begin transaction
2414
+ -----------------------------------------
2415
+ NavigationTest: test_notify_special_types
2416
+ -----------------------------------------
2417
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-03-29 10:22:30 -0400
2418
+ Processing by Bot::BotController#notify as HTML
2419
+ Parameters: {"messages"=>[{"body"=>"Hello", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2420
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2421
+  (0.1ms) rollback transaction
2422
+  (0.0ms) begin transaction
2423
+ ---------------------------------------
2424
+ NavigationTest: test_notify_multi_types
2425
+ ---------------------------------------
2426
+ Started POST "/bot/notify" for 127.0.0.1 at 2016-03-29 10:22:30 -0400
2427
+ Processing by Bot::BotController#notify as HTML
2428
+ Parameters: {"messages"=>[{"body"=>"multi", "readReceiptRequested"=>"true", "from"=>"bnmrrs", "timestamp"=>"1452785908454", "type"=>"scan-data", "id"=>"2af0d873-d157-4627-b863-8be11b0dfd86"}], "bot"=>ApplicationHandler}
2429
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2430
+  (0.1ms) rollback transaction
2431
+  (0.1ms) begin transaction
2432
+ -------------------
2433
+ BotTest: test_truth
2434
+ -------------------
2435
+  (0.1ms) rollback transaction