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.
- checksums.yaml +4 -4
- data/app/controllers/bot/bot_controller.rb +23 -0
- data/lib/bot.rb +7 -1
- data/lib/bot/adapter.rb +8 -0
- data/lib/bot/adapters/base.rb +15 -0
- data/lib/bot/adapters/kik.rb +26 -0
- data/lib/bot/adapters/test.rb +19 -0
- data/lib/bot/configuration.rb +21 -0
- data/lib/bot/engine.rb +4 -0
- data/lib/bot/handler.rb +46 -0
- data/lib/bot/responder.rb +96 -0
- data/lib/bot/responder_chain.rb +15 -0
- data/lib/bot/route_extensions.rb +7 -0
- data/lib/bot/rspec.rb +23 -0
- data/lib/bot/rspec/fixnum_helper.rb +13 -0
- data/lib/bot/rspec/matchers.rb +41 -0
- data/lib/bot/rspec/syntax.rb +39 -0
- data/lib/bot/version.rb +1 -1
- data/lib/generators/bot/install/install_generator.rb +24 -0
- data/lib/generators/bot/install/templates/application_handler.rb +7 -0
- data/lib/generators/bot/install/templates/application_responder.rb +11 -0
- data/lib/generators/bot/install/templates/initializer.rb +3 -0
- data/lib/generators/bot/responder/responder_generator.rb +25 -0
- data/lib/generators/rspec/install_generator.rb +14 -0
- data/lib/generators/rspec/responder_generator.rb +14 -0
- data/lib/generators/rspec/templates/application_handler_spec.rb +5 -0
- data/lib/generators/rspec/templates/responder_spec.rb +17 -0
- data/test/dummy/app/bot/application_handler.rb +5 -0
- data/test/dummy/app/bot/application_responder.rb +2 -0
- data/test/dummy/app/bot/responders/multi.rb +11 -0
- data/test/dummy/app/bot/responders/scan.rb +11 -0
- data/test/dummy/app/bot/responders/test.rb +11 -0
- data/test/dummy/app/bot/responders/text.rb +9 -0
- data/test/dummy/config/environments/development.rb +2 -0
- data/test/dummy/config/initializers/bot.rb +3 -0
- data/test/dummy/config/routes.rb +1 -2
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +16 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +4 -0
- data/test/dummy/log/test.log +2345 -0
- data/test/integration/navigation_test.rb +24 -1
- data/test/test_helper.rb +2 -0
- metadata +90 -8
- data/app/controllers/bot/kik_controller.rb +0 -8
- data/config/routes.rb +0 -3
- data/lib/bot/message_handler.rb +0 -26
data/lib/bot/version.rb
CHANGED
@@ -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,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,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
|
@@ -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
|
data/test/dummy/config/routes.rb
CHANGED
Binary file
|
@@ -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
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -0,0 +1,4 @@
|
|
1
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
data/test/dummy/log/test.log
CHANGED
@@ -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
|
[1m[35m (0.1ms)[0m rollback transaction
|
91
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
92
|
+
-------------------
|
93
|
+
BotTest: test_truth
|
94
|
+
-------------------
|
95
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
96
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
104
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
113
|
+
-------------------
|
114
|
+
BotTest: test_truth
|
115
|
+
-------------------
|
116
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
117
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
126
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
127
|
+
-------------------
|
128
|
+
BotTest: test_truth
|
129
|
+
-------------------
|
130
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
131
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
132
|
+
-------------------
|
133
|
+
BotTest: test_truth
|
134
|
+
-------------------
|
135
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
136
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
150
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
151
|
+
-------------------
|
152
|
+
BotTest: test_truth
|
153
|
+
-------------------
|
154
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
155
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
169
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
170
|
+
-------------------
|
171
|
+
BotTest: test_truth
|
172
|
+
-------------------
|
173
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
174
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
188
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
202
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
203
|
+
-------------------
|
204
|
+
BotTest: test_truth
|
205
|
+
-------------------
|
206
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
207
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
208
|
+
-------------------
|
209
|
+
BotTest: test_truth
|
210
|
+
-------------------
|
211
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
212
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
226
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
240
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
241
|
+
-------------------
|
242
|
+
BotTest: test_truth
|
243
|
+
-------------------
|
244
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
245
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
259
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
260
|
+
-------------------
|
261
|
+
BotTest: test_truth
|
262
|
+
-------------------
|
263
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
264
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
278
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
279
|
+
-------------------
|
280
|
+
BotTest: test_truth
|
281
|
+
-------------------
|
282
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
283
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
284
|
+
-------------------
|
285
|
+
BotTest: test_truth
|
286
|
+
-------------------
|
287
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
288
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
296
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
302
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
303
|
+
-------------------
|
304
|
+
BotTest: test_truth
|
305
|
+
-------------------
|
306
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
307
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
314
|
+
-------------------
|
315
|
+
BotTest: test_truth
|
316
|
+
-------------------
|
317
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
318
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
324
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
325
|
+
-------------------
|
326
|
+
BotTest: test_truth
|
327
|
+
-------------------
|
328
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
329
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
335
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
336
|
+
-------------------
|
337
|
+
BotTest: test_truth
|
338
|
+
-------------------
|
339
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
340
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
341
|
+
-------------------
|
342
|
+
BotTest: test_truth
|
343
|
+
-------------------
|
344
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
345
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
351
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
352
|
+
-------------------
|
353
|
+
BotTest: test_truth
|
354
|
+
-------------------
|
355
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
356
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
362
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
377
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
378
|
+
-------------------
|
379
|
+
BotTest: test_truth
|
380
|
+
-------------------
|
381
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
382
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
383
|
+
-------------------
|
384
|
+
BotTest: test_truth
|
385
|
+
-------------------
|
386
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
387
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
404
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
421
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
422
|
+
-------------------
|
423
|
+
BotTest: test_truth
|
424
|
+
-------------------
|
425
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
426
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
427
|
+
-------------------
|
428
|
+
BotTest: test_truth
|
429
|
+
-------------------
|
430
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
431
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
448
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
465
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
466
|
+
-------------------
|
467
|
+
BotTest: test_truth
|
468
|
+
-------------------
|
469
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
470
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
496
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
497
|
+
-------------------
|
498
|
+
BotTest: test_truth
|
499
|
+
-------------------
|
500
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
501
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
502
|
+
-------------------
|
503
|
+
BotTest: test_truth
|
504
|
+
-------------------
|
505
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
506
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
516
|
+
-------------------
|
517
|
+
BotTest: test_truth
|
518
|
+
-------------------
|
519
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
520
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
537
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
563
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
564
|
+
-------------------
|
565
|
+
BotTest: test_truth
|
566
|
+
-------------------
|
567
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
568
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
584
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
585
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
586
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
587
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
588
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
589
|
+
[1m[35m (0.1ms)[0m begin transaction
|
590
|
+
-------------------
|
591
|
+
BotTest: test_truth
|
592
|
+
-------------------
|
593
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
594
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
610
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
611
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
612
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
613
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
614
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
615
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
616
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
617
|
+
-------------------
|
618
|
+
BotTest: test_truth
|
619
|
+
-------------------
|
620
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
621
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
638
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
639
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
640
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
641
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
642
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
643
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
644
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
645
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
662
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
663
|
+
-------------------
|
664
|
+
BotTest: test_truth
|
665
|
+
-------------------
|
666
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
667
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
668
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
669
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
670
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
671
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
672
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
673
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
674
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
691
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
692
|
+
-------------------
|
693
|
+
BotTest: test_truth
|
694
|
+
-------------------
|
695
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
696
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
697
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
698
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
699
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
700
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
701
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
702
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
703
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
720
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
721
|
+
-------------------
|
722
|
+
BotTest: test_truth
|
723
|
+
-------------------
|
724
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
725
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
726
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
727
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
728
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
729
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
730
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
731
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
732
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
733
|
+
-------------------
|
734
|
+
BotTest: test_truth
|
735
|
+
-------------------
|
736
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
737
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
754
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
755
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
756
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
757
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
758
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
759
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
760
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
761
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
762
|
+
-------------------
|
763
|
+
BotTest: test_truth
|
764
|
+
-------------------
|
765
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
766
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
783
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
784
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
785
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
786
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
787
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
788
|
+
[1m[36m (1.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
789
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
790
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
791
|
+
-------------------
|
792
|
+
BotTest: test_truth
|
793
|
+
-------------------
|
794
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
795
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
801
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
802
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
803
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
804
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
805
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
806
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
807
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
808
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
809
|
+
-------------------
|
810
|
+
BotTest: test_truth
|
811
|
+
-------------------
|
812
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
813
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
830
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
831
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
832
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
833
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
834
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
835
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
836
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
837
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
838
|
+
-------------------
|
839
|
+
BotTest: test_truth
|
840
|
+
-------------------
|
841
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
842
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
853
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
854
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
855
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
856
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
857
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
858
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
859
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
860
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
861
|
+
-------------------
|
862
|
+
BotTest: test_truth
|
863
|
+
-------------------
|
864
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
865
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
882
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
883
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
884
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
885
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
886
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
887
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
888
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
889
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
906
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
907
|
+
-------------------
|
908
|
+
BotTest: test_truth
|
909
|
+
-------------------
|
910
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
911
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
912
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
913
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
914
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
915
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
916
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
917
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
918
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
919
|
+
-------------------
|
920
|
+
BotTest: test_truth
|
921
|
+
-------------------
|
922
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
923
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
950
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
951
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
952
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
953
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
954
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
955
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
956
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
957
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
958
|
+
-------------------
|
959
|
+
BotTest: test_truth
|
960
|
+
-------------------
|
961
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
962
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
989
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
990
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
991
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
992
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
993
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
994
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
995
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
996
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
997
|
+
-------------------
|
998
|
+
BotTest: test_truth
|
999
|
+
-------------------
|
1000
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1001
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1028
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1029
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1030
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1031
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1032
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1033
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1034
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1035
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1062
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1063
|
+
-------------------
|
1064
|
+
BotTest: test_truth
|
1065
|
+
-------------------
|
1066
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1067
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1068
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1069
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1070
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1071
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1072
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1073
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1074
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1075
|
+
-------------------
|
1076
|
+
BotTest: test_truth
|
1077
|
+
-------------------
|
1078
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1079
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1106
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1107
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1108
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1109
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1110
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1111
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1112
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1113
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1140
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1141
|
+
-------------------
|
1142
|
+
BotTest: test_truth
|
1143
|
+
-------------------
|
1144
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1145
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1146
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1147
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1148
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1149
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1150
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1151
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1152
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1179
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1180
|
+
-------------------
|
1181
|
+
BotTest: test_truth
|
1182
|
+
-------------------
|
1183
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1184
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1185
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1186
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1187
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1188
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1189
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1190
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1191
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1209
|
+
-------------------
|
1210
|
+
BotTest: test_truth
|
1211
|
+
-------------------
|
1212
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1213
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1214
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1215
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1216
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1217
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1218
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1219
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1220
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1221
|
+
-------------------
|
1222
|
+
BotTest: test_truth
|
1223
|
+
-------------------
|
1224
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1225
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1242
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1243
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1244
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1245
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1246
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1247
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1248
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1249
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1267
|
+
-------------------
|
1268
|
+
BotTest: test_truth
|
1269
|
+
-------------------
|
1270
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1271
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1272
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1273
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1274
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1275
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1276
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1277
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1278
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1295
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1296
|
+
-------------------
|
1297
|
+
BotTest: test_truth
|
1298
|
+
-------------------
|
1299
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1300
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1301
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1302
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1303
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1304
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1305
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1306
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1307
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1308
|
+
-------------------
|
1309
|
+
BotTest: test_truth
|
1310
|
+
-------------------
|
1311
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1312
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1329
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1330
|
+
[1m[36m (4.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1331
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1332
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1333
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1334
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1335
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1336
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1353
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1354
|
+
-------------------
|
1355
|
+
BotTest: test_truth
|
1356
|
+
-------------------
|
1357
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1358
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1359
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1360
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1361
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1362
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1363
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1364
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1365
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1366
|
+
-------------------
|
1367
|
+
BotTest: test_truth
|
1368
|
+
-------------------
|
1369
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1370
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1387
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1388
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1389
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1390
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1391
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1392
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1393
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1394
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1395
|
+
-------------------
|
1396
|
+
BotTest: test_truth
|
1397
|
+
-------------------
|
1398
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1399
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1416
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1417
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1418
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1419
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1420
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1421
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1422
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1423
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1440
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1441
|
+
-------------------
|
1442
|
+
BotTest: test_truth
|
1443
|
+
-------------------
|
1444
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1445
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1446
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1447
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1448
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1449
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1450
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1451
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1452
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1469
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1470
|
+
-------------------
|
1471
|
+
BotTest: test_truth
|
1472
|
+
-------------------
|
1473
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1474
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1475
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1476
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1477
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1478
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
1479
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1480
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1481
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1482
|
+
-------------------
|
1483
|
+
BotTest: test_truth
|
1484
|
+
-------------------
|
1485
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1486
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1503
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1504
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1505
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1506
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1507
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1508
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1509
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1510
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1511
|
+
-------------------
|
1512
|
+
BotTest: test_truth
|
1513
|
+
-------------------
|
1514
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1515
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1521
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1522
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1523
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1524
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1525
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1526
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1527
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1528
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1529
|
+
-------------------
|
1530
|
+
BotTest: test_truth
|
1531
|
+
-------------------
|
1532
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1533
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1550
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1551
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1552
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1553
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1554
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
1555
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1556
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1557
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1558
|
+
-------------------
|
1559
|
+
BotTest: test_truth
|
1560
|
+
-------------------
|
1561
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1562
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1579
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1580
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1581
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1582
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1583
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1584
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1585
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1586
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1587
|
+
-------------------
|
1588
|
+
BotTest: test_truth
|
1589
|
+
-------------------
|
1590
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1591
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1606
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1607
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1608
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
1609
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1610
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1611
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1612
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1613
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1626
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1627
|
+
-------------------
|
1628
|
+
BotTest: test_truth
|
1629
|
+
-------------------
|
1630
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1631
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1632
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1633
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1634
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1635
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1636
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1637
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1638
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1639
|
+
-------------------
|
1640
|
+
BotTest: test_truth
|
1641
|
+
-------------------
|
1642
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1643
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1656
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1657
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1658
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
1659
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1660
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1661
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1662
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1663
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1664
|
+
-------------------
|
1665
|
+
BotTest: test_truth
|
1666
|
+
-------------------
|
1667
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1668
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1681
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1682
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1683
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1684
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1685
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1686
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1687
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1688
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1701
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1702
|
+
-------------------
|
1703
|
+
BotTest: test_truth
|
1704
|
+
-------------------
|
1705
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1706
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1707
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1708
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1709
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1710
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1711
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1712
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1713
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1714
|
+
-------------------
|
1715
|
+
BotTest: test_truth
|
1716
|
+
-------------------
|
1717
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1718
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1731
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1732
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1733
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1734
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1735
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1736
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1737
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1739
|
+
-------------------
|
1740
|
+
BotTest: test_truth
|
1741
|
+
-------------------
|
1742
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1743
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1756
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1757
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1758
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1759
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1760
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1761
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1762
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1763
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1764
|
+
-------------------
|
1765
|
+
BotTest: test_truth
|
1766
|
+
-------------------
|
1767
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1768
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1781
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1782
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1783
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
1784
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1785
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1786
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1787
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1788
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1789
|
+
-------------------
|
1790
|
+
BotTest: test_truth
|
1791
|
+
-------------------
|
1792
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1793
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1806
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1807
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1808
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1809
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1810
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1811
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1812
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1813
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1826
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1827
|
+
-------------------
|
1828
|
+
BotTest: test_truth
|
1829
|
+
-------------------
|
1830
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1831
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1832
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1833
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1834
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1835
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1836
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1837
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1838
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1851
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1852
|
+
-------------------
|
1853
|
+
BotTest: test_truth
|
1854
|
+
-------------------
|
1855
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1856
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1857
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1858
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1859
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1860
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1861
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1862
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1863
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1876
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1877
|
+
-------------------
|
1878
|
+
BotTest: test_truth
|
1879
|
+
-------------------
|
1880
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1881
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1882
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1883
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1884
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1885
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1886
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1887
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1888
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1889
|
+
-------------------
|
1890
|
+
BotTest: test_truth
|
1891
|
+
-------------------
|
1892
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1893
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1906
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1915
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1916
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1917
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1918
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1919
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1920
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1921
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1922
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1923
|
+
-------------------
|
1924
|
+
BotTest: test_truth
|
1925
|
+
-------------------
|
1926
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1927
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1940
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1949
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1950
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1951
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1952
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1953
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1954
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1955
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1956
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1965
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1978
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1979
|
+
-------------------
|
1980
|
+
BotTest: test_truth
|
1981
|
+
-------------------
|
1982
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1983
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1984
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1985
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1986
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1987
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1988
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1989
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1990
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1991
|
+
-------------------
|
1992
|
+
BotTest: test_truth
|
1993
|
+
-------------------
|
1994
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1995
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2008
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2017
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2018
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2019
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2020
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2021
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2022
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2023
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2024
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2025
|
+
-------------------
|
2026
|
+
BotTest: test_truth
|
2027
|
+
-------------------
|
2028
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2029
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2042
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2051
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2052
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2053
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2054
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2055
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
2056
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2057
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2058
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2071
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2080
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2081
|
+
-------------------
|
2082
|
+
BotTest: test_truth
|
2083
|
+
-------------------
|
2084
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2085
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2086
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2087
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2088
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2089
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2090
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2091
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2092
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2093
|
+
-------------------
|
2094
|
+
BotTest: test_truth
|
2095
|
+
-------------------
|
2096
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2097
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2110
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2119
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2120
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2121
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2122
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2123
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2124
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2125
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2139
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2148
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2149
|
+
-------------------
|
2150
|
+
BotTest: test_truth
|
2151
|
+
-------------------
|
2152
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2153
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2154
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2155
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2156
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2157
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2158
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2159
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2160
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2169
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2182
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2183
|
+
-------------------
|
2184
|
+
BotTest: test_truth
|
2185
|
+
-------------------
|
2186
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2187
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2188
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2189
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2190
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2191
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2192
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2193
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2194
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2195
|
+
-------------------
|
2196
|
+
BotTest: test_truth
|
2197
|
+
-------------------
|
2198
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2199
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2221
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2222
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2223
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
2224
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2225
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2226
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2227
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2228
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2229
|
+
-------------------
|
2230
|
+
BotTest: test_truth
|
2231
|
+
-------------------
|
2232
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2233
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2242
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2255
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2264
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2265
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2266
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2267
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2268
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2269
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2270
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2271
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2280
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2289
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2302
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2303
|
+
-------------------
|
2304
|
+
BotTest: test_truth
|
2305
|
+
-------------------
|
2306
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2307
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2308
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2309
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
2310
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2311
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
2312
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2313
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2314
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2315
|
+
-------------------
|
2316
|
+
BotTest: test_truth
|
2317
|
+
-------------------
|
2318
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2319
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2328
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2341
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2350
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2351
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2352
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2353
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2354
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2355
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2356
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2357
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2370
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2379
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2388
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2389
|
+
-------------------
|
2390
|
+
BotTest: test_truth
|
2391
|
+
-------------------
|
2392
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2393
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2394
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2395
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2396
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2397
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
2398
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
2399
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2400
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2413
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2422
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2431
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2432
|
+
-------------------
|
2433
|
+
BotTest: test_truth
|
2434
|
+
-------------------
|
2435
|
+
[1m[35m (0.1ms)[0m rollback transaction
|