oauth_service 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +7 -0
  4. data/Rakefile +34 -0
  5. data/app/controllers/concerns/oauth_service/google.rb +12 -0
  6. data/app/controllers/concerns/oauth_service/mailru.rb +29 -0
  7. data/app/controllers/concerns/oauth_service/yandex.rb +19 -0
  8. data/app/controllers/oauth_service/access_controller.rb +34 -0
  9. data/app/controllers/oauth_service/login_controller.rb +90 -0
  10. data/app/models/oauth_service/url.rb +9 -0
  11. data/app/models/oauth_service/user.rb +5 -0
  12. data/app/models/oauth_service/user_group.rb +5 -0
  13. data/app/models/oauth_service/users_group.rb +6 -0
  14. data/app/models/oauth_service/users_url.rb +6 -0
  15. data/config/routes.rb +6 -0
  16. data/lib/generators/oauth_service/controllers_generator.rb +15 -0
  17. data/lib/generators/oauth_service/install_generator.rb +15 -0
  18. data/lib/generators/oauth_service/migrations_generator.rb +20 -0
  19. data/lib/generators/oauth_service/models_generator.rb +17 -0
  20. data/lib/generators/templates/controllers/login_controller.rb +3 -0
  21. data/lib/generators/templates/migrations/create_tables.rb +45 -0
  22. data/lib/generators/templates/models/url.rb +2 -0
  23. data/lib/generators/templates/models/user.rb +3 -0
  24. data/lib/generators/templates/models/user_group.rb +3 -0
  25. data/lib/generators/templates/models/users_group.rb +3 -0
  26. data/lib/generators/templates/models/users_url.rb +2 -0
  27. data/lib/generators/templates/oauth_service.rb +12 -0
  28. data/lib/oauth_service/engine.rb +4 -0
  29. data/lib/oauth_service/provider.rb +85 -0
  30. data/lib/oauth_service/version.rb +3 -0
  31. data/lib/oauth_service.rb +29 -0
  32. data/lib/tasks/oauth_service_tasks.rake +4 -0
  33. data/test/dummy/README.rdoc +28 -0
  34. data/test/dummy/Rakefile +6 -0
  35. data/test/dummy/app/assets/javascripts/application.js +13 -0
  36. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  37. data/test/dummy/app/controllers/application_controller.rb +5 -0
  38. data/test/dummy/app/controllers/d_controller.rb +5 -0
  39. data/test/dummy/app/controllers/login_controller.rb +3 -0
  40. data/test/dummy/app/helpers/application_helper.rb +2 -0
  41. data/test/dummy/app/models/url.rb +2 -0
  42. data/test/dummy/app/models/user.rb +3 -0
  43. data/test/dummy/app/models/user_group.rb +3 -0
  44. data/test/dummy/app/models/users_group.rb +3 -0
  45. data/test/dummy/app/models/users_url.rb +2 -0
  46. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  47. data/test/dummy/app/views/login/index.html.erb +15 -0
  48. data/test/dummy/bin/bundle +3 -0
  49. data/test/dummy/bin/rails +4 -0
  50. data/test/dummy/bin/rake +4 -0
  51. data/test/dummy/bin/setup +29 -0
  52. data/test/dummy/config/application.rb +26 -0
  53. data/test/dummy/config/boot.rb +5 -0
  54. data/test/dummy/config/database.yml +25 -0
  55. data/test/dummy/config/environment.rb +5 -0
  56. data/test/dummy/config/environments/development.rb +41 -0
  57. data/test/dummy/config/environments/production.rb +79 -0
  58. data/test/dummy/config/environments/test.rb +42 -0
  59. data/test/dummy/config/initializers/assets.rb +11 -0
  60. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  62. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  63. data/test/dummy/config/initializers/inflections.rb +16 -0
  64. data/test/dummy/config/initializers/mime_types.rb +4 -0
  65. data/test/dummy/config/initializers/oauth_service.rb +12 -0
  66. data/test/dummy/config/initializers/session_store.rb +3 -0
  67. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  68. data/test/dummy/config/locales/en.yml +23 -0
  69. data/test/dummy/config/routes.rb +58 -0
  70. data/test/dummy/config/secrets.yml +22 -0
  71. data/test/dummy/config.ru +4 -0
  72. data/test/dummy/db/development.sqlite3 +0 -0
  73. data/test/dummy/db/migrate/20160514163909_create_tables.rb +45 -0
  74. data/test/dummy/db/schema.rb +45 -0
  75. data/test/dummy/log/development.log +17802 -0
  76. data/test/dummy/log/test.log +860 -0
  77. data/test/dummy/public/404.html +67 -0
  78. data/test/dummy/public/422.html +67 -0
  79. data/test/dummy/public/500.html +66 -0
  80. data/test/dummy/public/favicon.ico +0 -0
  81. data/test/dummy/test/fixtures/urls.yml +17 -0
  82. data/test/dummy/test/fixtures/user_groups.yml +7 -0
  83. data/test/dummy/test/fixtures/users.yml +9 -0
  84. data/test/dummy/test/fixtures/users_groups.yml +9 -0
  85. data/test/dummy/test/fixtures/users_urls.yml +9 -0
  86. data/test/dummy/test/models/url_test.rb +7 -0
  87. data/test/dummy/test/models/user_group_test.rb +7 -0
  88. data/test/dummy/test/models/user_test.rb +7 -0
  89. data/test/dummy/test/models/users_group_test.rb +7 -0
  90. data/test/dummy/test/models/users_url_test.rb +7 -0
  91. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +2 -0
  92. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6I/6Iapn2T9iTksiIpNjV38wlfVmi1jq4PD1Xh1Dr0fR0o.cache +0 -0
  93. data/test/dummy/tmp/cache/assets/sprockets/v3.0/CN/CN681ktqxLiK3U4MteA6Q4ZunlBxEgm2YFdmwxg3I6E.cache +0 -0
  94. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ch/Ch2bQFHkYziI9Erdkuj8uoPJyw0W2aA5prtYAqlccww.cache +1 -0
  95. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache +2 -0
  96. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fr/FrVwswdDNGIkD24DY-aVGVj_ODmW3_o_Ji5khIzOlMI.cache +0 -0
  97. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JY/JYpZExAhxpesd9z2s7dJupiDc-rDf6RBnmWH-HYpr2A.cache +1 -0
  98. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J_/J_9ERjsyvsou7I7CNLORkwcBYyxCSdQRj9el7fbYNx4.cache +1 -0
  99. data/test/dummy/tmp/cache/assets/sprockets/v3.0/K9/K9ZheMi0hi4DNLzmDMRnv9A_lOVz33kNImc16Now42o.cache +1 -0
  100. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LH/LHgjtAV8kdldaJ_dX0RCznzjmWYRuLdhU29fZCJ0VmU.cache +1 -0
  101. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nn/NnUCa7jNYx9HCmEB7E7WPWT00DwaM4IYICy1Ju1jjcs.cache +1 -0
  102. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +2 -0
  103. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Uo/Uon_Y1HqDVimN2TgfScHxbXPjDSsOsj6d7l8v4pJEO0.cache +0 -0
  104. data/test/dummy/tmp/cache/assets/sprockets/v3.0/b-/b-1gw2MCeaTZEWFQ_udDtgx4hJmooIz9uDVlHE97S2g.cache +1 -0
  105. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bs/bsek6r8m5C0VziFPGuHOVymYEpIXo5gZyfU-8nPj01M.cache +0 -0
  106. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gZ/gZp3uXMHuYQC4hzCr7bQfetKNdJAtbQmg3so2KpW1Dw.cache +2 -0
  107. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZ/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +2 -0
  108. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kz/kzdSvu57G4i6eTuarsZCAfbhbICnkRa0Xhi0b9ua6qk.cache +1 -0
  109. data/test/dummy/tmp/cache/assets/sprockets/v3.0/lz/lz4_WSikXa5YohqgYmqCvVmW_r_ncbvtgDX7bJoO03s.cache +0 -0
  110. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pE/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +2 -0
  111. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qS/qSORh00SA5qx5xcvNgMx-S-T737dJS6smxZEhRaf0J4.cache +0 -0
  112. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qd/qdZCi8acwxpvAQAC8sNXRjkz73Pdy7yQpG7_rNCxcYs.cache +0 -0
  113. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rC/rCO5-bHVJ6Y_GsPBmOPUL23pfjvc2Gw2zt_ODmZsygw.cache +1 -0
  114. data/test/dummy/tmp/cache/assets/sprockets/v3.0/uV/uVnTx3UxyufXVkCnR8AW30pR5GiIUTCMcOMEPWt38dY.cache +1 -0
  115. data/test/oauth_service_provider_test.rb +8 -0
  116. data/test/oauth_service_test.rb +7 -0
  117. data/test/test_helper.rb +19 -0
  118. metadata +273 -0
@@ -0,0 +1,860 @@
1
+  (0.3ms) begin transaction
2
+ ----------------------------
3
+ OauthServiceTest: test_truth
4
+ ----------------------------
5
+  (0.1ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ ---------------------------------------------
8
+ OauthServiceProviderTest: test_oauth_redirect
9
+ ---------------------------------------------
10
+  (0.0ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+ ------------------------------------
13
+ OauthServiceProviderTest: test_truth
14
+ ------------------------------------
15
+  (0.0ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ ---------------------------------------------
18
+ OauthServiceProviderTest: test_oauth_redirect
19
+ ---------------------------------------------
20
+  (0.1ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ ------------------------------------
23
+ OauthServiceProviderTest: test_truth
24
+ ------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.2ms) begin transaction
27
+ ---------------------------------------------
28
+ OauthServiceProviderTest: test_oauth_redirect
29
+ ---------------------------------------------
30
+  (0.1ms) rollback transaction
31
+  (0.1ms) begin transaction
32
+ ------------------------------------
33
+ OauthServiceProviderTest: test_truth
34
+ ------------------------------------
35
+  (0.1ms) rollback transaction
36
+  (0.2ms) begin transaction
37
+ ---------------------------------------------
38
+ OauthServiceProviderTest: test_oauth_redirect
39
+ ---------------------------------------------
40
+  (0.1ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ ------------------------------------
43
+ OauthServiceProviderTest: test_truth
44
+ ------------------------------------
45
+  (0.1ms) rollback transaction
46
+  (0.1ms) begin transaction
47
+ ---------------------------------------------
48
+ OauthServiceProviderTest: test_oauth_redirect
49
+ ---------------------------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ ------------------------------------
53
+ OauthServiceProviderTest: test_truth
54
+ ------------------------------------
55
+  (0.1ms) rollback transaction
56
+  (0.2ms) begin transaction
57
+ ---------------------------------------------
58
+ OauthServiceProviderTest: test_oauth_redirect
59
+ ---------------------------------------------
60
+  (0.1ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ ------------------------------------
63
+ OauthServiceProviderTest: test_truth
64
+ ------------------------------------
65
+  (0.0ms) rollback transaction
66
+  (0.2ms) begin transaction
67
+ ---------------------------------------------
68
+ OauthServiceProviderTest: test_oauth_redirect
69
+ ---------------------------------------------
70
+  (0.1ms) rollback transaction
71
+  (0.2ms) begin transaction
72
+ ------------------------------------
73
+ OauthServiceProviderTest: test_truth
74
+ ------------------------------------
75
+  (0.1ms) rollback transaction
76
+  (0.2ms) begin transaction
77
+ ---------------------------------------------
78
+ OauthServiceProviderTest: test_oauth_redirect
79
+ ---------------------------------------------
80
+  (0.1ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ ------------------------------------
83
+ OauthServiceProviderTest: test_truth
84
+ ------------------------------------
85
+  (0.1ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+ ------------------------------------
88
+ OauthServiceProviderTest: test_truth
89
+ ------------------------------------
90
+  (0.1ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+ ---------------------------------------------
93
+ OauthServiceProviderTest: test_oauth_redirect
94
+ ---------------------------------------------
95
+  (0.1ms) rollback transaction
96
+  (0.2ms) begin transaction
97
+ ---------------------------------------------
98
+ OauthServiceProviderTest: test_oauth_redirect
99
+ ---------------------------------------------
100
+  (0.1ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ ------------------------------------
103
+ OauthServiceProviderTest: test_truth
104
+ ------------------------------------
105
+  (0.1ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ ------------------------------------
108
+ OauthServiceProviderTest: test_truth
109
+ ------------------------------------
110
+  (0.1ms) rollback transaction
111
+  (0.1ms) begin transaction
112
+ ---------------------------------------------
113
+ OauthServiceProviderTest: test_oauth_redirect
114
+ ---------------------------------------------
115
+  (0.1ms) rollback transaction
116
+  (0.1ms) begin transaction
117
+ ---------------------------------------------
118
+ OauthServiceProviderTest: test_oauth_redirect
119
+ ---------------------------------------------
120
+  (0.1ms) rollback transaction
121
+  (0.1ms) begin transaction
122
+ ------------------------------------
123
+ OauthServiceProviderTest: test_truth
124
+ ------------------------------------
125
+  (0.1ms) rollback transaction
126
+  (0.1ms) begin transaction
127
+ ---------------------------------------------
128
+ OauthServiceProviderTest: test_oauth_redirect
129
+ ---------------------------------------------
130
+  (0.0ms) rollback transaction
131
+  (0.0ms) begin transaction
132
+ ------------------------------------
133
+ OauthServiceProviderTest: test_truth
134
+ ------------------------------------
135
+  (0.0ms) rollback transaction
136
+  (0.1ms) begin transaction
137
+ ---------------------------------------------
138
+ OauthServiceProviderTest: test_oauth_redirect
139
+ ---------------------------------------------
140
+  (0.1ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+ ------------------------------------
143
+ OauthServiceProviderTest: test_truth
144
+ ------------------------------------
145
+  (0.0ms) rollback transaction
146
+  (0.1ms) begin transaction
147
+ ------------------------------------
148
+ OauthServiceProviderTest: test_truth
149
+ ------------------------------------
150
+  (0.1ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ ---------------------------------------------
153
+ OauthServiceProviderTest: test_oauth_redirect
154
+ ---------------------------------------------
155
+  (0.1ms) rollback transaction
156
+  (0.2ms) begin transaction
157
+ ------------------------------------
158
+ OauthServiceProviderTest: test_truth
159
+ ------------------------------------
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ ---------------------------------------------
163
+ OauthServiceProviderTest: test_oauth_redirect
164
+ ---------------------------------------------
165
+  (0.1ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+ ---------------------------------------------
168
+ OauthServiceProviderTest: test_oauth_redirect
169
+ ---------------------------------------------
170
+  (0.1ms) rollback transaction
171
+  (0.1ms) begin transaction
172
+ ------------------------------------
173
+ OauthServiceProviderTest: test_truth
174
+ ------------------------------------
175
+  (0.1ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ ------------------------------------
178
+ OauthServiceProviderTest: test_truth
179
+ ------------------------------------
180
+  (0.1ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ ---------------------------------------------
183
+ OauthServiceProviderTest: test_oauth_redirect
184
+ ---------------------------------------------
185
+  (0.1ms) rollback transaction
186
+  (0.1ms) begin transaction
187
+ ---------------------------------------------
188
+ OauthServiceProviderTest: test_oauth_redirect
189
+ ---------------------------------------------
190
+  (0.1ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ ------------------------------------
193
+ OauthServiceProviderTest: test_truth
194
+ ------------------------------------
195
+  (0.1ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+ ---------------------------------------------
198
+ OauthServiceProviderTest: test_oauth_redirect
199
+ ---------------------------------------------
200
+  (0.0ms) rollback transaction
201
+  (0.0ms) begin transaction
202
+ ------------------------------------
203
+ OauthServiceProviderTest: test_truth
204
+ ------------------------------------
205
+  (0.0ms) rollback transaction
206
+  (0.2ms) begin transaction
207
+ ------------------------------------
208
+ OauthServiceProviderTest: test_truth
209
+ ------------------------------------
210
+  (0.1ms) rollback transaction
211
+  (0.1ms) begin transaction
212
+ ---------------------------------------------
213
+ OauthServiceProviderTest: test_oauth_redirect
214
+ ---------------------------------------------
215
+  (0.1ms) rollback transaction
216
+  (0.1ms) begin transaction
217
+ ---------------------------------------------
218
+ OauthServiceProviderTest: test_oauth_redirect
219
+ ---------------------------------------------
220
+  (0.0ms) rollback transaction
221
+  (0.0ms) begin transaction
222
+ ------------------------------------
223
+ OauthServiceProviderTest: test_truth
224
+ ------------------------------------
225
+  (0.0ms) rollback transaction
226
+  (0.1ms) begin transaction
227
+ ---------------------------------------------
228
+ OauthServiceProviderTest: test_oauth_redirect
229
+ ---------------------------------------------
230
+  (0.0ms) rollback transaction
231
+  (0.0ms) begin transaction
232
+ ------------------------------------
233
+ OauthServiceProviderTest: test_truth
234
+ ------------------------------------
235
+  (0.0ms) rollback transaction
236
+  (0.1ms) begin transaction
237
+ ---------------------------------------------
238
+ OauthServiceProviderTest: test_oauth_redirect
239
+ ---------------------------------------------
240
+  (0.1ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+ ------------------------------------
243
+ OauthServiceProviderTest: test_truth
244
+ ------------------------------------
245
+  (0.1ms) rollback transaction
246
+  (0.2ms) begin transaction
247
+ ---------------------------------------------
248
+ OauthServiceProviderTest: test_oauth_redirect
249
+ ---------------------------------------------
250
+  (0.1ms) rollback transaction
251
+  (0.1ms) begin transaction
252
+ ------------------------------------
253
+ OauthServiceProviderTest: test_truth
254
+ ------------------------------------
255
+  (0.1ms) rollback transaction
256
+  (0.2ms) begin transaction
257
+ ------------------------------------
258
+ OauthServiceProviderTest: test_truth
259
+ ------------------------------------
260
+  (0.1ms) rollback transaction
261
+  (0.1ms) begin transaction
262
+ ---------------------------------------------
263
+ OauthServiceProviderTest: test_oauth_redirect
264
+ ---------------------------------------------
265
+  (0.1ms) rollback transaction
266
+  (0.2ms) begin transaction
267
+ ------------------------------------
268
+ OauthServiceProviderTest: test_truth
269
+ ------------------------------------
270
+  (0.1ms) rollback transaction
271
+  (0.1ms) begin transaction
272
+ ---------------------------------------------
273
+ OauthServiceProviderTest: test_oauth_redirect
274
+ ---------------------------------------------
275
+  (0.1ms) rollback transaction
276
+  (0.1ms) begin transaction
277
+ ---------------------------------------------
278
+ OauthServiceProviderTest: test_oauth_redirect
279
+ ---------------------------------------------
280
+  (0.0ms) rollback transaction
281
+  (0.0ms) begin transaction
282
+ ------------------------------------
283
+ OauthServiceProviderTest: test_truth
284
+ ------------------------------------
285
+  (0.0ms) rollback transaction
286
+  (0.2ms) begin transaction
287
+ ---------------------------------------------
288
+ OauthServiceProviderTest: test_oauth_redirect
289
+ ---------------------------------------------
290
+  (0.1ms) rollback transaction
291
+  (0.1ms) begin transaction
292
+ ------------------------------------
293
+ OauthServiceProviderTest: test_truth
294
+ ------------------------------------
295
+  (0.1ms) rollback transaction
296
+  (0.1ms) begin transaction
297
+ ------------------------------------
298
+ OauthServiceProviderTest: test_truth
299
+ ------------------------------------
300
+  (0.0ms) rollback transaction
301
+  (0.0ms) begin transaction
302
+ ---------------------------------------------
303
+ OauthServiceProviderTest: test_oauth_redirect
304
+ ---------------------------------------------
305
+  (0.0ms) rollback transaction
306
+  (0.2ms) begin transaction
307
+ ---------------------------------------------
308
+ OauthServiceProviderTest: test_oauth_redirect
309
+ ---------------------------------------------
310
+  (0.2ms) rollback transaction
311
+  (0.1ms) begin transaction
312
+ ------------------------------------
313
+ OauthServiceProviderTest: test_truth
314
+ ------------------------------------
315
+  (0.2ms) rollback transaction
316
+  (0.1ms) begin transaction
317
+ ---------------------------------------------
318
+ OauthServiceProviderTest: test_oauth_redirect
319
+ ---------------------------------------------
320
+  (0.2ms) rollback transaction
321
+  (0.1ms) begin transaction
322
+ ------------------------------------
323
+ OauthServiceProviderTest: test_truth
324
+ ------------------------------------
325
+  (0.1ms) rollback transaction
326
+  (0.1ms) begin transaction
327
+ ---------------------------------------------
328
+ OauthServiceProviderTest: test_oauth_redirect
329
+ ---------------------------------------------
330
+  (0.2ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+ ------------------------------------
333
+ OauthServiceProviderTest: test_truth
334
+ ------------------------------------
335
+  (0.2ms) rollback transaction
336
+  (0.2ms) begin transaction
337
+ ---------------------------------------------
338
+ OauthServiceProviderTest: test_oauth_redirect
339
+ ---------------------------------------------
340
+  (0.1ms) rollback transaction
341
+  (0.1ms) begin transaction
342
+ ------------------------------------
343
+ OauthServiceProviderTest: test_truth
344
+ ------------------------------------
345
+  (0.1ms) rollback transaction
346
+  (0.1ms) begin transaction
347
+ ---------------------------------------------
348
+ OauthServiceProviderTest: test_oauth_redirect
349
+ ---------------------------------------------
350
+  (0.1ms) rollback transaction
351
+  (0.0ms) begin transaction
352
+ ------------------------------------
353
+ OauthServiceProviderTest: test_truth
354
+ ------------------------------------
355
+  (0.0ms) rollback transaction
356
+  (0.2ms) begin transaction
357
+ ---------------------------------------------
358
+ OauthServiceProviderTest: test_oauth_redirect
359
+ ---------------------------------------------
360
+  (0.2ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+ ------------------------------------
363
+ OauthServiceProviderTest: test_truth
364
+ ------------------------------------
365
+  (0.2ms) rollback transaction
366
+  (0.1ms) begin transaction
367
+ ---------------------------------------------
368
+ OauthServiceProviderTest: test_oauth_redirect
369
+ ---------------------------------------------
370
+  (0.1ms) rollback transaction
371
+  (0.0ms) begin transaction
372
+ ------------------------------------
373
+ OauthServiceProviderTest: test_truth
374
+ ------------------------------------
375
+  (0.0ms) rollback transaction
376
+  (0.2ms) begin transaction
377
+ ---------------------------------------------
378
+ OauthServiceProviderTest: test_oauth_redirect
379
+ ---------------------------------------------
380
+  (0.2ms) rollback transaction
381
+  (0.1ms) begin transaction
382
+ ------------------------------------
383
+ OauthServiceProviderTest: test_truth
384
+ ------------------------------------
385
+  (0.1ms) rollback transaction
386
+  (0.1ms) begin transaction
387
+ ---------------------------------------------
388
+ OauthServiceProviderTest: test_oauth_redirect
389
+ ---------------------------------------------
390
+  (0.0ms) rollback transaction
391
+  (0.1ms) begin transaction
392
+ ------------------------------------
393
+ OauthServiceProviderTest: test_truth
394
+ ------------------------------------
395
+  (0.0ms) rollback transaction
396
+  (0.2ms) begin transaction
397
+ ---------------------------------------------
398
+ OauthServiceProviderTest: test_oauth_redirect
399
+ ---------------------------------------------
400
+  (0.2ms) rollback transaction
401
+  (0.1ms) begin transaction
402
+ ------------------------------------
403
+ OauthServiceProviderTest: test_truth
404
+ ------------------------------------
405
+  (0.1ms) rollback transaction
406
+  (0.2ms) begin transaction
407
+ ------------------------------------
408
+ OauthServiceProviderTest: test_truth
409
+ ------------------------------------
410
+  (0.1ms) rollback transaction
411
+  (0.1ms) begin transaction
412
+ ---------------------------------------------
413
+ OauthServiceProviderTest: test_oauth_redirect
414
+ ---------------------------------------------
415
+  (0.1ms) rollback transaction
416
+  (0.1ms) begin transaction
417
+ ---------------------------------------------
418
+ OauthServiceProviderTest: test_oauth_redirect
419
+ ---------------------------------------------
420
+  (0.0ms) rollback transaction
421
+  (0.0ms) begin transaction
422
+ ------------------------------------
423
+ OauthServiceProviderTest: test_truth
424
+ ------------------------------------
425
+  (0.0ms) rollback transaction
426
+  (0.1ms) begin transaction
427
+ ---------------------------------------------
428
+ OauthServiceProviderTest: test_oauth_redirect
429
+ ---------------------------------------------
430
+  (0.2ms) rollback transaction
431
+  (0.1ms) begin transaction
432
+ ------------------------------------
433
+ OauthServiceProviderTest: test_truth
434
+ ------------------------------------
435
+  (0.2ms) rollback transaction
436
+  (0.1ms) begin transaction
437
+ ---------------------------------------------
438
+ OauthServiceProviderTest: test_oauth_redirect
439
+ ---------------------------------------------
440
+  (0.2ms) rollback transaction
441
+  (0.1ms) begin transaction
442
+ ------------------------------------
443
+ OauthServiceProviderTest: test_truth
444
+ ------------------------------------
445
+  (0.1ms) rollback transaction
446
+  (0.1ms) begin transaction
447
+ ------------------------------------
448
+ OauthServiceProviderTest: test_truth
449
+ ------------------------------------
450
+  (0.1ms) rollback transaction
451
+  (0.0ms) begin transaction
452
+ ---------------------------------------------
453
+ OauthServiceProviderTest: test_oauth_redirect
454
+ ---------------------------------------------
455
+  (0.0ms) rollback transaction
456
+  (0.1ms) begin transaction
457
+ ---------------------------------------------
458
+ OauthServiceProviderTest: test_oauth_redirect
459
+ ---------------------------------------------
460
+  (0.3ms) rollback transaction
461
+  (0.1ms) begin transaction
462
+ ------------------------------------
463
+ OauthServiceProviderTest: test_truth
464
+ ------------------------------------
465
+  (0.1ms) rollback transaction
466
+  (0.1ms) begin transaction
467
+ ---------------------------------------------
468
+ OauthServiceProviderTest: test_oauth_redirect
469
+ ---------------------------------------------
470
+  (0.3ms) rollback transaction
471
+  (0.1ms) begin transaction
472
+ ------------------------------------
473
+ OauthServiceProviderTest: test_truth
474
+ ------------------------------------
475
+  (0.1ms) rollback transaction
476
+  (0.1ms) begin transaction
477
+ ---------------------------------------------
478
+ OauthServiceProviderTest: test_oauth_redirect
479
+ ---------------------------------------------
480
+  (0.0ms) rollback transaction
481
+  (0.0ms) begin transaction
482
+ ------------------------------------
483
+ OauthServiceProviderTest: test_truth
484
+ ------------------------------------
485
+  (0.0ms) rollback transaction
486
+  (0.1ms) begin transaction
487
+ ------------------------------------
488
+ OauthServiceProviderTest: test_truth
489
+ ------------------------------------
490
+  (0.1ms) rollback transaction
491
+  (0.1ms) begin transaction
492
+ ---------------------------------------------
493
+ OauthServiceProviderTest: test_oauth_redirect
494
+ ---------------------------------------------
495
+  (0.2ms) rollback transaction
496
+  (0.1ms) begin transaction
497
+ ---------------------------------------------
498
+ OauthServiceProviderTest: test_oauth_redirect
499
+ ---------------------------------------------
500
+  (0.1ms) rollback transaction
501
+  (0.1ms) begin transaction
502
+ ------------------------------------
503
+ OauthServiceProviderTest: test_truth
504
+ ------------------------------------
505
+  (0.1ms) rollback transaction
506
+  (0.1ms) begin transaction
507
+ ------------------------------------
508
+ OauthServiceProviderTest: test_truth
509
+ ------------------------------------
510
+  (0.2ms) rollback transaction
511
+  (0.1ms) begin transaction
512
+ ---------------------------------------------
513
+ OauthServiceProviderTest: test_oauth_redirect
514
+ ---------------------------------------------
515
+  (0.1ms) rollback transaction
516
+  (0.1ms) begin transaction
517
+ ---------------------------------------------
518
+ OauthServiceProviderTest: test_oauth_redirect
519
+ ---------------------------------------------
520
+  (0.1ms) rollback transaction
521
+  (0.1ms) begin transaction
522
+ ------------------------------------
523
+ OauthServiceProviderTest: test_truth
524
+ ------------------------------------
525
+  (0.1ms) rollback transaction
526
+  (0.1ms) begin transaction
527
+ ---------------------------------------------
528
+ OauthServiceProviderTest: test_oauth_redirect
529
+ ---------------------------------------------
530
+  (0.1ms) rollback transaction
531
+  (0.1ms) begin transaction
532
+ ------------------------------------
533
+ OauthServiceProviderTest: test_truth
534
+ ------------------------------------
535
+  (0.1ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+ ---------------------------------------------
538
+ OauthServiceProviderTest: test_oauth_redirect
539
+ ---------------------------------------------
540
+  (0.1ms) rollback transaction
541
+  (0.1ms) begin transaction
542
+ ------------------------------------
543
+ OauthServiceProviderTest: test_truth
544
+ ------------------------------------
545
+  (0.1ms) rollback transaction
546
+  (0.1ms) begin transaction
547
+ ------------------------------------
548
+ OauthServiceProviderTest: test_truth
549
+ ------------------------------------
550
+  (0.0ms) rollback transaction
551
+  (0.0ms) begin transaction
552
+ ---------------------------------------------
553
+ OauthServiceProviderTest: test_oauth_redirect
554
+ ---------------------------------------------
555
+  (0.0ms) rollback transaction
556
+  (0.1ms) begin transaction
557
+ ---------------------------------------------
558
+ OauthServiceProviderTest: test_oauth_redirect
559
+ ---------------------------------------------
560
+  (0.1ms) rollback transaction
561
+  (0.1ms) begin transaction
562
+ ------------------------------------
563
+ OauthServiceProviderTest: test_truth
564
+ ------------------------------------
565
+  (0.1ms) rollback transaction
566
+  (0.1ms) begin transaction
567
+ ---------------------------------------------
568
+ OauthServiceProviderTest: test_oauth_redirect
569
+ ---------------------------------------------
570
+  (0.1ms) rollback transaction
571
+  (0.1ms) begin transaction
572
+ ------------------------------------
573
+ OauthServiceProviderTest: test_truth
574
+ ------------------------------------
575
+  (0.1ms) rollback transaction
576
+  (0.1ms) begin transaction
577
+ ------------------------------------
578
+ OauthServiceProviderTest: test_truth
579
+ ------------------------------------
580
+  (0.0ms) rollback transaction
581
+  (0.0ms) begin transaction
582
+ ---------------------------------------------
583
+ OauthServiceProviderTest: test_oauth_redirect
584
+ ---------------------------------------------
585
+  (0.1ms) rollback transaction
586
+  (0.1ms) begin transaction
587
+ ---------------------------------------------
588
+ OauthServiceProviderTest: test_oauth_redirect
589
+ ---------------------------------------------
590
+  (0.2ms) rollback transaction
591
+  (0.2ms) begin transaction
592
+ ------------------------------------
593
+ OauthServiceProviderTest: test_truth
594
+ ------------------------------------
595
+  (0.2ms) rollback transaction
596
+  (0.2ms) begin transaction
597
+ ------------------------------------
598
+ OauthServiceProviderTest: test_truth
599
+ ------------------------------------
600
+  (0.1ms) rollback transaction
601
+  (0.1ms) begin transaction
602
+ ---------------------------------------------
603
+ OauthServiceProviderTest: test_oauth_redirect
604
+ ---------------------------------------------
605
+  (0.1ms) rollback transaction
606
+  (0.1ms) begin transaction
607
+ ------------------------------------
608
+ OauthServiceProviderTest: test_truth
609
+ ------------------------------------
610
+  (0.1ms) rollback transaction
611
+  (0.1ms) begin transaction
612
+ ---------------------------------------------
613
+ OauthServiceProviderTest: test_oauth_redirect
614
+ ---------------------------------------------
615
+  (0.2ms) rollback transaction
616
+  (0.1ms) begin transaction
617
+ ---------------------------------------------
618
+ OauthServiceProviderTest: test_oauth_redirect
619
+ ---------------------------------------------
620
+  (0.1ms) rollback transaction
621
+  (0.1ms) begin transaction
622
+ ------------------------------------
623
+ OauthServiceProviderTest: test_truth
624
+ ------------------------------------
625
+  (0.1ms) rollback transaction
626
+  (0.1ms) begin transaction
627
+ ---------------------------------------------
628
+ OauthServiceProviderTest: test_oauth_redirect
629
+ ---------------------------------------------
630
+  (0.1ms) rollback transaction
631
+  (0.1ms) begin transaction
632
+ ------------------------------------
633
+ OauthServiceProviderTest: test_truth
634
+ ------------------------------------
635
+  (0.1ms) rollback transaction
636
+  (0.1ms) begin transaction
637
+ ------------------------------------
638
+ OauthServiceProviderTest: test_truth
639
+ ------------------------------------
640
+  (0.0ms) rollback transaction
641
+  (0.0ms) begin transaction
642
+ ---------------------------------------------
643
+ OauthServiceProviderTest: test_oauth_redirect
644
+ ---------------------------------------------
645
+  (0.1ms) rollback transaction
646
+  (0.2ms) begin transaction
647
+ ---------------------------------------------
648
+ OauthServiceProviderTest: test_oauth_redirect
649
+ ---------------------------------------------
650
+  (0.2ms) rollback transaction
651
+  (0.1ms) begin transaction
652
+ ------------------------------------
653
+ OauthServiceProviderTest: test_truth
654
+ ------------------------------------
655
+  (0.1ms) rollback transaction
656
+  (0.1ms) begin transaction
657
+ ---------------------------------------------
658
+ OauthServiceProviderTest: test_oauth_redirect
659
+ ---------------------------------------------
660
+  (0.2ms) rollback transaction
661
+  (0.1ms) begin transaction
662
+ ------------------------------------
663
+ OauthServiceProviderTest: test_truth
664
+ ------------------------------------
665
+  (0.1ms) rollback transaction
666
+  (0.1ms) begin transaction
667
+ ---------------------------------------------
668
+ OauthServiceProviderTest: test_oauth_redirect
669
+ ---------------------------------------------
670
+  (0.1ms) rollback transaction
671
+  (0.0ms) begin transaction
672
+ ------------------------------------
673
+ OauthServiceProviderTest: test_truth
674
+ ------------------------------------
675
+  (0.1ms) rollback transaction
676
+  (0.1ms) begin transaction
677
+ ---------------------------------------------
678
+ OauthServiceProviderTest: test_oauth_redirect
679
+ ---------------------------------------------
680
+  (0.2ms) rollback transaction
681
+  (0.2ms) begin transaction
682
+ ------------------------------------
683
+ OauthServiceProviderTest: test_truth
684
+ ------------------------------------
685
+  (0.2ms) rollback transaction
686
+  (0.1ms) begin transaction
687
+ ---------------------------------------------
688
+ OauthServiceProviderTest: test_oauth_redirect
689
+ ---------------------------------------------
690
+  (0.2ms) rollback transaction
691
+  (0.1ms) begin transaction
692
+ ------------------------------------
693
+ OauthServiceProviderTest: test_truth
694
+ ------------------------------------
695
+  (0.1ms) rollback transaction
696
+  (0.1ms) begin transaction
697
+ ---------------------------------------------
698
+ OauthServiceProviderTest: test_oauth_redirect
699
+ ---------------------------------------------
700
+  (0.2ms) rollback transaction
701
+  (0.1ms) begin transaction
702
+ ------------------------------------
703
+ OauthServiceProviderTest: test_truth
704
+ ------------------------------------
705
+  (0.1ms) rollback transaction
706
+  (0.2ms) begin transaction
707
+ ---------------------------------------------
708
+ OauthServiceProviderTest: test_oauth_redirect
709
+ ---------------------------------------------
710
+  (0.2ms) rollback transaction
711
+  (0.1ms) begin transaction
712
+ ------------------------------------
713
+ OauthServiceProviderTest: test_truth
714
+ ------------------------------------
715
+  (0.1ms) rollback transaction
716
+  (0.2ms) begin transaction
717
+ ---------------------------------------------
718
+ OauthServiceProviderTest: test_oauth_redirect
719
+ ---------------------------------------------
720
+  (0.2ms) rollback transaction
721
+  (0.1ms) begin transaction
722
+ ------------------------------------
723
+ OauthServiceProviderTest: test_truth
724
+ ------------------------------------
725
+  (0.1ms) rollback transaction
726
+  (0.2ms) begin transaction
727
+ ------------------------------------
728
+ OauthServiceProviderTest: test_truth
729
+ ------------------------------------
730
+  (0.0ms) rollback transaction
731
+  (0.0ms) begin transaction
732
+ ---------------------------------------------
733
+ OauthServiceProviderTest: test_oauth_redirect
734
+ ---------------------------------------------
735
+  (0.2ms) rollback transaction
736
+  (112.9ms) CREATE TABLE "urls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_pattern" varchar, "name" varchar, "hhtp_method" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
737
+  (97.8ms) CREATE TABLE "user_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
738
+  (99.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "api_code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
739
+  (98.1ms) CREATE TABLE "users_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_group_id" integer, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
740
+  (124.4ms) CREATE TABLE "users_urls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "users_group_id" integer, "url_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
741
+  (130.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
742
+  (0.1ms) select sqlite_version(*)
743
+  (132.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
744
+  (0.1ms) SELECT version FROM "schema_migrations"
745
+  (149.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20160510171837')
746
+  (134.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20160510171728')
747
+  (124.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20160510162127')
748
+  (124.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20160510162308')
749
+  (124.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20160510163400')
750
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
751
+  (0.2ms) begin transaction
752
+ ---------------------------------------------
753
+ OauthServiceProviderTest: test_oauth_redirect
754
+ ---------------------------------------------
755
+  (0.2ms) rollback transaction
756
+  (0.1ms) begin transaction
757
+ ------------------------------------
758
+ OauthServiceProviderTest: test_truth
759
+ ------------------------------------
760
+  (0.1ms) rollback transaction
761
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
762
+  (0.1ms) begin transaction
763
+ ---------------------------------------------
764
+ OauthServiceProviderTest: test_oauth_redirect
765
+ ---------------------------------------------
766
+  (0.1ms) rollback transaction
767
+  (0.1ms) begin transaction
768
+ ------------------------------------
769
+ OauthServiceProviderTest: test_truth
770
+ ------------------------------------
771
+  (0.0ms) rollback transaction
772
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
773
+  (0.1ms) begin transaction
774
+ ---------------------------------------------
775
+ OauthServiceProviderTest: test_oauth_redirect
776
+ ---------------------------------------------
777
+  (0.2ms) rollback transaction
778
+  (0.1ms) begin transaction
779
+ ------------------------------------
780
+ OauthServiceProviderTest: test_truth
781
+ ------------------------------------
782
+  (0.1ms) rollback transaction
783
+  (96.5ms) CREATE TABLE "urls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "url_pattern" varchar, "name" varchar, "http_method" varchar) 
784
+  (116.4ms) CREATE TABLE "user_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
785
+  (98.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "api_code" varchar) 
786
+  (98.0ms) CREATE TABLE "users_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_group_id" integer, "user_id" integer)
787
+  (124.8ms) CREATE TABLE "users_urls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "users_group_id" integer, "url_id" integer) 
788
+  (110.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
789
+  (0.3ms) select sqlite_version(*)
790
+  (98.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
791
+  (0.3ms) SELECT version FROM "schema_migrations"
792
+  (98.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160510162127')
793
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
794
+  (0.2ms) begin transaction
795
+ ------------------------------------
796
+ OauthServiceProviderTest: test_truth
797
+ ------------------------------------
798
+  (0.1ms) rollback transaction
799
+  (0.1ms) begin transaction
800
+ ---------------------------------------------
801
+ OauthServiceProviderTest: test_oauth_redirect
802
+ ---------------------------------------------
803
+  (0.1ms) rollback transaction
804
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
805
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
806
+  (0.1ms) begin transaction
807
+ ---------------------------------------------
808
+ OauthServiceProviderTest: test_oauth_redirect
809
+ ---------------------------------------------
810
+  (0.2ms) rollback transaction
811
+  (0.1ms) begin transaction
812
+ ------------------------------------
813
+ OauthServiceProviderTest: test_truth
814
+ ------------------------------------
815
+  (0.1ms) rollback transaction
816
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
817
+  (0.1ms) begin transaction
818
+ ------------------------------------
819
+ OauthServiceProviderTest: test_truth
820
+ ------------------------------------
821
+  (0.0ms) rollback transaction
822
+  (0.0ms) begin transaction
823
+ ---------------------------------------------
824
+ OauthServiceProviderTest: test_oauth_redirect
825
+ ---------------------------------------------
826
+  (0.2ms) rollback transaction
827
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
828
+  (0.1ms) begin transaction
829
+ ------------------------------------
830
+ OauthServiceProviderTest: test_truth
831
+ ------------------------------------
832
+  (0.0ms) rollback transaction
833
+  (0.0ms) begin transaction
834
+ ---------------------------------------------
835
+ OauthServiceProviderTest: test_oauth_redirect
836
+ ---------------------------------------------
837
+  (0.2ms) rollback transaction
838
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
839
+  (0.1ms) begin transaction
840
+ ---------------------------------------------
841
+ OauthServiceProviderTest: test_oauth_redirect
842
+ ---------------------------------------------
843
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."name" = ? [["name", "y.barkovskij@unact.ru"]]
844
+  (0.1ms) rollback transaction
845
+  (0.1ms) begin transaction
846
+ ------------------------------------
847
+ OauthServiceProviderTest: test_truth
848
+ ------------------------------------
849
+  (0.1ms) rollback transaction
850
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
851
+  (0.1ms) begin transaction
852
+ ---------------------------------------------
853
+ OauthServiceProviderTest: test_oauth_redirect
854
+ ---------------------------------------------
855
+  (0.2ms) rollback transaction
856
+  (0.1ms) begin transaction
857
+ ------------------------------------
858
+ OauthServiceProviderTest: test_truth
859
+ ------------------------------------
860
+  (0.2ms) rollback transaction