deforest 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 (72) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +37 -0
  4. data/app/assets/javascripts/deforest/application.js +14 -0
  5. data/app/assets/javascripts/deforest/logs.js +2 -0
  6. data/app/assets/stylesheets/deforest/application.css +15 -0
  7. data/app/assets/stylesheets/deforest/logs.css +4 -0
  8. data/app/controllers/deforest/application_controller.rb +5 -0
  9. data/app/controllers/deforest/files_controller.rb +50 -0
  10. data/app/helpers/deforest/application_helper.rb +4 -0
  11. data/app/helpers/deforest/logs_helper.rb +4 -0
  12. data/app/models/deforest/log.rb +37 -0
  13. data/app/views/deforest/files/dashboard.html.erb +28 -0
  14. data/app/views/deforest/files/index.html.erb +16 -0
  15. data/app/views/deforest/files/show.html.erb +39 -0
  16. data/app/views/layouts/deforest/application.html.erb +14 -0
  17. data/config/routes.rb +5 -0
  18. data/db/migrate/20230113124304_create_deforest_logs.rb +12 -0
  19. data/lib/deforest/engine.rb +5 -0
  20. data/lib/deforest/version.rb +3 -0
  21. data/lib/deforest.rb +161 -0
  22. data/lib/tasks/deforest_initializer.rb +6 -0
  23. data/lib/tasks/deforest_tasks.rake +7 -0
  24. data/test/controllers/deforest/logs_controller_test.rb +13 -0
  25. data/test/deforest_test.rb +47 -0
  26. data/test/dummy/README.rdoc +28 -0
  27. data/test/dummy/Rakefile +6 -0
  28. data/test/dummy/app/assets/javascripts/application.js +13 -0
  29. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  30. data/test/dummy/app/controllers/application_controller.rb +5 -0
  31. data/test/dummy/app/helpers/application_helper.rb +2 -0
  32. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  33. data/test/dummy/bin/bundle +3 -0
  34. data/test/dummy/bin/rails +4 -0
  35. data/test/dummy/bin/rake +4 -0
  36. data/test/dummy/bin/setup +29 -0
  37. data/test/dummy/config/application.rb +27 -0
  38. data/test/dummy/config/boot.rb +5 -0
  39. data/test/dummy/config/database.yml +25 -0
  40. data/test/dummy/config/environment.rb +5 -0
  41. data/test/dummy/config/environments/development.rb +41 -0
  42. data/test/dummy/config/environments/production.rb +79 -0
  43. data/test/dummy/config/environments/test.rb +42 -0
  44. data/test/dummy/config/initializers/assets.rb +11 -0
  45. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  46. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  47. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  48. data/test/dummy/config/initializers/inflections.rb +16 -0
  49. data/test/dummy/config/initializers/mime_types.rb +4 -0
  50. data/test/dummy/config/initializers/session_store.rb +3 -0
  51. data/test/dummy/config/initializers/to_time_preserves_timezone.rb +10 -0
  52. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  53. data/test/dummy/config/locales/en.yml +23 -0
  54. data/test/dummy/config/routes.rb +4 -0
  55. data/test/dummy/config/secrets.yml +22 -0
  56. data/test/dummy/config.ru +4 -0
  57. data/test/dummy/db/development.sqlite3 +0 -0
  58. data/test/dummy/db/migrate/20230211204438_create_users.rb +13 -0
  59. data/test/dummy/db/schema.rb +41 -0
  60. data/test/dummy/db/test.sqlite3 +0 -0
  61. data/test/dummy/deforest_db_sync.txt +1 -0
  62. data/test/dummy/log/development.log +60 -0
  63. data/test/dummy/log/test.log +3086 -0
  64. data/test/dummy/public/404.html +67 -0
  65. data/test/dummy/public/422.html +67 -0
  66. data/test/dummy/public/500.html +66 -0
  67. data/test/dummy/public/favicon.ico +0 -0
  68. data/test/fixtures/deforest/logs.yml +37 -0
  69. data/test/integration/navigation_test.rb +8 -0
  70. data/test/models/deforest/log_test.rb +45 -0
  71. data/test/test_helper.rb +21 -0
  72. metadata +247 -0
@@ -0,0 +1,3086 @@
1
+  (0.1ms) DROP TABLE IF EXISTS "deforest_logs"
2
+  (0.1ms) SELECT sqlite_version(*)
3
+  (1.9ms) CREATE TABLE "deforest_logs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "file_name" varchar, "line_no" integer, "method_name" varchar, "count" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
4
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
5
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
6
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES (20230113124304)
7
+  (1.5ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
9
+  (0.1ms) begin transaction
10
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2023-02-07 19:35:34.381957"], ["updated_at", "2023-02-07 19:35:34.381957"]]
11
+  (0.8ms) commit transaction
12
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
13
+  (0.1ms) begin transaction
14
+  (0.0ms) commit transaction
15
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
16
+  (0.0ms) PRAGMA foreign_keys
17
+  (0.0ms) PRAGMA foreign_keys = OFF
18
+  (0.0ms) begin transaction
19
+ Fixture Delete (0.6ms) DELETE FROM "deforest_logs"
20
+ Fixture Insert (0.2ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-07 19:35:34.455179', '2023-02-07 19:35:34.455179', 980190962)
21
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-07 19:35:34.455179', '2023-02-07 19:35:34.455179', 298486374)
22
+  (0.6ms) commit transaction
23
+  (0.1ms) PRAGMA foreign_keys = 1
24
+  (0.0ms) begin transaction
25
+ ------------------------
26
+ DeforestTest: test_truth
27
+ ------------------------
28
+  (0.0ms) rollback transaction
29
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
30
+  (0.1ms) PRAGMA foreign_keys
31
+  (0.0ms) PRAGMA foreign_keys = OFF
32
+  (0.1ms) begin transaction
33
+ Fixture Delete (0.6ms) DELETE FROM "deforest_logs"
34
+ Fixture Insert (0.2ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-07 19:36:08.843980', '2023-02-07 19:36:08.843980', 980190962)
35
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-07 19:36:08.843980', '2023-02-07 19:36:08.843980', 298486374)
36
+  (2.9ms) commit transaction
37
+  (0.1ms) PRAGMA foreign_keys = 1
38
+  (0.0ms) begin transaction
39
+ ------------------------
40
+ DeforestTest: test_truth
41
+ ------------------------
42
+  (0.0ms) rollback transaction
43
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
44
+  (0.0ms) PRAGMA foreign_keys
45
+  (0.1ms) PRAGMA foreign_keys = OFF
46
+  (0.0ms) begin transaction
47
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
48
+ Fixture Insert (0.5ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-11 10:56:01.292447', '2023-02-11 10:56:01.292447', 980190962)
49
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-11 10:56:01.292447', '2023-02-11 10:56:01.292447', 298486374)
50
+  (1.5ms) commit transaction
51
+  (0.1ms) PRAGMA foreign_keys = 1
52
+  (0.0ms) begin transaction
53
+ ------------------------
54
+ DeforestTest: test_truth
55
+ ------------------------
56
+  (0.1ms) rollback transaction
57
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
58
+  (0.1ms) PRAGMA foreign_keys
59
+  (0.0ms) PRAGMA foreign_keys = OFF
60
+  (0.0ms) begin transaction
61
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
62
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-11 10:56:46.385599', '2023-02-11 10:56:46.385599', 980190962)
63
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-11 10:56:46.385599', '2023-02-11 10:56:46.385599', 298486374)
64
+  (2.4ms) commit transaction
65
+  (0.1ms) PRAGMA foreign_keys = 1
66
+  (0.0ms) begin transaction
67
+ ------------------------
68
+ DeforestTest: test_truth
69
+ ------------------------
70
+  (0.0ms) rollback transaction
71
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
72
+  (0.0ms) PRAGMA foreign_keys
73
+  (0.0ms) PRAGMA foreign_keys = OFF
74
+  (0.0ms) begin transaction
75
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
76
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-11 10:58:07.325140', '2023-02-11 10:58:07.325140', 980190962)
77
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-11 10:58:07.325140', '2023-02-11 10:58:07.325140', 298486374)
78
+  (1.3ms) commit transaction
79
+  (0.1ms) PRAGMA foreign_keys = 1
80
+  (0.0ms) begin transaction
81
+ ------------------------
82
+ DeforestTest: test_truth
83
+ ------------------------
84
+  (0.0ms) rollback transaction
85
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
86
+  (0.1ms) begin transaction
87
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
88
+ Fixture Insert (0.5ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-11 11:45:37', '2023-02-11 11:45:37', 980190962)
89
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('MyString', 1, 'MyString', 1, '2023-02-11 11:45:37', '2023-02-11 11:45:37', 298486374)
90
+  (1.1ms) commit transaction
91
+  (0.0ms) begin transaction
92
+ ------------------------
93
+ DeforestTest: test_truth
94
+ ------------------------
95
+  (0.0ms) rollback transaction
96
+  (0.0ms) begin transaction
97
+ --------------------------------------
98
+ Deforest::LogTest: test_get_model_name
99
+ --------------------------------------
100
+  (0.0ms) rollback transaction
101
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
102
+  (0.1ms) begin transaction
103
+ Fixture Delete (1.0ms) DELETE FROM "deforest_logs"
104
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 12:00:25', '2023-02-11 12:00:25', 423619404)
105
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 12:00:25', '2023-02-11 12:00:25', 298486374)
106
+  (1.3ms) commit transaction
107
+  (0.1ms) begin transaction
108
+ ------------------------
109
+ DeforestTest: test_truth
110
+ ------------------------
111
+  (0.0ms) rollback transaction
112
+  (0.0ms) begin transaction
113
+ --------------------------------------
114
+ Deforest::LogTest: test_get_model_name
115
+ --------------------------------------
116
+  (0.0ms) rollback transaction
117
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
118
+  (0.1ms) begin transaction
119
+ Fixture Delete (0.2ms) DELETE FROM "logs"
120
+  (0.0ms) rollback transaction
121
+  (0.0ms) begin transaction
122
+ Fixture Delete (0.1ms) DELETE FROM "logs"
123
+  (0.0ms) rollback transaction
124
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
125
+  (0.1ms) begin transaction
126
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
127
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 12:08:12', '2023-02-11 12:08:12', 423619404)
128
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 12:08:12', '2023-02-11 12:08:12', 298486374)
129
+  (1.9ms) commit transaction
130
+  (0.0ms) begin transaction
131
+ --------------------------------------
132
+ Deforest::LogTest: test_get_model_name
133
+ --------------------------------------
134
+  (0.1ms) rollback transaction
135
+  (0.0ms) begin transaction
136
+ ------------------------
137
+ DeforestTest: test_truth
138
+ ------------------------
139
+  (0.0ms) rollback transaction
140
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
141
+  (0.0ms) begin transaction
142
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
143
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 12:08:34', '2023-02-11 12:08:34', 423619404)
144
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 12:08:34', '2023-02-11 12:08:34', 298486374)
145
+  (2.4ms) commit transaction
146
+  (0.1ms) begin transaction
147
+ --------------------------------------
148
+ Deforest::LogTest: test_get_model_name
149
+ --------------------------------------
150
+  (0.1ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ ------------------------
153
+ DeforestTest: test_truth
154
+ ------------------------
155
+  (0.0ms) rollback transaction
156
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
157
+  (0.1ms) begin transaction
158
+ Fixture Delete (1.2ms) DELETE FROM "deforest_logs"
159
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 12:11:52', '2023-02-11 12:11:52', 423619404)
160
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 12:11:52', '2023-02-11 12:11:52', 298486374)
161
+  (1.5ms) commit transaction
162
+  (0.0ms) begin transaction
163
+ ------------------------
164
+ DeforestTest: test_truth
165
+ ------------------------
166
+  (0.0ms) rollback transaction
167
+  (0.0ms) begin transaction
168
+ --------------------------------------
169
+ Deforest::LogTest: test_get_model_name
170
+ --------------------------------------
171
+  (0.0ms) rollback transaction
172
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
173
+  (0.0ms) begin transaction
174
+ Fixture Delete (0.2ms) DELETE FROM "deforest_logs"
175
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 12:12:25', '2023-02-11 12:12:25', 545366268)
176
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 12:12:25', '2023-02-11 12:12:25', 298486374)
177
+  (3.0ms) commit transaction
178
+  (0.1ms) begin transaction
179
+ --------------------------------------
180
+ Deforest::LogTest: test_get_model_name
181
+ --------------------------------------
182
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 545366268]]
183
+  (0.1ms) rollback transaction
184
+  (0.1ms) begin transaction
185
+ ------------------------
186
+ DeforestTest: test_truth
187
+ ------------------------
188
+  (0.0ms) rollback transaction
189
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
190
+  (0.1ms) begin transaction
191
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
192
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 12:13:08', '2023-02-11 12:13:08', 545366268)
193
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 12:13:08', '2023-02-11 12:13:08', 298486374)
194
+  (1.1ms) commit transaction
195
+  (0.1ms) begin transaction
196
+ --------------------------------------
197
+ Deforest::LogTest: test_get_model_name
198
+ --------------------------------------
199
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 545366268]]
200
+  (0.1ms) rollback transaction
201
+  (0.0ms) begin transaction
202
+ ------------------------
203
+ DeforestTest: test_truth
204
+ ------------------------
205
+  (0.0ms) rollback transaction
206
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
207
+  (0.1ms) begin transaction
208
+ Fixture Delete (0.6ms) DELETE FROM "deforest_logs"
209
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 12:15:29', '2023-02-11 12:15:29', 545366268)
210
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 12:15:29', '2023-02-11 12:15:29', 298486374)
211
+  (1.2ms) commit transaction
212
+  (0.0ms) begin transaction
213
+ --------------------------------------
214
+ Deforest::LogTest: test_get_model_name
215
+ --------------------------------------
216
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 545366268]]
217
+  (0.1ms) rollback transaction
218
+  (0.0ms) begin transaction
219
+ ------------------------
220
+ DeforestTest: test_truth
221
+ ------------------------
222
+  (0.0ms) rollback transaction
223
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
224
+  (0.1ms) begin transaction
225
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
226
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 12:15:58', '2023-02-11 12:15:58', 545366268)
227
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 12:15:58', '2023-02-11 12:15:58', 298486374)
228
+  (1.1ms) commit transaction
229
+  (0.1ms) begin transaction
230
+ ------------------------
231
+ DeforestTest: test_truth
232
+ ------------------------
233
+  (0.1ms) rollback transaction
234
+  (0.0ms) begin transaction
235
+ --------------------------------------
236
+ Deforest::LogTest: test_get_model_name
237
+ --------------------------------------
238
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 545366268]]
239
+  (0.1ms) rollback transaction
240
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
241
+  (0.1ms) begin transaction
242
+ Fixture Delete (0.2ms) DELETE FROM "deforest_setting"
243
+  (0.0ms) rollback transaction
244
+  (0.0ms) begin transaction
245
+ Fixture Delete (0.1ms) DELETE FROM "deforest_setting"
246
+  (0.0ms) rollback transaction
247
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
248
+  (0.1ms) begin transaction
249
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
250
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 13:08:33', '2023-02-11 13:08:33', 980190962)
251
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 13:08:33', '2023-02-11 13:08:33', 298486374)
252
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 13:08:33', '2023-02-11 13:08:33', 113629430)
253
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 13:08:33', '2023-02-11 13:08:33', 933434481)
254
+  (1.2ms) commit transaction
255
+  (0.0ms) begin transaction
256
+ ------------------------
257
+ DeforestTest: test_truth
258
+ ------------------------
259
+  (0.0ms) rollback transaction
260
+  (0.0ms) begin transaction
261
+ --------------------------------------
262
+ Deforest::LogTest: test_get_model_name
263
+ --------------------------------------
264
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
265
+  (0.1ms) rollback transaction
266
+  (0.0ms) begin transaction
267
+ ----------------------------------
268
+ Deforest::LogTest: test_percentile
269
+ ----------------------------------
270
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name ilike '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
271
+  (0.0ms) rollback transaction
272
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
273
+  (0.1ms) begin transaction
274
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
275
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 13:28:37', '2023-02-11 13:28:37', 980190962)
276
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 13:28:37', '2023-02-11 13:28:37', 298486374)
277
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 13:28:37', '2023-02-11 13:28:37', 113629430)
278
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 13:28:37', '2023-02-11 13:28:37', 933434481)
279
+  (1.3ms) commit transaction
280
+  (0.1ms) begin transaction
281
+ ------------------------
282
+ DeforestTest: test_truth
283
+ ------------------------
284
+  (0.0ms) rollback transaction
285
+  (0.0ms) begin transaction
286
+ ----------------------------------
287
+ Deforest::LogTest: test_percentile
288
+ ----------------------------------
289
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
290
+  (0.1ms) rollback transaction
291
+  (0.1ms) begin transaction
292
+ --------------------------------------
293
+ Deforest::LogTest: test_get_model_name
294
+ --------------------------------------
295
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
296
+  (0.0ms) rollback transaction
297
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
298
+  (0.1ms) begin transaction
299
+ Fixture Delete (0.6ms) DELETE FROM "deforest_logs"
300
+ Fixture Insert (0.5ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 13:29:11', '2023-02-11 13:29:11', 980190962)
301
+ Fixture Insert (0.2ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 13:29:11', '2023-02-11 13:29:11', 298486374)
302
+ Fixture Insert (0.2ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 13:29:11', '2023-02-11 13:29:11', 113629430)
303
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 13:29:11', '2023-02-11 13:29:11', 933434481)
304
+  (0.9ms) commit transaction
305
+  (0.0ms) begin transaction
306
+ --------------------------------------
307
+ Deforest::LogTest: test_get_model_name
308
+ --------------------------------------
309
+ Deforest::Log Load (0.3ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
310
+  (0.1ms) rollback transaction
311
+  (0.1ms) begin transaction
312
+ ----------------------------------
313
+ Deforest::LogTest: test_percentile
314
+ ----------------------------------
315
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
316
+  (0.1ms) rollback transaction
317
+  (0.0ms) begin transaction
318
+ ------------------------
319
+ DeforestTest: test_truth
320
+ ------------------------
321
+  (0.0ms) rollback transaction
322
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
323
+  (0.1ms) begin transaction
324
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
325
+ Fixture Insert (0.8ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 13:43:33', '2023-02-11 13:43:33', 980190962)
326
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 13:43:33', '2023-02-11 13:43:33', 298486374)
327
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 13:43:33', '2023-02-11 13:43:33', 113629430)
328
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 13:43:33', '2023-02-11 13:43:33', 933434481)
329
+  (1.5ms) commit transaction
330
+  (0.1ms) begin transaction
331
+ ----------------------------------
332
+ Deforest::LogTest: test_percentile
333
+ ----------------------------------
334
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
335
+  (0.1ms) rollback transaction
336
+  (0.1ms) begin transaction
337
+ --------------------------------------
338
+ Deforest::LogTest: test_get_model_name
339
+ --------------------------------------
340
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
341
+  (0.0ms) rollback transaction
342
+  (0.0ms) begin transaction
343
+ ------------------------
344
+ DeforestTest: test_truth
345
+ ------------------------
346
+  (0.0ms) rollback transaction
347
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
348
+  (0.0ms) begin transaction
349
+ Fixture Delete (0.4ms) DELETE FROM "deforest_logs"
350
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 13:43:45', '2023-02-11 13:43:45', 980190962)
351
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 13:43:45', '2023-02-11 13:43:45', 298486374)
352
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 13:43:45', '2023-02-11 13:43:45', 113629430)
353
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 13:43:45', '2023-02-11 13:43:45', 933434481)
354
+  (2.4ms) commit transaction
355
+  (0.0ms) begin transaction
356
+ ------------------------
357
+ DeforestTest: test_truth
358
+ ------------------------
359
+  (0.0ms) rollback transaction
360
+  (0.1ms) begin transaction
361
+ --------------------------------------
362
+ Deforest::LogTest: test_get_model_name
363
+ --------------------------------------
364
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
365
+  (0.0ms) rollback transaction
366
+  (0.0ms) begin transaction
367
+ ----------------------------------
368
+ Deforest::LogTest: test_percentile
369
+ ----------------------------------
370
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
371
+  (0.0ms) rollback transaction
372
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
373
+  (0.1ms) begin transaction
374
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
375
+ Fixture Insert (0.5ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 13:47:34', '2023-02-11 13:47:34', 980190962)
376
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 13:47:34', '2023-02-11 13:47:34', 298486374)
377
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 13:47:34', '2023-02-11 13:47:34', 113629430)
378
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 13:47:34', '2023-02-11 13:47:34', 933434481)
379
+  (1.2ms) commit transaction
380
+  (0.1ms) begin transaction
381
+ --------------------------------------
382
+ Deforest::LogTest: test_get_model_name
383
+ --------------------------------------
384
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
385
+  (0.0ms) rollback transaction
386
+  (0.1ms) begin transaction
387
+ ----------------------------------
388
+ Deforest::LogTest: test_percentile
389
+ ----------------------------------
390
+ Deforest::Log Load (0.4ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
391
+  (0.1ms) rollback transaction
392
+  (0.0ms) begin transaction
393
+ ------------------------
394
+ DeforestTest: test_truth
395
+ ------------------------
396
+  (0.0ms) rollback transaction
397
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
398
+  (0.1ms) begin transaction
399
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
400
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 13:47:45', '2023-02-11 13:47:45', 980190962)
401
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 13:47:45', '2023-02-11 13:47:45', 298486374)
402
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 13:47:45', '2023-02-11 13:47:45', 113629430)
403
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 13:47:45', '2023-02-11 13:47:45', 933434481)
404
+  (2.3ms) commit transaction
405
+  (0.0ms) begin transaction
406
+ --------------------------------------
407
+ Deforest::LogTest: test_get_model_name
408
+ --------------------------------------
409
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
410
+  (0.0ms) rollback transaction
411
+  (0.0ms) begin transaction
412
+ ----------------------------------
413
+ Deforest::LogTest: test_percentile
414
+ ----------------------------------
415
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
416
+  (0.0ms) rollback transaction
417
+  (0.0ms) begin transaction
418
+ ------------------------
419
+ DeforestTest: test_truth
420
+ ------------------------
421
+  (0.0ms) rollback transaction
422
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
423
+  (0.1ms) begin transaction
424
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
425
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 13:49:26', '2023-02-11 13:49:26', 980190962)
426
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 13:49:26', '2023-02-11 13:49:26', 298486374)
427
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 13:49:26', '2023-02-11 13:49:26', 113629430)
428
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 13:49:26', '2023-02-11 13:49:26', 933434481)
429
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 13:49:26', '2023-02-11 13:49:26', 303968118)
430
+  (1.2ms) commit transaction
431
+  (0.0ms) begin transaction
432
+ ------------------------
433
+ DeforestTest: test_truth
434
+ ------------------------
435
+  (0.0ms) rollback transaction
436
+  (0.0ms) begin transaction
437
+ --------------------------------------
438
+ Deforest::LogTest: test_get_model_name
439
+ --------------------------------------
440
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
441
+  (0.1ms) rollback transaction
442
+  (0.1ms) begin transaction
443
+ ----------------------------------
444
+ Deforest::LogTest: test_percentile
445
+ ----------------------------------
446
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
447
+  (0.1ms) rollback transaction
448
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
449
+  (0.1ms) begin transaction
450
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
451
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 13:55:34', '2023-02-11 13:55:34', 980190962)
452
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 13:55:34', '2023-02-11 13:55:34', 298486374)
453
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 13:55:34', '2023-02-11 13:55:34', 113629430)
454
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 13:55:34', '2023-02-11 13:55:34', 933434481)
455
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 13:55:34', '2023-02-11 13:55:34', 303968118)
456
+  (1.2ms) commit transaction
457
+  (0.1ms) begin transaction
458
+ --------------------------------------
459
+ Deforest::LogTest: test_get_model_name
460
+ --------------------------------------
461
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
462
+  (0.2ms) rollback transaction
463
+  (0.1ms) begin transaction
464
+ -----------------------------------------------------
465
+ Deforest::LogTest: test_get_highlight_colors_for_file
466
+ -----------------------------------------------------
467
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
468
+  (0.1ms) rollback transaction
469
+  (0.0ms) begin transaction
470
+ ----------------------------------
471
+ Deforest::LogTest: test_percentile
472
+ ----------------------------------
473
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
474
+  (0.0ms) rollback transaction
475
+  (0.0ms) begin transaction
476
+ ------------------------
477
+ DeforestTest: test_truth
478
+ ------------------------
479
+  (0.0ms) rollback transaction
480
+  (0.5ms) SELECT COUNT(*) FROM "deforest_logs"
481
+ Deforest::Log Load (0.4ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
482
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
483
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
484
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
485
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
486
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
487
+  (0.1ms) begin transaction
488
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
489
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:02:46', '2023-02-11 14:02:46', 980190962)
490
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:02:46', '2023-02-11 14:02:46', 298486374)
491
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:02:46', '2023-02-11 14:02:46', 113629430)
492
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:02:46', '2023-02-11 14:02:46', 933434481)
493
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:02:46', '2023-02-11 14:02:46', 303968118)
494
+  (1.2ms) commit transaction
495
+  (0.1ms) begin transaction
496
+ ------------------------
497
+ DeforestTest: test_truth
498
+ ------------------------
499
+  (0.0ms) rollback transaction
500
+  (0.0ms) begin transaction
501
+ -----------------------------------------------------
502
+ Deforest::LogTest: test_get_highlight_colors_for_file
503
+ -----------------------------------------------------
504
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
505
+  (0.1ms) rollback transaction
506
+  (0.1ms) begin transaction
507
+ ----------------------------------
508
+ Deforest::LogTest: test_percentile
509
+ ----------------------------------
510
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
511
+  (0.0ms) rollback transaction
512
+  (0.0ms) begin transaction
513
+ --------------------------------------
514
+ Deforest::LogTest: test_get_model_name
515
+ --------------------------------------
516
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
517
+  (0.0ms) rollback transaction
518
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
519
+  (0.1ms) begin transaction
520
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
521
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:06:10', '2023-02-11 14:06:10', 980190962)
522
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:06:10', '2023-02-11 14:06:10', 298486374)
523
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:06:10', '2023-02-11 14:06:10', 113629430)
524
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:06:10', '2023-02-11 14:06:10', 933434481)
525
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:06:10', '2023-02-11 14:06:10', 303968118)
526
+  (1.3ms) commit transaction
527
+  (0.1ms) begin transaction
528
+ --------------------------------------
529
+ Deforest::LogTest: test_get_model_name
530
+ --------------------------------------
531
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
532
+  (0.1ms) rollback transaction
533
+  (0.1ms) begin transaction
534
+ ----------------------------------
535
+ Deforest::LogTest: test_percentile
536
+ ----------------------------------
537
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
538
+  (0.0ms) rollback transaction
539
+  (0.0ms) begin transaction
540
+ -----------------------------------------------------
541
+ Deforest::LogTest: test_get_highlight_colors_for_file
542
+ -----------------------------------------------------
543
+  (0.0ms) rollback transaction
544
+  (0.0ms) begin transaction
545
+ ------------------------
546
+ DeforestTest: test_truth
547
+ ------------------------
548
+  (0.0ms) rollback transaction
549
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
550
+  (0.1ms) begin transaction
551
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
552
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:06:56', '2023-02-11 14:06:56', 980190962)
553
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:06:56', '2023-02-11 14:06:56', 298486374)
554
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:06:56', '2023-02-11 14:06:56', 113629430)
555
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:06:56', '2023-02-11 14:06:56', 933434481)
556
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:06:56', '2023-02-11 14:06:56', 303968118)
557
+  (1.4ms) commit transaction
558
+  (0.1ms) begin transaction
559
+ ------------------------
560
+ DeforestTest: test_truth
561
+ ------------------------
562
+  (0.0ms) rollback transaction
563
+  (0.0ms) begin transaction
564
+ -----------------------------------------------------
565
+ Deforest::LogTest: test_get_highlight_colors_for_file
566
+ -----------------------------------------------------
567
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
568
+  (0.1ms) rollback transaction
569
+  (0.0ms) begin transaction
570
+ --------------------------------------
571
+ Deforest::LogTest: test_get_model_name
572
+ --------------------------------------
573
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
574
+  (0.0ms) rollback transaction
575
+  (0.1ms) begin transaction
576
+ ----------------------------------
577
+ Deforest::LogTest: test_percentile
578
+ ----------------------------------
579
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
580
+  (0.0ms) rollback transaction
581
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
582
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
583
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
584
+  (0.1ms) begin transaction
585
+ Fixture Delete (0.7ms) DELETE FROM "deforest_logs"
586
+ Fixture Insert (0.9ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:23:23', '2023-02-11 14:23:23', 980190962)
587
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:23:23', '2023-02-11 14:23:23', 298486374)
588
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:23:23', '2023-02-11 14:23:23', 113629430)
589
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:23:23', '2023-02-11 14:23:23', 933434481)
590
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:23:23', '2023-02-11 14:23:23', 303968118)
591
+  (2.8ms) commit transaction
592
+  (0.1ms) begin transaction
593
+ ------------------------
594
+ DeforestTest: test_truth
595
+ ------------------------
596
+  (0.0ms) rollback transaction
597
+  (0.0ms) begin transaction
598
+ ----------------------------------
599
+ Deforest::LogTest: test_percentile
600
+ ----------------------------------
601
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
602
+  (0.1ms) rollback transaction
603
+  (0.0ms) begin transaction
604
+ -----------------------------------------------------
605
+ Deforest::LogTest: test_get_highlight_colors_for_file
606
+ -----------------------------------------------------
607
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
608
+  (0.0ms) rollback transaction
609
+  (0.0ms) begin transaction
610
+ --------------------------------------
611
+ Deforest::LogTest: test_get_model_name
612
+ --------------------------------------
613
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
614
+  (0.1ms) rollback transaction
615
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
616
+  (0.1ms) begin transaction
617
+ Fixture Delete (0.6ms) DELETE FROM "deforest_logs"
618
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:24:48', '2023-02-11 14:24:48', 980190962)
619
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:24:48', '2023-02-11 14:24:48', 298486374)
620
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:24:48', '2023-02-11 14:24:48', 113629430)
621
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:24:48', '2023-02-11 14:24:48', 933434481)
622
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:24:48', '2023-02-11 14:24:48', 303968118)
623
+  (1.3ms) commit transaction
624
+  (0.1ms) begin transaction
625
+ --------------------------------------
626
+ Deforest::LogTest: test_get_model_name
627
+ --------------------------------------
628
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
629
+  (0.1ms) rollback transaction
630
+  (0.0ms) begin transaction
631
+ ----------------------------------
632
+ Deforest::LogTest: test_percentile
633
+ ----------------------------------
634
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
635
+  (0.0ms) rollback transaction
636
+  (0.0ms) begin transaction
637
+ -----------------------------------------------------
638
+ Deforest::LogTest: test_get_highlight_colors_for_file
639
+ -----------------------------------------------------
640
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
641
+  (0.0ms) rollback transaction
642
+  (0.0ms) begin transaction
643
+ ------------------------
644
+ DeforestTest: test_truth
645
+ ------------------------
646
+  (0.0ms) rollback transaction
647
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
648
+  (0.1ms) begin transaction
649
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
650
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:25:43', '2023-02-11 14:25:43', 980190962)
651
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:25:43', '2023-02-11 14:25:43', 298486374)
652
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:25:43', '2023-02-11 14:25:43', 113629430)
653
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:25:43', '2023-02-11 14:25:43', 933434481)
654
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:25:43', '2023-02-11 14:25:43', 303968118)
655
+  (1.3ms) commit transaction
656
+  (0.1ms) begin transaction
657
+ ------------------------
658
+ DeforestTest: test_truth
659
+ ------------------------
660
+  (0.0ms) rollback transaction
661
+  (0.0ms) begin transaction
662
+ -----------------------------------------------------
663
+ Deforest::LogTest: test_get_highlight_colors_for_file
664
+ -----------------------------------------------------
665
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
666
+  (0.1ms) rollback transaction
667
+  (0.0ms) begin transaction
668
+ ----------------------------------
669
+ Deforest::LogTest: test_percentile
670
+ ----------------------------------
671
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
672
+  (0.1ms) rollback transaction
673
+  (0.0ms) begin transaction
674
+ --------------------------------------
675
+ Deforest::LogTest: test_get_model_name
676
+ --------------------------------------
677
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
678
+  (0.0ms) rollback transaction
679
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
680
+  (0.1ms) begin transaction
681
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
682
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:26:03', '2023-02-11 14:26:03', 980190962)
683
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:26:03', '2023-02-11 14:26:03', 298486374)
684
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:26:03', '2023-02-11 14:26:03', 113629430)
685
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:26:03', '2023-02-11 14:26:03', 933434481)
686
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:26:03', '2023-02-11 14:26:03', 303968118)
687
+  (2.4ms) commit transaction
688
+  (0.1ms) begin transaction
689
+ ------------------------
690
+ DeforestTest: test_truth
691
+ ------------------------
692
+  (0.0ms) rollback transaction
693
+  (0.0ms) begin transaction
694
+ --------------------------------------
695
+ Deforest::LogTest: test_get_model_name
696
+ --------------------------------------
697
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
698
+  (0.1ms) rollback transaction
699
+  (0.0ms) begin transaction
700
+ -----------------------------------------------------
701
+ Deforest::LogTest: test_get_highlight_colors_for_file
702
+ -----------------------------------------------------
703
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
704
+  (0.0ms) rollback transaction
705
+  (0.0ms) begin transaction
706
+ ----------------------------------
707
+ Deforest::LogTest: test_percentile
708
+ ----------------------------------
709
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
710
+  (0.0ms) rollback transaction
711
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
712
+  (0.1ms) begin transaction
713
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
714
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:29:15', '2023-02-11 14:29:15', 980190962)
715
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:29:15', '2023-02-11 14:29:15', 298486374)
716
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:29:15', '2023-02-11 14:29:15', 113629430)
717
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:29:15', '2023-02-11 14:29:15', 933434481)
718
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:29:15', '2023-02-11 14:29:15', 303968118)
719
+  (1.0ms) commit transaction
720
+  (0.0ms) begin transaction
721
+ --------------------------------------
722
+ Deforest::LogTest: test_get_model_name
723
+ --------------------------------------
724
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
725
+  (0.1ms) rollback transaction
726
+  (0.1ms) begin transaction
727
+ -----------------------------------------------------
728
+ Deforest::LogTest: test_get_highlight_colors_for_file
729
+ -----------------------------------------------------
730
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
731
+  (0.0ms) rollback transaction
732
+  (0.0ms) begin transaction
733
+ ----------------------------------
734
+ Deforest::LogTest: test_percentile
735
+ ----------------------------------
736
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
737
+  (0.0ms) rollback transaction
738
+  (0.0ms) begin transaction
739
+ ------------------------
740
+ DeforestTest: test_truth
741
+ ------------------------
742
+  (0.0ms) rollback transaction
743
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
744
+  (0.1ms) begin transaction
745
+ Fixture Delete (0.6ms) DELETE FROM "deforest_logs"
746
+ Fixture Insert (0.4ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:31:04', '2023-02-11 14:31:04', 980190962)
747
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:31:04', '2023-02-11 14:31:04', 298486374)
748
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:31:04', '2023-02-11 14:31:04', 113629430)
749
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:31:04', '2023-02-11 14:31:04', 933434481)
750
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:31:04', '2023-02-11 14:31:04', 303968118)
751
+  (0.6ms) commit transaction
752
+  (0.0ms) begin transaction
753
+ ------------------------
754
+ DeforestTest: test_truth
755
+ ------------------------
756
+  (0.0ms) rollback transaction
757
+  (0.0ms) begin transaction
758
+ --------------------------------------
759
+ Deforest::LogTest: test_get_model_name
760
+ --------------------------------------
761
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
762
+  (0.0ms) rollback transaction
763
+  (0.0ms) begin transaction
764
+ -----------------------------------------------------
765
+ Deforest::LogTest: test_get_highlight_colors_for_file
766
+ -----------------------------------------------------
767
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
768
+  (0.0ms) rollback transaction
769
+  (0.1ms) begin transaction
770
+ ----------------------------------
771
+ Deforest::LogTest: test_percentile
772
+ ----------------------------------
773
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
774
+  (0.1ms) rollback transaction
775
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
776
+  (0.1ms) begin transaction
777
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
778
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:31:44', '2023-02-11 14:31:44', 980190962)
779
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:31:44', '2023-02-11 14:31:44', 298486374)
780
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:31:44', '2023-02-11 14:31:44', 113629430)
781
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:31:44', '2023-02-11 14:31:44', 933434481)
782
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:31:44', '2023-02-11 14:31:44', 303968118)
783
+  (1.3ms) commit transaction
784
+  (0.1ms) begin transaction
785
+ ------------------------
786
+ DeforestTest: test_truth
787
+ ------------------------
788
+  (0.0ms) rollback transaction
789
+  (0.0ms) begin transaction
790
+ -----------------------------------------------------
791
+ Deforest::LogTest: test_get_highlight_colors_for_file
792
+ -----------------------------------------------------
793
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
794
+  (0.1ms) rollback transaction
795
+  (0.0ms) begin transaction
796
+ ----------------------------------
797
+ Deforest::LogTest: test_percentile
798
+ ----------------------------------
799
+ Deforest::Log Load (0.4ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
800
+  (0.1ms) rollback transaction
801
+  (0.0ms) begin transaction
802
+ --------------------------------------
803
+ Deforest::LogTest: test_get_model_name
804
+ --------------------------------------
805
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
806
+  (0.0ms) rollback transaction
807
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
808
+  (0.1ms) begin transaction
809
+ Fixture Delete (0.2ms) DELETE FROM "deforest_logs"
810
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:32:43', '2023-02-11 14:32:43', 980190962)
811
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:32:43', '2023-02-11 14:32:43', 298486374)
812
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:32:43', '2023-02-11 14:32:43', 113629430)
813
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:32:43', '2023-02-11 14:32:43', 933434481)
814
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:32:43', '2023-02-11 14:32:43', 303968118)
815
+  (2.4ms) commit transaction
816
+  (0.1ms) begin transaction
817
+ --------------------------------------
818
+ Deforest::LogTest: test_get_model_name
819
+ --------------------------------------
820
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
821
+  (0.1ms) rollback transaction
822
+  (0.0ms) begin transaction
823
+ -----------------------------------------------------
824
+ Deforest::LogTest: test_get_highlight_colors_for_file
825
+ -----------------------------------------------------
826
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
827
+  (0.0ms) rollback transaction
828
+  (0.0ms) begin transaction
829
+ ----------------------------------
830
+ Deforest::LogTest: test_percentile
831
+ ----------------------------------
832
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
833
+  (0.0ms) rollback transaction
834
+  (0.0ms) begin transaction
835
+ ------------------------
836
+ DeforestTest: test_truth
837
+ ------------------------
838
+  (0.0ms) rollback transaction
839
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
840
+  (0.0ms) begin transaction
841
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
842
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:32:58', '2023-02-11 14:32:58', 980190962)
843
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:32:58', '2023-02-11 14:32:58', 298486374)
844
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:32:58', '2023-02-11 14:32:58', 113629430)
845
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:32:58', '2023-02-11 14:32:58', 933434481)
846
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:32:58', '2023-02-11 14:32:58', 303968118)
847
+  (2.5ms) commit transaction
848
+  (0.0ms) begin transaction
849
+ -----------------------------------------------------
850
+ Deforest::LogTest: test_get_highlight_colors_for_file
851
+ -----------------------------------------------------
852
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
853
+  (0.0ms) rollback transaction
854
+  (0.0ms) begin transaction
855
+ --------------------------------------
856
+ Deforest::LogTest: test_get_model_name
857
+ --------------------------------------
858
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
859
+  (0.0ms) rollback transaction
860
+  (0.0ms) begin transaction
861
+ ----------------------------------
862
+ Deforest::LogTest: test_percentile
863
+ ----------------------------------
864
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
865
+  (0.0ms) rollback transaction
866
+  (0.0ms) begin transaction
867
+ ------------------------
868
+ DeforestTest: test_truth
869
+ ------------------------
870
+  (0.0ms) rollback transaction
871
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
872
+  (0.0ms) begin transaction
873
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
874
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:33:05', '2023-02-11 14:33:05', 980190962)
875
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:33:05', '2023-02-11 14:33:05', 298486374)
876
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:33:05', '2023-02-11 14:33:05', 113629430)
877
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:33:05', '2023-02-11 14:33:05', 933434481)
878
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:33:05', '2023-02-11 14:33:05', 303968118)
879
+  (0.9ms) commit transaction
880
+  (0.1ms) begin transaction
881
+ ----------------------------------
882
+ Deforest::LogTest: test_percentile
883
+ ----------------------------------
884
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
885
+  (0.0ms) rollback transaction
886
+  (0.0ms) begin transaction
887
+ --------------------------------------
888
+ Deforest::LogTest: test_get_model_name
889
+ --------------------------------------
890
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
891
+  (0.0ms) rollback transaction
892
+  (0.0ms) begin transaction
893
+ -----------------------------------------------------
894
+ Deforest::LogTest: test_get_highlight_colors_for_file
895
+ -----------------------------------------------------
896
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
897
+  (0.0ms) rollback transaction
898
+  (0.0ms) begin transaction
899
+ ------------------------
900
+ DeforestTest: test_truth
901
+ ------------------------
902
+  (0.0ms) rollback transaction
903
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
904
+  (0.1ms) begin transaction
905
+ Fixture Delete (0.2ms) DELETE FROM "deforest_logs"
906
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:33:26', '2023-02-11 14:33:26', 980190962)
907
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:33:26', '2023-02-11 14:33:26', 298486374)
908
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:33:26', '2023-02-11 14:33:26', 113629430)
909
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:33:26', '2023-02-11 14:33:26', 933434481)
910
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:33:26', '2023-02-11 14:33:26', 303968118)
911
+  (3.1ms) commit transaction
912
+  (0.1ms) begin transaction
913
+ ------------------------
914
+ DeforestTest: test_truth
915
+ ------------------------
916
+  (0.1ms) rollback transaction
917
+  (0.0ms) begin transaction
918
+ -----------------------------------------------------
919
+ Deforest::LogTest: test_get_highlight_colors_for_file
920
+ -----------------------------------------------------
921
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
922
+  (0.1ms) rollback transaction
923
+  (0.1ms) begin transaction
924
+ --------------------------------------
925
+ Deforest::LogTest: test_get_model_name
926
+ --------------------------------------
927
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
928
+  (0.0ms) rollback transaction
929
+  (0.0ms) begin transaction
930
+ ----------------------------------
931
+ Deforest::LogTest: test_percentile
932
+ ----------------------------------
933
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
934
+  (0.1ms) rollback transaction
935
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
936
+  (0.1ms) begin transaction
937
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
938
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:34:52', '2023-02-11 14:34:52', 980190962)
939
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:34:52', '2023-02-11 14:34:52', 298486374)
940
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:34:52', '2023-02-11 14:34:52', 113629430)
941
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:34:52', '2023-02-11 14:34:52', 933434481)
942
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:34:52', '2023-02-11 14:34:52', 303968118)
943
+  (2.3ms) commit transaction
944
+  (0.1ms) begin transaction
945
+ ------------------------
946
+ DeforestTest: test_truth
947
+ ------------------------
948
+  (0.0ms) rollback transaction
949
+  (0.0ms) begin transaction
950
+ -----------------------------------------------------
951
+ Deforest::LogTest: test_get_highlight_colors_for_file
952
+ -----------------------------------------------------
953
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
954
+  (0.0ms) rollback transaction
955
+  (0.0ms) begin transaction
956
+ --------------------------------------
957
+ Deforest::LogTest: test_get_model_name
958
+ --------------------------------------
959
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
960
+  (0.0ms) rollback transaction
961
+  (0.0ms) begin transaction
962
+ ----------------------------------
963
+ Deforest::LogTest: test_percentile
964
+ ----------------------------------
965
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
966
+  (0.0ms) rollback transaction
967
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
968
+  (0.1ms) begin transaction
969
+ Fixture Delete (0.2ms) DELETE FROM "deforest_logs"
970
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:35:06', '2023-02-11 14:35:06', 980190962)
971
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:35:06', '2023-02-11 14:35:06', 298486374)
972
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:35:06', '2023-02-11 14:35:06', 113629430)
973
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:35:06', '2023-02-11 14:35:06', 933434481)
974
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:35:06', '2023-02-11 14:35:06', 303968118)
975
+  (2.1ms) commit transaction
976
+  (0.0ms) begin transaction
977
+ --------------------------------------
978
+ Deforest::LogTest: test_get_model_name
979
+ --------------------------------------
980
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
981
+  (0.0ms) rollback transaction
982
+  (0.1ms) begin transaction
983
+ -----------------------------------------------------
984
+ Deforest::LogTest: test_get_highlight_colors_for_file
985
+ -----------------------------------------------------
986
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
987
+  (0.0ms) rollback transaction
988
+  (0.0ms) begin transaction
989
+ ----------------------------------
990
+ Deforest::LogTest: test_percentile
991
+ ----------------------------------
992
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
993
+  (0.0ms) rollback transaction
994
+  (0.0ms) begin transaction
995
+ ------------------------
996
+ DeforestTest: test_truth
997
+ ------------------------
998
+  (0.0ms) rollback transaction
999
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1000
+  (0.1ms) begin transaction
1001
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
1002
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 14:51:54', '2023-02-11 14:51:54', 980190962)
1003
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 14:51:54', '2023-02-11 14:51:54', 298486374)
1004
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 14:51:54', '2023-02-11 14:51:54', 113629430)
1005
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 14:51:54', '2023-02-11 14:51:54', 933434481)
1006
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 14:51:54', '2023-02-11 14:51:54', 303968118)
1007
+  (5.9ms) commit transaction
1008
+  (0.1ms) begin transaction
1009
+ ------------------------------------------
1010
+ DeforestTest: test_initialize_db_sync_file
1011
+ ------------------------------------------
1012
+  (0.0ms) rollback transaction
1013
+  (0.0ms) begin transaction
1014
+ -----------------------------------------------------
1015
+ Deforest::LogTest: test_get_highlight_colors_for_file
1016
+ -----------------------------------------------------
1017
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1018
+  (0.0ms) rollback transaction
1019
+  (0.0ms) begin transaction
1020
+ --------------------------------------
1021
+ Deforest::LogTest: test_get_model_name
1022
+ --------------------------------------
1023
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1024
+  (0.0ms) rollback transaction
1025
+  (0.0ms) begin transaction
1026
+ ----------------------------------
1027
+ Deforest::LogTest: test_percentile
1028
+ ----------------------------------
1029
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1030
+  (0.0ms) rollback transaction
1031
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1032
+  (0.1ms) begin transaction
1033
+ Fixture Delete (1.2ms) DELETE FROM "deforest_logs"
1034
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 15:30:05', '2023-02-11 15:30:05', 980190962)
1035
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 15:30:05', '2023-02-11 15:30:05', 298486374)
1036
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 15:30:05', '2023-02-11 15:30:05', 113629430)
1037
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 15:30:05', '2023-02-11 15:30:05', 933434481)
1038
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 15:30:05', '2023-02-11 15:30:05', 303968118)
1039
+  (1.5ms) commit transaction
1040
+  (0.1ms) begin transaction
1041
+ -----------------------------------------------------
1042
+ Deforest::LogTest: test_get_highlight_colors_for_file
1043
+ -----------------------------------------------------
1044
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1045
+  (0.1ms) rollback transaction
1046
+  (0.0ms) begin transaction
1047
+ ----------------------------------
1048
+ Deforest::LogTest: test_percentile
1049
+ ----------------------------------
1050
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1051
+  (0.0ms) rollback transaction
1052
+  (0.0ms) begin transaction
1053
+ --------------------------------------
1054
+ Deforest::LogTest: test_get_model_name
1055
+ --------------------------------------
1056
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1057
+  (0.0ms) rollback transaction
1058
+  (0.0ms) begin transaction
1059
+ ------------------------------------------
1060
+ DeforestTest: test_initialize_db_sync_file
1061
+ ------------------------------------------
1062
+  (0.1ms) rollback transaction
1063
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1064
+  (0.1ms) begin transaction
1065
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
1066
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 15:30:59', '2023-02-11 15:30:59', 980190962)
1067
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 15:30:59', '2023-02-11 15:30:59', 298486374)
1068
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 15:30:59', '2023-02-11 15:30:59', 113629430)
1069
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 15:30:59', '2023-02-11 15:30:59', 933434481)
1070
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 15:30:59', '2023-02-11 15:30:59', 303968118)
1071
+  (1.5ms) commit transaction
1072
+  (0.1ms) begin transaction
1073
+ --------------------------------------
1074
+ Deforest::LogTest: test_get_model_name
1075
+ --------------------------------------
1076
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1077
+  (0.1ms) rollback transaction
1078
+  (0.1ms) begin transaction
1079
+ ----------------------------------
1080
+ Deforest::LogTest: test_percentile
1081
+ ----------------------------------
1082
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1083
+  (0.0ms) rollback transaction
1084
+  (0.0ms) begin transaction
1085
+ -----------------------------------------------------
1086
+ Deforest::LogTest: test_get_highlight_colors_for_file
1087
+ -----------------------------------------------------
1088
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1089
+  (0.0ms) rollback transaction
1090
+  (0.0ms) begin transaction
1091
+ ------------------------------------------
1092
+ DeforestTest: test_initialize_db_sync_file
1093
+ ------------------------------------------
1094
+  (0.0ms) rollback transaction
1095
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1096
+  (0.1ms) begin transaction
1097
+ Fixture Delete (0.7ms) DELETE FROM "deforest_logs"
1098
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 15:33:34', '2023-02-11 15:33:34', 980190962)
1099
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 15:33:34', '2023-02-11 15:33:34', 298486374)
1100
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 15:33:34', '2023-02-11 15:33:34', 113629430)
1101
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 15:33:34', '2023-02-11 15:33:34', 933434481)
1102
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 15:33:34', '2023-02-11 15:33:34', 303968118)
1103
+  (1.3ms) commit transaction
1104
+  (0.1ms) begin transaction
1105
+ ------------------------------------------
1106
+ DeforestTest: test_initialize_db_sync_file
1107
+ ------------------------------------------
1108
+  (0.1ms) rollback transaction
1109
+  (0.0ms) begin transaction
1110
+ ----------------------------------
1111
+ Deforest::LogTest: test_percentile
1112
+ ----------------------------------
1113
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1114
+  (0.1ms) rollback transaction
1115
+  (0.0ms) begin transaction
1116
+ -----------------------------------------------------
1117
+ Deforest::LogTest: test_get_highlight_colors_for_file
1118
+ -----------------------------------------------------
1119
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1120
+  (0.0ms) rollback transaction
1121
+  (0.0ms) begin transaction
1122
+ --------------------------------------
1123
+ Deforest::LogTest: test_get_model_name
1124
+ --------------------------------------
1125
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1126
+  (0.0ms) rollback transaction
1127
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1128
+  (0.1ms) begin transaction
1129
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
1130
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 15:33:53', '2023-02-11 15:33:53', 980190962)
1131
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 15:33:53', '2023-02-11 15:33:53', 298486374)
1132
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 15:33:53', '2023-02-11 15:33:53', 113629430)
1133
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 15:33:53', '2023-02-11 15:33:53', 933434481)
1134
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 15:33:53', '2023-02-11 15:33:53', 303968118)
1135
+  (0.8ms) commit transaction
1136
+  (0.0ms) begin transaction
1137
+ ------------------------------------------
1138
+ DeforestTest: test_initialize_db_sync_file
1139
+ ------------------------------------------
1140
+  (0.0ms) rollback transaction
1141
+  (0.0ms) begin transaction
1142
+ -----------------------------------------------------
1143
+ Deforest::LogTest: test_get_highlight_colors_for_file
1144
+ -----------------------------------------------------
1145
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1146
+  (0.0ms) rollback transaction
1147
+  (0.0ms) begin transaction
1148
+ --------------------------------------
1149
+ Deforest::LogTest: test_get_model_name
1150
+ --------------------------------------
1151
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1152
+  (0.0ms) rollback transaction
1153
+  (0.0ms) begin transaction
1154
+ ----------------------------------
1155
+ Deforest::LogTest: test_percentile
1156
+ ----------------------------------
1157
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1158
+  (0.0ms) rollback transaction
1159
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1160
+  (0.1ms) begin transaction
1161
+ Fixture Delete (0.4ms) DELETE FROM "deforest_logs"
1162
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 15:34:18', '2023-02-11 15:34:18', 980190962)
1163
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 15:34:18', '2023-02-11 15:34:18', 298486374)
1164
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 15:34:18', '2023-02-11 15:34:18', 113629430)
1165
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 15:34:18', '2023-02-11 15:34:18', 933434481)
1166
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 15:34:18', '2023-02-11 15:34:18', 303968118)
1167
+  (2.4ms) commit transaction
1168
+  (0.0ms) begin transaction
1169
+ -----------------------------------------------------
1170
+ Deforest::LogTest: test_get_highlight_colors_for_file
1171
+ -----------------------------------------------------
1172
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1173
+  (0.2ms) rollback transaction
1174
+  (0.0ms) begin transaction
1175
+ --------------------------------------
1176
+ Deforest::LogTest: test_get_model_name
1177
+ --------------------------------------
1178
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1179
+  (0.0ms) rollback transaction
1180
+  (0.0ms) begin transaction
1181
+ ----------------------------------
1182
+ Deforest::LogTest: test_percentile
1183
+ ----------------------------------
1184
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1185
+  (0.0ms) rollback transaction
1186
+  (0.0ms) begin transaction
1187
+ ------------------------------------------
1188
+ DeforestTest: test_initialize_db_sync_file
1189
+ ------------------------------------------
1190
+  (0.0ms) rollback transaction
1191
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1192
+  (0.1ms) begin transaction
1193
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
1194
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 15:44:54', '2023-02-11 15:44:54', 980190962)
1195
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 15:44:54', '2023-02-11 15:44:54', 298486374)
1196
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 15:44:54', '2023-02-11 15:44:54', 113629430)
1197
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 15:44:54', '2023-02-11 15:44:54', 933434481)
1198
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 15:44:54', '2023-02-11 15:44:54', 303968118)
1199
+  (2.0ms) commit transaction
1200
+  (0.1ms) begin transaction
1201
+ -----------------------------------------------------
1202
+ Deforest::LogTest: test_get_highlight_colors_for_file
1203
+ -----------------------------------------------------
1204
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1205
+  (0.1ms) rollback transaction
1206
+  (0.1ms) begin transaction
1207
+ --------------------------------------
1208
+ Deforest::LogTest: test_get_model_name
1209
+ --------------------------------------
1210
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1211
+  (0.0ms) rollback transaction
1212
+  (0.1ms) begin transaction
1213
+ ----------------------------------
1214
+ Deforest::LogTest: test_percentile
1215
+ ----------------------------------
1216
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1217
+  (0.0ms) rollback transaction
1218
+  (0.0ms) begin transaction
1219
+ ---------------------------------------------------------------------------
1220
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1221
+ ---------------------------------------------------------------------------
1222
+  (0.0ms) rollback transaction
1223
+  (0.1ms) begin transaction
1224
+ -----------------------------------------------------------------------
1225
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1226
+ -----------------------------------------------------------------------
1227
+  (0.1ms) rollback transaction
1228
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1229
+  (0.1ms) begin transaction
1230
+ Fixture Delete (1.4ms) DELETE FROM "deforest_logs"
1231
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 15:46:19', '2023-02-11 15:46:19', 980190962)
1232
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 15:46:19', '2023-02-11 15:46:19', 298486374)
1233
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 15:46:19', '2023-02-11 15:46:19', 113629430)
1234
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 15:46:19', '2023-02-11 15:46:19', 933434481)
1235
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 15:46:19', '2023-02-11 15:46:19', 303968118)
1236
+  (1.1ms) commit transaction
1237
+  (0.1ms) begin transaction
1238
+ -----------------------------------------------------
1239
+ Deforest::LogTest: test_get_highlight_colors_for_file
1240
+ -----------------------------------------------------
1241
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1242
+  (0.1ms) rollback transaction
1243
+  (0.1ms) begin transaction
1244
+ ----------------------------------
1245
+ Deforest::LogTest: test_percentile
1246
+ ----------------------------------
1247
+ Deforest::Log Load (0.5ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1248
+  (0.2ms) rollback transaction
1249
+  (0.2ms) begin transaction
1250
+ --------------------------------------
1251
+ Deforest::LogTest: test_get_model_name
1252
+ --------------------------------------
1253
+ Deforest::Log Load (0.4ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1254
+  (0.1ms) rollback transaction
1255
+  (0.1ms) begin transaction
1256
+ -----------------------------------------------------------------------
1257
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1258
+ -----------------------------------------------------------------------
1259
+  (0.1ms) rollback transaction
1260
+  (0.1ms) begin transaction
1261
+ ---------------------------------------------------------------------------
1262
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1263
+ ---------------------------------------------------------------------------
1264
+  (0.1ms) rollback transaction
1265
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1266
+  (0.1ms) begin transaction
1267
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
1268
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 15:47:12', '2023-02-11 15:47:12', 980190962)
1269
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 15:47:12', '2023-02-11 15:47:12', 298486374)
1270
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 15:47:12', '2023-02-11 15:47:12', 113629430)
1271
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 15:47:12', '2023-02-11 15:47:12', 933434481)
1272
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 15:47:12', '2023-02-11 15:47:12', 303968118)
1273
+  (3.0ms) commit transaction
1274
+  (0.1ms) begin transaction
1275
+ -----------------------------------------------------------------------
1276
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1277
+ -----------------------------------------------------------------------
1278
+  (0.1ms) rollback transaction
1279
+  (0.1ms) begin transaction
1280
+ ---------------------------------------------------------------------------
1281
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1282
+ ---------------------------------------------------------------------------
1283
+  (0.0ms) rollback transaction
1284
+  (0.0ms) begin transaction
1285
+ --------------------------------------
1286
+ Deforest::LogTest: test_get_model_name
1287
+ --------------------------------------
1288
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1289
+  (0.1ms) rollback transaction
1290
+  (0.0ms) begin transaction
1291
+ -----------------------------------------------------
1292
+ Deforest::LogTest: test_get_highlight_colors_for_file
1293
+ -----------------------------------------------------
1294
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1295
+  (0.1ms) rollback transaction
1296
+  (0.0ms) begin transaction
1297
+ ----------------------------------
1298
+ Deforest::LogTest: test_percentile
1299
+ ----------------------------------
1300
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1301
+  (0.0ms) rollback transaction
1302
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1303
+  (0.1ms) begin transaction
1304
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
1305
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 15:49:13', '2023-02-11 15:49:13', 980190962)
1306
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 15:49:13', '2023-02-11 15:49:13', 298486374)
1307
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 15:49:13', '2023-02-11 15:49:13', 113629430)
1308
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 15:49:13', '2023-02-11 15:49:13', 933434481)
1309
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 15:49:13', '2023-02-11 15:49:13', 303968118)
1310
+  (1.0ms) commit transaction
1311
+  (0.1ms) begin transaction
1312
+ --------------------------------------
1313
+ Deforest::LogTest: test_get_model_name
1314
+ --------------------------------------
1315
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1316
+  (0.1ms) rollback transaction
1317
+  (0.0ms) begin transaction
1318
+ -----------------------------------------------------
1319
+ Deforest::LogTest: test_get_highlight_colors_for_file
1320
+ -----------------------------------------------------
1321
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1322
+  (0.1ms) rollback transaction
1323
+  (0.0ms) begin transaction
1324
+ ----------------------------------
1325
+ Deforest::LogTest: test_percentile
1326
+ ----------------------------------
1327
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1328
+  (0.0ms) rollback transaction
1329
+  (0.0ms) begin transaction
1330
+ ---------------------------------------------------------------------------
1331
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1332
+ ---------------------------------------------------------------------------
1333
+  (0.0ms) rollback transaction
1334
+  (0.0ms) begin transaction
1335
+ -----------------------------------------------------------------------
1336
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1337
+ -----------------------------------------------------------------------
1338
+  (0.0ms) rollback transaction
1339
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1340
+  (0.1ms) begin transaction
1341
+ Fixture Delete (1.2ms) DELETE FROM "deforest_logs"
1342
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:07:24', '2023-02-11 17:07:24', 980190962)
1343
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:07:24', '2023-02-11 17:07:24', 298486374)
1344
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:07:24', '2023-02-11 17:07:24', 113629430)
1345
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:07:24', '2023-02-11 17:07:24', 933434481)
1346
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:07:24', '2023-02-11 17:07:24', 303968118)
1347
+  (1.0ms) commit transaction
1348
+  (0.1ms) begin transaction
1349
+ ---------------------------------------------------------------------------
1350
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1351
+ ---------------------------------------------------------------------------
1352
+  (0.1ms) rollback transaction
1353
+  (0.1ms) begin transaction
1354
+ -----------------------------------------------------------------------
1355
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1356
+ -----------------------------------------------------------------------
1357
+  (0.1ms) rollback transaction
1358
+  (0.1ms) begin transaction
1359
+ -----------------------------------------------------
1360
+ Deforest::LogTest: test_get_highlight_colors_for_file
1361
+ -----------------------------------------------------
1362
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1363
+  (0.1ms) rollback transaction
1364
+  (0.0ms) begin transaction
1365
+ ----------------------------------
1366
+ Deforest::LogTest: test_percentile
1367
+ ----------------------------------
1368
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1369
+  (0.0ms) rollback transaction
1370
+  (0.0ms) begin transaction
1371
+ --------------------------------------
1372
+ Deforest::LogTest: test_get_model_name
1373
+ --------------------------------------
1374
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1375
+  (0.0ms) rollback transaction
1376
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1377
+  (0.1ms) begin transaction
1378
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
1379
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:07:53', '2023-02-11 17:07:53', 980190962)
1380
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:07:53', '2023-02-11 17:07:53', 298486374)
1381
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:07:53', '2023-02-11 17:07:53', 113629430)
1382
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:07:53', '2023-02-11 17:07:53', 933434481)
1383
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:07:53', '2023-02-11 17:07:53', 303968118)
1384
+  (3.0ms) commit transaction
1385
+  (0.1ms) begin transaction
1386
+ -----------------------------------------------------------------------
1387
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1388
+ -----------------------------------------------------------------------
1389
+  (0.1ms) rollback transaction
1390
+  (0.1ms) begin transaction
1391
+ ---------------------------------------------------------------------------
1392
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1393
+ ---------------------------------------------------------------------------
1394
+  (0.1ms) rollback transaction
1395
+  (0.0ms) begin transaction
1396
+ -----------------------------------------------------
1397
+ Deforest::LogTest: test_get_highlight_colors_for_file
1398
+ -----------------------------------------------------
1399
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1400
+  (0.1ms) rollback transaction
1401
+  (0.1ms) begin transaction
1402
+ --------------------------------------
1403
+ Deforest::LogTest: test_get_model_name
1404
+ --------------------------------------
1405
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1406
+  (0.0ms) rollback transaction
1407
+  (0.0ms) begin transaction
1408
+ ----------------------------------
1409
+ Deforest::LogTest: test_percentile
1410
+ ----------------------------------
1411
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1412
+  (0.0ms) rollback transaction
1413
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1414
+  (0.1ms) begin transaction
1415
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
1416
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:09:07', '2023-02-11 17:09:07', 980190962)
1417
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:09:07', '2023-02-11 17:09:07', 298486374)
1418
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:09:07', '2023-02-11 17:09:07', 113629430)
1419
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:09:07', '2023-02-11 17:09:07', 933434481)
1420
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:09:07', '2023-02-11 17:09:07', 303968118)
1421
+  (1.3ms) commit transaction
1422
+  (0.1ms) begin transaction
1423
+ -----------------------------------------------------------------------
1424
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1425
+ -----------------------------------------------------------------------
1426
+  (0.1ms) rollback transaction
1427
+  (0.1ms) begin transaction
1428
+ ---------------------------------------------------------------------------
1429
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1430
+ ---------------------------------------------------------------------------
1431
+  (0.0ms) rollback transaction
1432
+  (0.0ms) begin transaction
1433
+ -----------------------------------------------------
1434
+ Deforest::LogTest: test_get_highlight_colors_for_file
1435
+ -----------------------------------------------------
1436
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1437
+  (0.1ms) rollback transaction
1438
+  (0.0ms) begin transaction
1439
+ --------------------------------------
1440
+ Deforest::LogTest: test_get_model_name
1441
+ --------------------------------------
1442
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1443
+  (0.0ms) rollback transaction
1444
+  (0.0ms) begin transaction
1445
+ ----------------------------------
1446
+ Deforest::LogTest: test_percentile
1447
+ ----------------------------------
1448
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1449
+  (0.0ms) rollback transaction
1450
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1451
+  (0.1ms) begin transaction
1452
+ Fixture Delete (0.5ms) DELETE FROM "deforest_logs"
1453
+ Fixture Insert (0.3ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:10:05', '2023-02-11 17:10:05', 980190962)
1454
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:10:05', '2023-02-11 17:10:05', 298486374)
1455
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:10:05', '2023-02-11 17:10:05', 113629430)
1456
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:10:05', '2023-02-11 17:10:05', 933434481)
1457
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:10:05', '2023-02-11 17:10:05', 303968118)
1458
+  (0.6ms) commit transaction
1459
+  (0.0ms) begin transaction
1460
+ -----------------------------------------------------------------------
1461
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1462
+ -----------------------------------------------------------------------
1463
+  (0.1ms) rollback transaction
1464
+  (0.0ms) begin transaction
1465
+ ---------------------------------------------------------------------------
1466
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1467
+ ---------------------------------------------------------------------------
1468
+  (0.0ms) rollback transaction
1469
+  (0.1ms) begin transaction
1470
+ -----------------------------------------------------
1471
+ Deforest::LogTest: test_get_highlight_colors_for_file
1472
+ -----------------------------------------------------
1473
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1474
+  (0.1ms) rollback transaction
1475
+  (0.0ms) begin transaction
1476
+ ----------------------------------
1477
+ Deforest::LogTest: test_percentile
1478
+ ----------------------------------
1479
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1480
+  (0.0ms) rollback transaction
1481
+  (0.0ms) begin transaction
1482
+ --------------------------------------
1483
+ Deforest::LogTest: test_get_model_name
1484
+ --------------------------------------
1485
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1486
+  (0.0ms) rollback transaction
1487
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1488
+  (0.1ms) begin transaction
1489
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
1490
+ Fixture Insert (0.9ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:10:39', '2023-02-11 17:10:39', 980190962)
1491
+ Fixture Insert (0.2ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:10:39', '2023-02-11 17:10:39', 298486374)
1492
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:10:39', '2023-02-11 17:10:39', 113629430)
1493
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:10:39', '2023-02-11 17:10:39', 933434481)
1494
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:10:39', '2023-02-11 17:10:39', 303968118)
1495
+  (1.1ms) commit transaction
1496
+  (0.0ms) begin transaction
1497
+ ---------------------------------------------------------------------------
1498
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1499
+ ---------------------------------------------------------------------------
1500
+  (0.1ms) rollback transaction
1501
+  (0.0ms) begin transaction
1502
+ -----------------------------------------------------------------------
1503
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1504
+ -----------------------------------------------------------------------
1505
+  (0.1ms) rollback transaction
1506
+  (0.1ms) begin transaction
1507
+ -----------------------------------------------------
1508
+ Deforest::LogTest: test_get_highlight_colors_for_file
1509
+ -----------------------------------------------------
1510
+ Deforest::Log Load (0.4ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1511
+  (0.1ms) rollback transaction
1512
+  (0.1ms) begin transaction
1513
+ --------------------------------------
1514
+ Deforest::LogTest: test_get_model_name
1515
+ --------------------------------------
1516
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1517
+  (0.0ms) rollback transaction
1518
+  (0.0ms) begin transaction
1519
+ ----------------------------------
1520
+ Deforest::LogTest: test_percentile
1521
+ ----------------------------------
1522
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1523
+  (0.0ms) rollback transaction
1524
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1525
+  (0.1ms) begin transaction
1526
+ Fixture Delete (1.1ms) DELETE FROM "deforest_logs"
1527
+ Fixture Insert (0.5ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:30:51', '2023-02-11 17:30:51', 980190962)
1528
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:30:51', '2023-02-11 17:30:51', 298486374)
1529
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:30:51', '2023-02-11 17:30:51', 113629430)
1530
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:30:51', '2023-02-11 17:30:51', 933434481)
1531
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:30:51', '2023-02-11 17:30:51', 303968118)
1532
+  (1.8ms) commit transaction
1533
+  (0.0ms) begin transaction
1534
+ -----------------------------------------------------------------------
1535
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1536
+ -----------------------------------------------------------------------
1537
+  (0.1ms) rollback transaction
1538
+  (0.1ms) begin transaction
1539
+ ---------------------------------------------------------------------------
1540
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1541
+ ---------------------------------------------------------------------------
1542
+  (0.0ms) rollback transaction
1543
+  (0.0ms) begin transaction
1544
+ -----------------------------------
1545
+ DeforestTest: test_insert_into_logs
1546
+ -----------------------------------
1547
+  (0.0ms) rollback transaction
1548
+  (0.1ms) begin transaction
1549
+ -----------------------------------------------------
1550
+ Deforest::LogTest: test_get_highlight_colors_for_file
1551
+ -----------------------------------------------------
1552
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1553
+  (0.1ms) rollback transaction
1554
+  (0.0ms) begin transaction
1555
+ ----------------------------------
1556
+ Deforest::LogTest: test_percentile
1557
+ ----------------------------------
1558
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1559
+  (0.1ms) rollback transaction
1560
+  (0.0ms) begin transaction
1561
+ --------------------------------------
1562
+ Deforest::LogTest: test_get_model_name
1563
+ --------------------------------------
1564
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1565
+  (0.0ms) rollback transaction
1566
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1567
+  (0.1ms) begin transaction
1568
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
1569
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:40:53', '2023-02-11 17:40:53', 980190962)
1570
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:40:53', '2023-02-11 17:40:53', 298486374)
1571
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:40:53', '2023-02-11 17:40:53', 113629430)
1572
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:40:53', '2023-02-11 17:40:53', 933434481)
1573
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:40:53', '2023-02-11 17:40:53', 303968118)
1574
+  (1.3ms) commit transaction
1575
+  (0.1ms) begin transaction
1576
+ -----------------------------------------------------
1577
+ Deforest::LogTest: test_get_highlight_colors_for_file
1578
+ -----------------------------------------------------
1579
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1580
+  (0.0ms) rollback transaction
1581
+  (0.1ms) begin transaction
1582
+ ----------------------------------
1583
+ Deforest::LogTest: test_percentile
1584
+ ----------------------------------
1585
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1586
+  (0.0ms) rollback transaction
1587
+  (0.1ms) begin transaction
1588
+ --------------------------------------
1589
+ Deforest::LogTest: test_get_model_name
1590
+ --------------------------------------
1591
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1592
+  (0.0ms) rollback transaction
1593
+  (0.0ms) begin transaction
1594
+ -----------------------------------------------------------------------
1595
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1596
+ -----------------------------------------------------------------------
1597
+  (0.0ms) rollback transaction
1598
+  (0.0ms) begin transaction
1599
+ ---------------------------------------------------------------------------
1600
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1601
+ ---------------------------------------------------------------------------
1602
+  (0.0ms) rollback transaction
1603
+  (0.0ms) begin transaction
1604
+ -----------------------------------
1605
+ DeforestTest: test_insert_into_logs
1606
+ -----------------------------------
1607
+  (0.0ms) rollback transaction
1608
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1609
+  (0.1ms) begin transaction
1610
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
1611
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:41:28', '2023-02-11 17:41:28', 980190962)
1612
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:41:28', '2023-02-11 17:41:28', 298486374)
1613
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:41:28', '2023-02-11 17:41:28', 113629430)
1614
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:41:28', '2023-02-11 17:41:28', 933434481)
1615
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:41:28', '2023-02-11 17:41:28', 303968118)
1616
+  (2.4ms) commit transaction
1617
+  (0.1ms) begin transaction
1618
+ ---------------------------------------------------------------------------
1619
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1620
+ ---------------------------------------------------------------------------
1621
+  (0.1ms) rollback transaction
1622
+  (0.1ms) begin transaction
1623
+ -----------------------------------
1624
+ DeforestTest: test_insert_into_logs
1625
+ -----------------------------------
1626
+  (0.0ms) rollback transaction
1627
+  (0.0ms) begin transaction
1628
+ -----------------------------------------------------------------------
1629
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1630
+ -----------------------------------------------------------------------
1631
+  (0.0ms) rollback transaction
1632
+  (0.0ms) begin transaction
1633
+ ----------------------------------
1634
+ Deforest::LogTest: test_percentile
1635
+ ----------------------------------
1636
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1637
+  (0.0ms) rollback transaction
1638
+  (0.1ms) begin transaction
1639
+ -----------------------------------------------------
1640
+ Deforest::LogTest: test_get_highlight_colors_for_file
1641
+ -----------------------------------------------------
1642
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1643
+  (0.0ms) rollback transaction
1644
+  (0.0ms) begin transaction
1645
+ --------------------------------------
1646
+ Deforest::LogTest: test_get_model_name
1647
+ --------------------------------------
1648
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1649
+  (0.1ms) rollback transaction
1650
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1651
+  (0.0ms) begin transaction
1652
+ Fixture Delete (0.2ms) DELETE FROM "deforest_logs"
1653
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:41:44', '2023-02-11 17:41:44', 980190962)
1654
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:41:44', '2023-02-11 17:41:44', 298486374)
1655
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:41:44', '2023-02-11 17:41:44', 113629430)
1656
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:41:44', '2023-02-11 17:41:44', 933434481)
1657
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:41:44', '2023-02-11 17:41:44', 303968118)
1658
+  (2.6ms) commit transaction
1659
+  (0.1ms) begin transaction
1660
+ -----------------------------------------------------
1661
+ Deforest::LogTest: test_get_highlight_colors_for_file
1662
+ -----------------------------------------------------
1663
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1664
+  (0.0ms) rollback transaction
1665
+  (0.0ms) begin transaction
1666
+ --------------------------------------
1667
+ Deforest::LogTest: test_get_model_name
1668
+ --------------------------------------
1669
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1670
+  (0.1ms) rollback transaction
1671
+  (0.0ms) begin transaction
1672
+ ----------------------------------
1673
+ Deforest::LogTest: test_percentile
1674
+ ----------------------------------
1675
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1676
+  (0.0ms) rollback transaction
1677
+  (0.0ms) begin transaction
1678
+ -----------------------------------------------------------------------
1679
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1680
+ -----------------------------------------------------------------------
1681
+  (0.0ms) rollback transaction
1682
+  (0.0ms) begin transaction
1683
+ ---------------------------------------------------------------------------
1684
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1685
+ ---------------------------------------------------------------------------
1686
+  (0.1ms) rollback transaction
1687
+  (0.0ms) begin transaction
1688
+ -----------------------------------
1689
+ DeforestTest: test_insert_into_logs
1690
+ -----------------------------------
1691
+  (0.0ms) rollback transaction
1692
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1693
+  (0.1ms) begin transaction
1694
+ Fixture Delete (1.2ms) DELETE FROM "deforest_logs"
1695
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:54:24', '2023-02-11 17:54:24', 980190962)
1696
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:54:24', '2023-02-11 17:54:24', 298486374)
1697
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:54:24', '2023-02-11 17:54:24', 113629430)
1698
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:54:24', '2023-02-11 17:54:24', 933434481)
1699
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:54:24', '2023-02-11 17:54:24', 303968118)
1700
+  (1.7ms) commit transaction
1701
+  (0.0ms) begin transaction
1702
+ --------------------------------------
1703
+ Deforest::LogTest: test_get_model_name
1704
+ --------------------------------------
1705
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1706
+  (0.1ms) rollback transaction
1707
+  (0.1ms) begin transaction
1708
+ -----------------------------------------------------
1709
+ Deforest::LogTest: test_get_highlight_colors_for_file
1710
+ -----------------------------------------------------
1711
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1712
+  (0.0ms) rollback transaction
1713
+  (0.0ms) begin transaction
1714
+ ----------------------------------
1715
+ Deforest::LogTest: test_percentile
1716
+ ----------------------------------
1717
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1718
+  (0.0ms) rollback transaction
1719
+  (0.0ms) begin transaction
1720
+ ---------------------------------------------------------------------------
1721
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1722
+ ---------------------------------------------------------------------------
1723
+  (0.0ms) rollback transaction
1724
+  (0.0ms) begin transaction
1725
+ ------------------------------------------
1726
+ DeforestTest: test_parse_and_save_log_file
1727
+ ------------------------------------------
1728
+  (0.5ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 4, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/doctor.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/user.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
1729
+  (0.2ms) rollback transaction
1730
+  (0.1ms) begin transaction
1731
+ -----------------------------------
1732
+ DeforestTest: test_insert_into_logs
1733
+ -----------------------------------
1734
+  (0.1ms) rollback transaction
1735
+  (0.1ms) begin transaction
1736
+ -----------------------------------------------------------------------
1737
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1738
+ -----------------------------------------------------------------------
1739
+  (0.1ms) rollback transaction
1740
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1741
+  (0.0ms) begin transaction
1742
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
1743
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:54:34', '2023-02-11 17:54:34', 980190962)
1744
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:54:34', '2023-02-11 17:54:34', 298486374)
1745
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:54:34', '2023-02-11 17:54:34', 113629430)
1746
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:54:34', '2023-02-11 17:54:34', 933434481)
1747
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:54:34', '2023-02-11 17:54:34', 303968118)
1748
+  (0.8ms) commit transaction
1749
+  (0.0ms) begin transaction
1750
+ ------------------------------------------
1751
+ DeforestTest: test_parse_and_save_log_file
1752
+ ------------------------------------------
1753
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/doctor.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/user.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
1754
+  (0.3ms) rollback transaction
1755
+  (0.0ms) begin transaction
1756
+ -----------------------------------------------------------------------
1757
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1758
+ -----------------------------------------------------------------------
1759
+  (0.0ms) rollback transaction
1760
+  (0.0ms) begin transaction
1761
+ ---------------------------------------------------------------------------
1762
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1763
+ ---------------------------------------------------------------------------
1764
+  (0.0ms) rollback transaction
1765
+  (0.0ms) begin transaction
1766
+ -----------------------------------
1767
+ DeforestTest: test_insert_into_logs
1768
+ -----------------------------------
1769
+  (0.0ms) rollback transaction
1770
+  (0.0ms) begin transaction
1771
+ ----------------------------------
1772
+ Deforest::LogTest: test_percentile
1773
+ ----------------------------------
1774
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1775
+  (0.0ms) rollback transaction
1776
+  (0.0ms) begin transaction
1777
+ -----------------------------------------------------
1778
+ Deforest::LogTest: test_get_highlight_colors_for_file
1779
+ -----------------------------------------------------
1780
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1781
+  (0.0ms) rollback transaction
1782
+  (0.0ms) begin transaction
1783
+ --------------------------------------
1784
+ Deforest::LogTest: test_get_model_name
1785
+ --------------------------------------
1786
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1787
+  (0.1ms) rollback transaction
1788
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1789
+  (0.1ms) begin transaction
1790
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
1791
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:55:22', '2023-02-11 17:55:22', 980190962)
1792
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:55:22', '2023-02-11 17:55:22', 298486374)
1793
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:55:22', '2023-02-11 17:55:22', 113629430)
1794
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:55:22', '2023-02-11 17:55:22', 933434481)
1795
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:55:22', '2023-02-11 17:55:22', 303968118)
1796
+  (2.5ms) commit transaction
1797
+  (0.0ms) begin transaction
1798
+ ---------------------------------------------------------------------------
1799
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1800
+ ---------------------------------------------------------------------------
1801
+  (0.0ms) rollback transaction
1802
+  (0.0ms) begin transaction
1803
+ -----------------------------------
1804
+ DeforestTest: test_insert_into_logs
1805
+ -----------------------------------
1806
+  (0.0ms) rollback transaction
1807
+  (0.0ms) begin transaction
1808
+ ------------------------------------------
1809
+ DeforestTest: test_parse_and_save_log_file
1810
+ ------------------------------------------
1811
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/doctor.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/user.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
1812
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/doctor.rb"]]
1813
+  (0.3ms) rollback transaction
1814
+  (0.1ms) begin transaction
1815
+ -----------------------------------------------------------------------
1816
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1817
+ -----------------------------------------------------------------------
1818
+  (0.1ms) rollback transaction
1819
+  (0.0ms) begin transaction
1820
+ -----------------------------------------------------
1821
+ Deforest::LogTest: test_get_highlight_colors_for_file
1822
+ -----------------------------------------------------
1823
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1824
+  (0.1ms) rollback transaction
1825
+  (0.0ms) begin transaction
1826
+ ----------------------------------
1827
+ Deforest::LogTest: test_percentile
1828
+ ----------------------------------
1829
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1830
+  (0.0ms) rollback transaction
1831
+  (0.0ms) begin transaction
1832
+ --------------------------------------
1833
+ Deforest::LogTest: test_get_model_name
1834
+ --------------------------------------
1835
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1836
+  (0.0ms) rollback transaction
1837
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1838
+  (0.0ms) begin transaction
1839
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
1840
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:55:58', '2023-02-11 17:55:58', 980190962)
1841
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:55:58', '2023-02-11 17:55:58', 298486374)
1842
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:55:58', '2023-02-11 17:55:58', 113629430)
1843
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:55:58', '2023-02-11 17:55:58', 933434481)
1844
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:55:58', '2023-02-11 17:55:58', 303968118)
1845
+  (2.4ms) commit transaction
1846
+  (0.0ms) begin transaction
1847
+ ----------------------------------
1848
+ Deforest::LogTest: test_percentile
1849
+ ----------------------------------
1850
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1851
+  (0.0ms) rollback transaction
1852
+  (0.1ms) begin transaction
1853
+ -----------------------------------------------------
1854
+ Deforest::LogTest: test_get_highlight_colors_for_file
1855
+ -----------------------------------------------------
1856
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1857
+  (0.0ms) rollback transaction
1858
+  (0.0ms) begin transaction
1859
+ --------------------------------------
1860
+ Deforest::LogTest: test_get_model_name
1861
+ --------------------------------------
1862
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1863
+  (0.0ms) rollback transaction
1864
+  (0.0ms) begin transaction
1865
+ -----------------------------------------------------------------------
1866
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1867
+ -----------------------------------------------------------------------
1868
+  (0.0ms) rollback transaction
1869
+  (0.0ms) begin transaction
1870
+ ------------------------------------------
1871
+ DeforestTest: test_parse_and_save_log_file
1872
+ ------------------------------------------
1873
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/user.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
1874
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/doctor.rb"]]
1875
+  (0.3ms) rollback transaction
1876
+  (0.0ms) begin transaction
1877
+ -----------------------------------
1878
+ DeforestTest: test_insert_into_logs
1879
+ -----------------------------------
1880
+  (0.0ms) rollback transaction
1881
+  (0.0ms) begin transaction
1882
+ ---------------------------------------------------------------------------
1883
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1884
+ ---------------------------------------------------------------------------
1885
+  (0.0ms) rollback transaction
1886
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1887
+  (0.1ms) begin transaction
1888
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
1889
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:56:49', '2023-02-11 17:56:49', 980190962)
1890
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:56:49', '2023-02-11 17:56:49', 298486374)
1891
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:56:49', '2023-02-11 17:56:49', 113629430)
1892
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:56:49', '2023-02-11 17:56:49', 933434481)
1893
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:56:49', '2023-02-11 17:56:49', 303968118)
1894
+  (2.9ms) commit transaction
1895
+  (0.1ms) begin transaction
1896
+ -----------------------------------------------------
1897
+ Deforest::LogTest: test_get_highlight_colors_for_file
1898
+ -----------------------------------------------------
1899
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1900
+  (0.0ms) rollback transaction
1901
+  (0.0ms) begin transaction
1902
+ ----------------------------------
1903
+ Deforest::LogTest: test_percentile
1904
+ ----------------------------------
1905
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1906
+  (0.0ms) rollback transaction
1907
+  (0.0ms) begin transaction
1908
+ --------------------------------------
1909
+ Deforest::LogTest: test_get_model_name
1910
+ --------------------------------------
1911
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1912
+  (0.0ms) rollback transaction
1913
+  (0.1ms) begin transaction
1914
+ -----------------------------------------------------------------------
1915
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1916
+ -----------------------------------------------------------------------
1917
+  (0.1ms) rollback transaction
1918
+  (0.1ms) begin transaction
1919
+ -----------------------------------
1920
+ DeforestTest: test_insert_into_logs
1921
+ -----------------------------------
1922
+  (0.0ms) rollback transaction
1923
+  (0.0ms) begin transaction
1924
+ ------------------------------------------
1925
+ DeforestTest: test_parse_and_save_log_file
1926
+ ------------------------------------------
1927
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
1928
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
1929
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
1930
+  (0.3ms) rollback transaction
1931
+  (0.0ms) begin transaction
1932
+ ---------------------------------------------------------------------------
1933
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1934
+ ---------------------------------------------------------------------------
1935
+  (0.0ms) rollback transaction
1936
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1937
+  (0.1ms) begin transaction
1938
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
1939
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 17:59:44', '2023-02-11 17:59:44', 980190962)
1940
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 17:59:44', '2023-02-11 17:59:44', 298486374)
1941
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 17:59:44', '2023-02-11 17:59:44', 113629430)
1942
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 17:59:44', '2023-02-11 17:59:44', 933434481)
1943
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 17:59:44', '2023-02-11 17:59:44', 303968118)
1944
+  (1.5ms) commit transaction
1945
+  (0.0ms) begin transaction
1946
+ -----------------------------------------------------------------------
1947
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
1948
+ -----------------------------------------------------------------------
1949
+  (0.0ms) rollback transaction
1950
+  (0.1ms) begin transaction
1951
+ -----------------------------------
1952
+ DeforestTest: test_insert_into_logs
1953
+ -----------------------------------
1954
+  (0.0ms) rollback transaction
1955
+  (0.1ms) begin transaction
1956
+ ---------------------------------------------------------------------------
1957
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
1958
+ ---------------------------------------------------------------------------
1959
+  (0.0ms) rollback transaction
1960
+  (0.0ms) begin transaction
1961
+ ------------------------------------------
1962
+ DeforestTest: test_parse_and_save_log_file
1963
+ ------------------------------------------
1964
+  (0.3ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
1965
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
1966
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
1967
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
1968
+  (0.4ms) rollback transaction
1969
+  (0.0ms) begin transaction
1970
+ -----------------------------------------------------
1971
+ Deforest::LogTest: test_get_highlight_colors_for_file
1972
+ -----------------------------------------------------
1973
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1974
+  (0.1ms) rollback transaction
1975
+  (0.0ms) begin transaction
1976
+ --------------------------------------
1977
+ Deforest::LogTest: test_get_model_name
1978
+ --------------------------------------
1979
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
1980
+  (0.0ms) rollback transaction
1981
+  (0.0ms) begin transaction
1982
+ ----------------------------------
1983
+ Deforest::LogTest: test_percentile
1984
+ ----------------------------------
1985
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
1986
+  (0.0ms) rollback transaction
1987
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1988
+  (0.1ms) begin transaction
1989
+ Fixture Delete (0.7ms) DELETE FROM "deforest_logs"
1990
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 18:05:05', '2023-02-11 18:05:05', 980190962)
1991
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 18:05:05', '2023-02-11 18:05:05', 298486374)
1992
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 18:05:05', '2023-02-11 18:05:05', 113629430)
1993
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 18:05:05', '2023-02-11 18:05:05', 933434481)
1994
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 18:05:05', '2023-02-11 18:05:05', 303968118)
1995
+  (1.3ms) commit transaction
1996
+  (0.0ms) begin transaction
1997
+ -----------------------------------------------------
1998
+ Deforest::LogTest: test_get_highlight_colors_for_file
1999
+ -----------------------------------------------------
2000
+ Deforest::Log Load (0.3ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2001
+  (0.1ms) rollback transaction
2002
+  (0.0ms) begin transaction
2003
+ --------------------------------------
2004
+ Deforest::LogTest: test_get_model_name
2005
+ --------------------------------------
2006
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2007
+  (0.0ms) rollback transaction
2008
+  (0.0ms) begin transaction
2009
+ ----------------------------------
2010
+ Deforest::LogTest: test_percentile
2011
+ ----------------------------------
2012
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2013
+  (0.0ms) rollback transaction
2014
+  (0.0ms) begin transaction
2015
+ -----------------------------------------------------------------------
2016
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2017
+ -----------------------------------------------------------------------
2018
+  (0.1ms) rollback transaction
2019
+  (0.1ms) begin transaction
2020
+ -----------------------------------
2021
+ DeforestTest: test_insert_into_logs
2022
+ -----------------------------------
2023
+  (0.1ms) rollback transaction
2024
+  (0.1ms) begin transaction
2025
+ ------------------------------------------
2026
+ DeforestTest: test_parse_and_save_log_file
2027
+ ------------------------------------------
2028
+  (0.0ms) rollback transaction
2029
+  (0.1ms) begin transaction
2030
+ ---------------------------------------------------------------------------
2031
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2032
+ ---------------------------------------------------------------------------
2033
+  (0.1ms) rollback transaction
2034
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2035
+  (0.1ms) begin transaction
2036
+ Fixture Delete (0.4ms) DELETE FROM "deforest_logs"
2037
+ Fixture Insert (0.5ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 18:05:33', '2023-02-11 18:05:33', 980190962)
2038
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 18:05:33', '2023-02-11 18:05:33', 298486374)
2039
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 18:05:33', '2023-02-11 18:05:33', 113629430)
2040
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 18:05:33', '2023-02-11 18:05:33', 933434481)
2041
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 18:05:33', '2023-02-11 18:05:33', 303968118)
2042
+  (0.9ms) commit transaction
2043
+  (0.0ms) begin transaction
2044
+ ---------------------------------------------------------------------------
2045
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2046
+ ---------------------------------------------------------------------------
2047
+  (0.1ms) rollback transaction
2048
+  (0.0ms) begin transaction
2049
+ -----------------------------------
2050
+ DeforestTest: test_insert_into_logs
2051
+ -----------------------------------
2052
+  (0.0ms) rollback transaction
2053
+  (0.0ms) begin transaction
2054
+ ------------------------------------------
2055
+ DeforestTest: test_parse_and_save_log_file
2056
+ ------------------------------------------
2057
+  (0.3ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2058
+  (0.2ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2059
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2060
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2061
+  (0.4ms) rollback transaction
2062
+  (0.0ms) begin transaction
2063
+ -----------------------------------------------------------------------
2064
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2065
+ -----------------------------------------------------------------------
2066
+  (0.0ms) rollback transaction
2067
+  (0.0ms) begin transaction
2068
+ ----------------------------------
2069
+ Deforest::LogTest: test_percentile
2070
+ ----------------------------------
2071
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2072
+  (0.1ms) rollback transaction
2073
+  (0.1ms) begin transaction
2074
+ -----------------------------------------------------
2075
+ Deforest::LogTest: test_get_highlight_colors_for_file
2076
+ -----------------------------------------------------
2077
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2078
+  (0.0ms) rollback transaction
2079
+  (0.1ms) begin transaction
2080
+ --------------------------------------
2081
+ Deforest::LogTest: test_get_model_name
2082
+ --------------------------------------
2083
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2084
+  (0.1ms) rollback transaction
2085
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2086
+  (0.1ms) begin transaction
2087
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
2088
+ Fixture Insert (0.4ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 18:06:29', '2023-02-11 18:06:29', 980190962)
2089
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 18:06:29', '2023-02-11 18:06:29', 298486374)
2090
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 18:06:29', '2023-02-11 18:06:29', 113629430)
2091
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 18:06:29', '2023-02-11 18:06:29', 933434481)
2092
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 18:06:29', '2023-02-11 18:06:29', 303968118)
2093
+  (1.2ms) commit transaction
2094
+  (0.0ms) begin transaction
2095
+ ---------------------------------------------------------------------------
2096
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2097
+ ---------------------------------------------------------------------------
2098
+  (0.1ms) rollback transaction
2099
+  (0.0ms) begin transaction
2100
+ -----------------------------------
2101
+ DeforestTest: test_insert_into_logs
2102
+ -----------------------------------
2103
+  (0.0ms) rollback transaction
2104
+  (0.0ms) begin transaction
2105
+ ------------------------------------------
2106
+ DeforestTest: test_parse_and_save_log_file
2107
+ ------------------------------------------
2108
+  (0.0ms) rollback transaction
2109
+  (0.0ms) begin transaction
2110
+ -----------------------------------------------------------------------
2111
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2112
+ -----------------------------------------------------------------------
2113
+  (0.0ms) rollback transaction
2114
+  (0.0ms) begin transaction
2115
+ ----------------------------------
2116
+ Deforest::LogTest: test_percentile
2117
+ ----------------------------------
2118
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2119
+  (0.0ms) rollback transaction
2120
+  (0.0ms) begin transaction
2121
+ -----------------------------------------------------
2122
+ Deforest::LogTest: test_get_highlight_colors_for_file
2123
+ -----------------------------------------------------
2124
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2125
+  (0.0ms) rollback transaction
2126
+  (0.0ms) begin transaction
2127
+ --------------------------------------
2128
+ Deforest::LogTest: test_get_model_name
2129
+ --------------------------------------
2130
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2131
+  (0.0ms) rollback transaction
2132
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2133
+  (0.1ms) begin transaction
2134
+ Fixture Delete (1.3ms) DELETE FROM "deforest_logs"
2135
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 18:07:04', '2023-02-11 18:07:04', 980190962)
2136
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 18:07:04', '2023-02-11 18:07:04', 298486374)
2137
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 18:07:04', '2023-02-11 18:07:04', 113629430)
2138
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 18:07:04', '2023-02-11 18:07:04', 933434481)
2139
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 18:07:04', '2023-02-11 18:07:04', 303968118)
2140
+  (1.2ms) commit transaction
2141
+  (0.0ms) begin transaction
2142
+ -----------------------------------------------------
2143
+ Deforest::LogTest: test_get_highlight_colors_for_file
2144
+ -----------------------------------------------------
2145
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2146
+  (0.1ms) rollback transaction
2147
+  (0.4ms) begin transaction
2148
+ ----------------------------------
2149
+ Deforest::LogTest: test_percentile
2150
+ ----------------------------------
2151
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2152
+  (0.0ms) rollback transaction
2153
+  (0.0ms) begin transaction
2154
+ --------------------------------------
2155
+ Deforest::LogTest: test_get_model_name
2156
+ --------------------------------------
2157
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2158
+  (0.0ms) rollback transaction
2159
+  (0.0ms) begin transaction
2160
+ ---------------------------------------------------------------------------
2161
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2162
+ ---------------------------------------------------------------------------
2163
+  (0.1ms) rollback transaction
2164
+  (0.1ms) begin transaction
2165
+ -----------------------------------
2166
+ DeforestTest: test_insert_into_logs
2167
+ -----------------------------------
2168
+  (0.1ms) rollback transaction
2169
+  (0.1ms) begin transaction
2170
+ -----------------------------------------------------------------------
2171
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2172
+ -----------------------------------------------------------------------
2173
+  (0.0ms) rollback transaction
2174
+  (0.0ms) begin transaction
2175
+ ------------------------------------------
2176
+ DeforestTest: test_parse_and_save_log_file
2177
+ ------------------------------------------
2178
+  (0.5ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2179
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2180
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2181
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2182
+  (0.4ms) rollback transaction
2183
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2184
+  (0.1ms) begin transaction
2185
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
2186
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 18:12:14', '2023-02-11 18:12:14', 980190962)
2187
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 18:12:14', '2023-02-11 18:12:14', 298486374)
2188
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 18:12:14', '2023-02-11 18:12:14', 113629430)
2189
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 18:12:14', '2023-02-11 18:12:14', 933434481)
2190
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 18:12:14', '2023-02-11 18:12:14', 303968118)
2191
+  (1.2ms) commit transaction
2192
+  (0.1ms) begin transaction
2193
+ -----------------------------------
2194
+ DeforestTest: test_insert_into_logs
2195
+ -----------------------------------
2196
+  (0.1ms) rollback transaction
2197
+  (0.0ms) begin transaction
2198
+ ------------------------------------------
2199
+ DeforestTest: test_parse_and_save_log_file
2200
+ ------------------------------------------
2201
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2202
+  (0.2ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2203
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2204
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2205
+  (0.4ms) rollback transaction
2206
+  (0.1ms) begin transaction
2207
+ -----------------------------------------------------------------------
2208
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2209
+ -----------------------------------------------------------------------
2210
+  (0.0ms) rollback transaction
2211
+  (0.1ms) begin transaction
2212
+ ---------------------------------------------------------------------------
2213
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2214
+ ---------------------------------------------------------------------------
2215
+  (0.0ms) rollback transaction
2216
+  (0.0ms) begin transaction
2217
+ ----------------------------------
2218
+ Deforest::LogTest: test_percentile
2219
+ ----------------------------------
2220
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2221
+  (0.0ms) rollback transaction
2222
+  (0.1ms) begin transaction
2223
+ -----------------------------------------------------
2224
+ Deforest::LogTest: test_get_highlight_colors_for_file
2225
+ -----------------------------------------------------
2226
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2227
+  (0.0ms) rollback transaction
2228
+  (0.1ms) begin transaction
2229
+ --------------------------------------
2230
+ Deforest::LogTest: test_get_model_name
2231
+ --------------------------------------
2232
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2233
+  (0.0ms) rollback transaction
2234
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2235
+  (0.1ms) begin transaction
2236
+ Fixture Delete (0.6ms) DELETE FROM "deforest_logs"
2237
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 18:12:53', '2023-02-11 18:12:53', 980190962)
2238
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 18:12:53', '2023-02-11 18:12:53', 298486374)
2239
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 18:12:53', '2023-02-11 18:12:53', 113629430)
2240
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 18:12:53', '2023-02-11 18:12:53', 933434481)
2241
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 18:12:53', '2023-02-11 18:12:53', 303968118)
2242
+  (0.7ms) commit transaction
2243
+  (0.1ms) begin transaction
2244
+ -----------------------------------------------------
2245
+ Deforest::LogTest: test_get_highlight_colors_for_file
2246
+ -----------------------------------------------------
2247
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2248
+  (0.1ms) rollback transaction
2249
+  (0.1ms) begin transaction
2250
+ --------------------------------------
2251
+ Deforest::LogTest: test_get_model_name
2252
+ --------------------------------------
2253
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2254
+  (0.0ms) rollback transaction
2255
+  (0.0ms) begin transaction
2256
+ ----------------------------------
2257
+ Deforest::LogTest: test_percentile
2258
+ ----------------------------------
2259
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2260
+  (0.0ms) rollback transaction
2261
+  (0.0ms) begin transaction
2262
+ -----------------------------------
2263
+ DeforestTest: test_insert_into_logs
2264
+ -----------------------------------
2265
+  (0.0ms) rollback transaction
2266
+  (0.0ms) begin transaction
2267
+ -----------------------------------------------------------------------
2268
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2269
+ -----------------------------------------------------------------------
2270
+  (0.0ms) rollback transaction
2271
+  (0.0ms) begin transaction
2272
+ ---------------------------------------------------------------------------
2273
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2274
+ ---------------------------------------------------------------------------
2275
+  (0.1ms) rollback transaction
2276
+  (0.1ms) begin transaction
2277
+ ------------------------------------------
2278
+ DeforestTest: test_parse_and_save_log_file
2279
+ ------------------------------------------
2280
+  (0.3ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2281
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2282
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2283
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2284
+  (0.2ms) rollback transaction
2285
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2286
+  (0.1ms) begin transaction
2287
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
2288
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 18:15:22', '2023-02-11 18:15:22', 980190962)
2289
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 18:15:22', '2023-02-11 18:15:22', 298486374)
2290
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 18:15:22', '2023-02-11 18:15:22', 113629430)
2291
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 18:15:22', '2023-02-11 18:15:22', 933434481)
2292
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 18:15:22', '2023-02-11 18:15:22', 303968118)
2293
+  (1.2ms) commit transaction
2294
+  (0.1ms) begin transaction
2295
+ -----------------------------------------------------------------------
2296
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2297
+ -----------------------------------------------------------------------
2298
+  (0.1ms) rollback transaction
2299
+  (0.1ms) begin transaction
2300
+ -----------------------------------
2301
+ DeforestTest: test_insert_into_logs
2302
+ -----------------------------------
2303
+  (0.1ms) rollback transaction
2304
+  (0.1ms) begin transaction
2305
+ ------------------------------------------
2306
+ DeforestTest: test_parse_and_save_log_file
2307
+ ------------------------------------------
2308
+  (0.6ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2309
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs"
2310
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2311
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2312
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2313
+  (0.3ms) rollback transaction
2314
+  (0.0ms) begin transaction
2315
+ ---------------------------------------------------------------------------
2316
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2317
+ ---------------------------------------------------------------------------
2318
+  (0.0ms) rollback transaction
2319
+  (0.1ms) begin transaction
2320
+ ----------------------------------
2321
+ Deforest::LogTest: test_percentile
2322
+ ----------------------------------
2323
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2324
+  (0.0ms) rollback transaction
2325
+  (0.0ms) begin transaction
2326
+ -----------------------------------------------------
2327
+ Deforest::LogTest: test_get_highlight_colors_for_file
2328
+ -----------------------------------------------------
2329
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2330
+  (0.0ms) rollback transaction
2331
+  (0.0ms) begin transaction
2332
+ --------------------------------------
2333
+ Deforest::LogTest: test_get_model_name
2334
+ --------------------------------------
2335
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2336
+  (0.0ms) rollback transaction
2337
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2338
+  (0.1ms) begin transaction
2339
+ Fixture Delete (0.2ms) DELETE FROM "deforest_logs"
2340
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 18:16:43', '2023-02-11 18:16:43', 980190962)
2341
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 18:16:43', '2023-02-11 18:16:43', 298486374)
2342
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 18:16:43', '2023-02-11 18:16:43', 113629430)
2343
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 18:16:43', '2023-02-11 18:16:43', 933434481)
2344
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 18:16:43', '2023-02-11 18:16:43', 303968118)
2345
+  (2.4ms) commit transaction
2346
+  (0.1ms) begin transaction
2347
+ ------------------------------------------
2348
+ DeforestTest: test_parse_and_save_log_file
2349
+ ------------------------------------------
2350
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2351
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs"
2352
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2353
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2354
+  (0.0ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2355
+  (0.3ms) rollback transaction
2356
+  (0.0ms) begin transaction
2357
+ -----------------------------------------------------------------------
2358
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2359
+ -----------------------------------------------------------------------
2360
+  (0.0ms) rollback transaction
2361
+  (0.1ms) begin transaction
2362
+ -----------------------------------
2363
+ DeforestTest: test_insert_into_logs
2364
+ -----------------------------------
2365
+  (0.0ms) rollback transaction
2366
+  (0.0ms) begin transaction
2367
+ ---------------------------------------------------------------------------
2368
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2369
+ ---------------------------------------------------------------------------
2370
+  (0.0ms) rollback transaction
2371
+  (0.0ms) begin transaction
2372
+ ----------------------------------
2373
+ Deforest::LogTest: test_percentile
2374
+ ----------------------------------
2375
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2376
+  (0.1ms) rollback transaction
2377
+  (0.0ms) begin transaction
2378
+ -----------------------------------------------------
2379
+ Deforest::LogTest: test_get_highlight_colors_for_file
2380
+ -----------------------------------------------------
2381
+ Deforest::Log Load (0.4ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2382
+  (0.1ms) rollback transaction
2383
+  (0.1ms) begin transaction
2384
+ --------------------------------------
2385
+ Deforest::LogTest: test_get_model_name
2386
+ --------------------------------------
2387
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2388
+  (0.0ms) rollback transaction
2389
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2390
+  (0.1ms) begin transaction
2391
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
2392
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 18:18:18', '2023-02-11 18:18:18', 980190962)
2393
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 18:18:18', '2023-02-11 18:18:18', 298486374)
2394
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 18:18:18', '2023-02-11 18:18:18', 113629430)
2395
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 18:18:18', '2023-02-11 18:18:18', 933434481)
2396
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 18:18:18', '2023-02-11 18:18:18', 303968118)
2397
+  (2.4ms) commit transaction
2398
+  (0.1ms) begin transaction
2399
+ ------------------------------------------
2400
+ DeforestTest: test_parse_and_save_log_file
2401
+ ------------------------------------------
2402
+  (0.8ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2403
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs"
2404
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2405
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2406
+  (0.2ms) SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2407
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
2408
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
2409
+  (0.5ms) rollback transaction
2410
+  (0.0ms) begin transaction
2411
+ -----------------------------------------------------------------------
2412
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2413
+ -----------------------------------------------------------------------
2414
+  (0.0ms) rollback transaction
2415
+  (0.0ms) begin transaction
2416
+ -----------------------------------
2417
+ DeforestTest: test_insert_into_logs
2418
+ -----------------------------------
2419
+  (0.0ms) rollback transaction
2420
+  (0.0ms) begin transaction
2421
+ ---------------------------------------------------------------------------
2422
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2423
+ ---------------------------------------------------------------------------
2424
+  (0.0ms) rollback transaction
2425
+  (0.0ms) begin transaction
2426
+ --------------------------------------
2427
+ Deforest::LogTest: test_get_model_name
2428
+ --------------------------------------
2429
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2430
+  (0.0ms) rollback transaction
2431
+  (0.0ms) begin transaction
2432
+ -----------------------------------------------------
2433
+ Deforest::LogTest: test_get_highlight_colors_for_file
2434
+ -----------------------------------------------------
2435
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2436
+  (0.0ms) rollback transaction
2437
+  (0.0ms) begin transaction
2438
+ ----------------------------------
2439
+ Deforest::LogTest: test_percentile
2440
+ ----------------------------------
2441
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2442
+  (0.0ms) rollback transaction
2443
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2444
+  (0.1ms) begin transaction
2445
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
2446
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 18:18:48', '2023-02-11 18:18:48', 980190962)
2447
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 18:18:48', '2023-02-11 18:18:48', 298486374)
2448
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 18:18:48', '2023-02-11 18:18:48', 113629430)
2449
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 18:18:48', '2023-02-11 18:18:48', 933434481)
2450
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 18:18:48', '2023-02-11 18:18:48', 303968118)
2451
+  (1.1ms) commit transaction
2452
+  (0.1ms) begin transaction
2453
+ -----------------------------------------------------------------------
2454
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2455
+ -----------------------------------------------------------------------
2456
+  (0.1ms) rollback transaction
2457
+  (0.1ms) begin transaction
2458
+ ---------------------------------------------------------------------------
2459
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2460
+ ---------------------------------------------------------------------------
2461
+  (0.1ms) rollback transaction
2462
+  (0.1ms) begin transaction
2463
+ ------------------------------------------
2464
+ DeforestTest: test_parse_and_save_log_file
2465
+ ------------------------------------------
2466
+  (0.5ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2467
+  (0.1ms) SELECT COUNT(*) FROM "deforest_logs"
2468
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2469
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2470
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
2471
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
2472
+  (0.2ms) rollback transaction
2473
+  (0.0ms) begin transaction
2474
+ -----------------------------------
2475
+ DeforestTest: test_insert_into_logs
2476
+ -----------------------------------
2477
+  (0.0ms) rollback transaction
2478
+  (0.0ms) begin transaction
2479
+ ----------------------------------
2480
+ Deforest::LogTest: test_percentile
2481
+ ----------------------------------
2482
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2483
+  (0.0ms) rollback transaction
2484
+  (0.0ms) begin transaction
2485
+ --------------------------------------
2486
+ Deforest::LogTest: test_get_model_name
2487
+ --------------------------------------
2488
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2489
+  (0.0ms) rollback transaction
2490
+  (0.0ms) begin transaction
2491
+ -----------------------------------------------------
2492
+ Deforest::LogTest: test_get_highlight_colors_for_file
2493
+ -----------------------------------------------------
2494
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2495
+  (0.0ms) rollback transaction
2496
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2497
+  (0.1ms) begin transaction
2498
+ Fixture Delete (0.6ms) DELETE FROM "deforest_logs"
2499
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 20:21:57', '2023-02-11 20:21:57', 980190962)
2500
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 20:21:57', '2023-02-11 20:21:57', 298486374)
2501
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 20:21:57', '2023-02-11 20:21:57', 113629430)
2502
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 20:21:57', '2023-02-11 20:21:57', 933434481)
2503
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 20:21:57', '2023-02-11 20:21:57', 303968118)
2504
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/corporate/user.rb', 1050, 'get_access', 200, '2023-02-11 20:21:57', '2023-02-11 20:21:57', 749124092)
2505
+  (1.3ms) commit transaction
2506
+  (0.0ms) begin transaction
2507
+ -----------------------------------------------------
2508
+ Deforest::LogTest: test_get_highlight_colors_for_file
2509
+ -----------------------------------------------------
2510
+  (0.0ms) rollback transaction
2511
+  (0.0ms) begin transaction
2512
+ ----------------------------------
2513
+ Deforest::LogTest: test_percentile
2514
+ ----------------------------------
2515
+  (0.0ms) rollback transaction
2516
+  (0.1ms) begin transaction
2517
+ --------------------------------------
2518
+ Deforest::LogTest: test_get_model_name
2519
+ --------------------------------------
2520
+  (0.0ms) rollback transaction
2521
+  (0.0ms) begin transaction
2522
+ ---------------------------------------------
2523
+ Deforest::LogTest: test_get_nested_model_name
2524
+ ---------------------------------------------
2525
+  (0.0ms) rollback transaction
2526
+  (0.0ms) begin transaction
2527
+ -----------------------------------
2528
+ DeforestTest: test_insert_into_logs
2529
+ -----------------------------------
2530
+  (0.1ms) rollback transaction
2531
+  (0.1ms) begin transaction
2532
+ -----------------------------------------------------------------------
2533
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2534
+ -----------------------------------------------------------------------
2535
+  (0.1ms) rollback transaction
2536
+  (0.0ms) begin transaction
2537
+ ---------------------------------------------------------------------------
2538
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2539
+ ---------------------------------------------------------------------------
2540
+  (0.0ms) rollback transaction
2541
+  (0.0ms) begin transaction
2542
+ ------------------------------------------
2543
+ DeforestTest: test_parse_and_save_log_file
2544
+ ------------------------------------------
2545
+  (0.3ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2546
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2547
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2548
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
2549
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
2550
+  (0.6ms) rollback transaction
2551
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2552
+  (0.1ms) begin transaction
2553
+ Fixture Delete (0.4ms) DELETE FROM "deforest_logs"
2554
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 20:22:22', '2023-02-11 20:22:22', 980190962)
2555
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 20:22:22', '2023-02-11 20:22:22', 298486374)
2556
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 20:22:22', '2023-02-11 20:22:22', 113629430)
2557
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 20:22:22', '2023-02-11 20:22:22', 933434481)
2558
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 20:22:22', '2023-02-11 20:22:22', 303968118)
2559
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/corporate/user.rb', 1050, 'get_access', 200, '2023-02-11 20:22:22', '2023-02-11 20:22:22', 749124092)
2560
+  (1.2ms) commit transaction
2561
+  (0.1ms) begin transaction
2562
+ -----------------------------------
2563
+ DeforestTest: test_insert_into_logs
2564
+ -----------------------------------
2565
+  (0.1ms) rollback transaction
2566
+  (0.0ms) begin transaction
2567
+ -----------------------------------------------------------------------
2568
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2569
+ -----------------------------------------------------------------------
2570
+  (0.0ms) rollback transaction
2571
+  (0.1ms) begin transaction
2572
+ ---------------------------------------------------------------------------
2573
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2574
+ ---------------------------------------------------------------------------
2575
+  (0.1ms) rollback transaction
2576
+  (0.1ms) begin transaction
2577
+ ------------------------------------------
2578
+ DeforestTest: test_parse_and_save_log_file
2579
+ ------------------------------------------
2580
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2581
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2582
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2583
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
2584
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
2585
+  (0.3ms) rollback transaction
2586
+  (0.0ms) begin transaction
2587
+ ----------------------------------
2588
+ Deforest::LogTest: test_percentile
2589
+ ----------------------------------
2590
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2591
+  (0.0ms) rollback transaction
2592
+  (0.0ms) begin transaction
2593
+ -----------------------------------------------------
2594
+ Deforest::LogTest: test_get_highlight_colors_for_file
2595
+ -----------------------------------------------------
2596
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2597
+  (0.0ms) rollback transaction
2598
+  (0.0ms) begin transaction
2599
+ --------------------------------------
2600
+ Deforest::LogTest: test_get_model_name
2601
+ --------------------------------------
2602
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2603
+  (0.0ms) rollback transaction
2604
+  (0.0ms) begin transaction
2605
+ ---------------------------------------------
2606
+ Deforest::LogTest: test_get_nested_model_name
2607
+ ---------------------------------------------
2608
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 749124092]]
2609
+  (0.0ms) rollback transaction
2610
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2611
+  (0.1ms) begin transaction
2612
+ Fixture Delete (0.9ms) DELETE FROM "deforest_logs"
2613
+ Fixture Insert (0.7ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 20:24:18', '2023-02-11 20:24:18', 980190962)
2614
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 20:24:18', '2023-02-11 20:24:18', 298486374)
2615
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 20:24:18', '2023-02-11 20:24:18', 113629430)
2616
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 20:24:18', '2023-02-11 20:24:18', 933434481)
2617
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 20:24:18', '2023-02-11 20:24:18', 303968118)
2618
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/corporate/user.rb', 1050, 'get_access', 200, '2023-02-11 20:24:18', '2023-02-11 20:24:18', 749124092)
2619
+  (1.3ms) commit transaction
2620
+  (0.1ms) begin transaction
2621
+ ---------------------------------------------
2622
+ Deforest::LogTest: test_get_nested_model_name
2623
+ ---------------------------------------------
2624
+ Deforest::Log Load (0.3ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 749124092]]
2625
+  (0.1ms) rollback transaction
2626
+  (0.0ms) begin transaction
2627
+ -----------------------------------------------------
2628
+ Deforest::LogTest: test_get_highlight_colors_for_file
2629
+ -----------------------------------------------------
2630
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2631
+  (0.0ms) rollback transaction
2632
+  (0.0ms) begin transaction
2633
+ ----------------------------------
2634
+ Deforest::LogTest: test_percentile
2635
+ ----------------------------------
2636
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2637
+  (0.0ms) rollback transaction
2638
+  (0.0ms) begin transaction
2639
+ --------------------------------------
2640
+ Deforest::LogTest: test_get_model_name
2641
+ --------------------------------------
2642
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2643
+  (0.0ms) rollback transaction
2644
+  (0.0ms) begin transaction
2645
+ -----------------------------------------------------------------------
2646
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2647
+ -----------------------------------------------------------------------
2648
+  (0.0ms) rollback transaction
2649
+  (0.0ms) begin transaction
2650
+ ---------------------------------------------------------------------------
2651
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2652
+ ---------------------------------------------------------------------------
2653
+  (0.0ms) rollback transaction
2654
+  (0.0ms) begin transaction
2655
+ ------------------------------------------
2656
+ DeforestTest: test_parse_and_save_log_file
2657
+ ------------------------------------------
2658
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2659
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2660
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2661
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
2662
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
2663
+  (0.4ms) rollback transaction
2664
+  (0.1ms) begin transaction
2665
+ -----------------------------------
2666
+ DeforestTest: test_insert_into_logs
2667
+ -----------------------------------
2668
+  (0.0ms) rollback transaction
2669
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
2670
+  (0.1ms) begin transaction
2671
+ Fixture Delete (0.8ms) DELETE FROM "deforest_logs"
2672
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 20:25:38', '2023-02-11 20:25:38', 980190962)
2673
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 20:25:38', '2023-02-11 20:25:38', 298486374)
2674
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 20:25:38', '2023-02-11 20:25:38', 113629430)
2675
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 20:25:38', '2023-02-11 20:25:38', 933434481)
2676
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 20:25:38', '2023-02-11 20:25:38', 303968118)
2677
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/corporate/user.rb', 1050, 'get_access', 200, '2023-02-11 20:25:38', '2023-02-11 20:25:38', 749124092)
2678
+  (1.1ms) commit transaction
2679
+  (0.1ms) begin transaction
2680
+ -----------------------------------
2681
+ DeforestTest: test_insert_into_logs
2682
+ -----------------------------------
2683
+  (0.1ms) rollback transaction
2684
+  (0.1ms) begin transaction
2685
+ -----------------------------------------------------------------------
2686
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2687
+ -----------------------------------------------------------------------
2688
+  (0.0ms) rollback transaction
2689
+  (0.0ms) begin transaction
2690
+ ---------------------------------------------------------------------------
2691
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2692
+ ---------------------------------------------------------------------------
2693
+  (0.0ms) rollback transaction
2694
+  (0.0ms) begin transaction
2695
+ ------------------------------------------
2696
+ DeforestTest: test_parse_and_save_log_file
2697
+ ------------------------------------------
2698
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2699
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2700
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2701
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
2702
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
2703
+  (0.4ms) rollback transaction
2704
+  (0.0ms) begin transaction
2705
+ ---------------------------------------------
2706
+ Deforest::LogTest: test_get_nested_model_name
2707
+ ---------------------------------------------
2708
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 749124092]]
2709
+  (0.0ms) rollback transaction
2710
+  (0.0ms) begin transaction
2711
+ ----------------------------------
2712
+ Deforest::LogTest: test_percentile
2713
+ ----------------------------------
2714
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2715
+  (0.0ms) rollback transaction
2716
+  (0.0ms) begin transaction
2717
+ -----------------------------------------------------
2718
+ Deforest::LogTest: test_get_highlight_colors_for_file
2719
+ -----------------------------------------------------
2720
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2721
+  (0.0ms) rollback transaction
2722
+  (0.0ms) begin transaction
2723
+ --------------------------------------
2724
+ Deforest::LogTest: test_get_model_name
2725
+ --------------------------------------
2726
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2727
+  (0.0ms) rollback transaction
2728
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2729
+  (0.1ms) begin transaction
2730
+ Fixture Delete (0.4ms) DELETE FROM "deforest_logs"
2731
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 20:26:59', '2023-02-11 20:26:59', 980190962)
2732
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 20:26:59', '2023-02-11 20:26:59', 298486374)
2733
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 20:26:59', '2023-02-11 20:26:59', 113629430)
2734
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 20:26:59', '2023-02-11 20:26:59', 933434481)
2735
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 20:26:59', '2023-02-11 20:26:59', 303968118)
2736
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/corporate/user.rb', 1050, 'get_access', 200, '2023-02-11 20:26:59', '2023-02-11 20:26:59', 749124092)
2737
+  (1.3ms) commit transaction
2738
+  (0.1ms) begin transaction
2739
+ --------------------------------------
2740
+ Deforest::LogTest: test_get_model_name
2741
+ --------------------------------------
2742
+ Deforest::Log Load (0.3ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
2743
+  (0.1ms) rollback transaction
2744
+  (0.0ms) begin transaction
2745
+ ---------------------------------------------
2746
+ Deforest::LogTest: test_get_nested_model_name
2747
+ ---------------------------------------------
2748
+ Deforest::Log Load (0.2ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 749124092]]
2749
+  (0.0ms) rollback transaction
2750
+  (0.0ms) begin transaction
2751
+ -----------------------------------------------------
2752
+ Deforest::LogTest: test_get_highlight_colors_for_file
2753
+ -----------------------------------------------------
2754
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2755
+  (0.0ms) rollback transaction
2756
+  (0.0ms) begin transaction
2757
+ ----------------------------------
2758
+ Deforest::LogTest: test_percentile
2759
+ ----------------------------------
2760
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2761
+  (0.0ms) rollback transaction
2762
+  (0.0ms) begin transaction
2763
+ -----------------------------------------------------------------------
2764
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2765
+ -----------------------------------------------------------------------
2766
+  (0.0ms) rollback transaction
2767
+  (0.0ms) begin transaction
2768
+ -----------------------------------
2769
+ DeforestTest: test_insert_into_logs
2770
+ -----------------------------------
2771
+  (0.1ms) rollback transaction
2772
+  (0.0ms) begin transaction
2773
+ ---------------------------------------------------------------------------
2774
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2775
+ ---------------------------------------------------------------------------
2776
+  (0.1ms) rollback transaction
2777
+  (0.0ms) begin transaction
2778
+ ------------------------------------------
2779
+ DeforestTest: test_parse_and_save_log_file
2780
+ ------------------------------------------
2781
+  (0.3ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2782
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2783
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2784
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
2785
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
2786
+  (0.3ms) rollback transaction
2787
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2788
+  (0.0ms) begin transaction
2789
+ Fixture Delete (0.3ms) DELETE FROM "deforest_logs"
2790
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 20:27:52', '2023-02-11 20:27:52', 980190962)
2791
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 20:27:52', '2023-02-11 20:27:52', 298486374)
2792
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 20:27:52', '2023-02-11 20:27:52', 113629430)
2793
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 20:27:52', '2023-02-11 20:27:52', 933434481)
2794
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 20:27:52', '2023-02-11 20:27:52', 303968118)
2795
+  (3.0ms) commit transaction
2796
+  (0.1ms) begin transaction
2797
+ -----------------------------------------------------------------------
2798
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2799
+ -----------------------------------------------------------------------
2800
+  (0.0ms) rollback transaction
2801
+  (0.0ms) begin transaction
2802
+ ---------------------------------------------------------------------------
2803
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2804
+ ---------------------------------------------------------------------------
2805
+  (0.0ms) rollback transaction
2806
+  (0.1ms) begin transaction
2807
+ ------------------------------------------
2808
+ DeforestTest: test_parse_and_save_log_file
2809
+ ------------------------------------------
2810
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2811
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2812
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2813
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
2814
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
2815
+  (0.5ms) rollback transaction
2816
+  (0.1ms) begin transaction
2817
+ -----------------------------------
2818
+ DeforestTest: test_insert_into_logs
2819
+ -----------------------------------
2820
+  (0.0ms) rollback transaction
2821
+  (0.0ms) begin transaction
2822
+ -----------------------------------------------------
2823
+ Deforest::LogTest: test_get_highlight_colors_for_file
2824
+ -----------------------------------------------------
2825
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2826
+  (0.0ms) rollback transaction
2827
+  (0.1ms) begin transaction
2828
+ --------------------------------------
2829
+ Deforest::LogTest: test_get_model_name
2830
+ --------------------------------------
2831
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
2832
+  (0.0ms) rollback transaction
2833
+  (0.1ms) begin transaction
2834
+ ----------------------------------
2835
+ Deforest::LogTest: test_percentile
2836
+ ----------------------------------
2837
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2838
+  (0.0ms) rollback transaction
2839
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2840
+  (0.1ms) begin transaction
2841
+ Fixture Delete (0.2ms) DELETE FROM "deforest_logs"
2842
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/ckr/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 20:28:15', '2023-02-11 20:28:15', 980190962)
2843
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 20:28:15', '2023-02-11 20:28:15', 298486374)
2844
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 20:28:15', '2023-02-11 20:28:15', 113629430)
2845
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 20:28:15', '2023-02-11 20:28:15', 933434481)
2846
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 20:28:15', '2023-02-11 20:28:15', 303968118)
2847
+  (2.4ms) commit transaction
2848
+  (0.0ms) begin transaction
2849
+ -----------------------------------
2850
+ DeforestTest: test_insert_into_logs
2851
+ -----------------------------------
2852
+  (0.0ms) rollback transaction
2853
+  (0.0ms) begin transaction
2854
+ -----------------------------------------------------------------------
2855
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2856
+ -----------------------------------------------------------------------
2857
+  (0.0ms) rollback transaction
2858
+  (0.1ms) begin transaction
2859
+ ---------------------------------------------------------------------------
2860
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2861
+ ---------------------------------------------------------------------------
2862
+  (0.1ms) rollback transaction
2863
+  (0.0ms) begin transaction
2864
+ ------------------------------------------
2865
+ DeforestTest: test_parse_and_save_log_file
2866
+ ------------------------------------------
2867
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2868
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2869
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2870
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
2871
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
2872
+  (0.5ms) rollback transaction
2873
+  (0.1ms) begin transaction
2874
+ -----------------------------------------------------
2875
+ Deforest::LogTest: test_get_highlight_colors_for_file
2876
+ -----------------------------------------------------
2877
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2878
+  (0.0ms) rollback transaction
2879
+  (0.0ms) begin transaction
2880
+ --------------------------------------
2881
+ Deforest::LogTest: test_get_model_name
2882
+ --------------------------------------
2883
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
2884
+  (0.1ms) rollback transaction
2885
+  (0.0ms) begin transaction
2886
+ ----------------------------------
2887
+ Deforest::LogTest: test_percentile
2888
+ ----------------------------------
2889
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2890
+  (0.0ms) rollback transaction
2891
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2892
+  (0.1ms) begin transaction
2893
+ Fixture Delete (0.7ms) DELETE FROM "deforest_logs"
2894
+ Fixture Insert (0.5ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-11 20:29:45', '2023-02-11 20:29:45', 980190962)
2895
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-11 20:29:45', '2023-02-11 20:29:45', 298486374)
2896
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-11 20:29:45', '2023-02-11 20:29:45', 113629430)
2897
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-11 20:29:45', '2023-02-11 20:29:45', 933434481)
2898
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-11 20:29:45', '2023-02-11 20:29:45', 303968118)
2899
+  (0.8ms) commit transaction
2900
+  (0.1ms) begin transaction
2901
+ --------------------------------------
2902
+ Deforest::LogTest: test_get_model_name
2903
+ --------------------------------------
2904
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
2905
+  (0.1ms) rollback transaction
2906
+  (0.0ms) begin transaction
2907
+ -----------------------------------------------------
2908
+ Deforest::LogTest: test_get_highlight_colors_for_file
2909
+ -----------------------------------------------------
2910
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2911
+  (0.1ms) rollback transaction
2912
+  (0.0ms) begin transaction
2913
+ ----------------------------------
2914
+ Deforest::LogTest: test_percentile
2915
+ ----------------------------------
2916
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
2917
+  (0.0ms) rollback transaction
2918
+  (0.0ms) begin transaction
2919
+ -----------------------------------------------------------------------
2920
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
2921
+ -----------------------------------------------------------------------
2922
+  (0.1ms) rollback transaction
2923
+  (0.0ms) begin transaction
2924
+ ------------------------------------------
2925
+ DeforestTest: test_parse_and_save_log_file
2926
+ ------------------------------------------
2927
+  (0.3ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
2928
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
2929
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
2930
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
2931
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
2932
+  (0.3ms) rollback transaction
2933
+  (0.1ms) begin transaction
2934
+ ---------------------------------------------------------------------------
2935
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
2936
+ ---------------------------------------------------------------------------
2937
+  (0.0ms) rollback transaction
2938
+  (0.1ms) begin transaction
2939
+ -----------------------------------
2940
+ DeforestTest: test_insert_into_logs
2941
+ -----------------------------------
2942
+  (0.0ms) rollback transaction
2943
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2944
+  (1.5ms) CREATE TABLE "ar_internal_metadata" ("key" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2945
+  (0.1ms) select sqlite_version(*)
2946
+  (0.1ms) CREATE UNIQUE INDEX "sqlite_autoindex_ar_internal_metadata_1" ON "ar_internal_metadata" ("key")
2947
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2948
+  (0.1ms) select sqlite_version(*)
2949
+  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2950
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2951
+ Migrating to CreateDeforestLogs (20230113124304)
2952
+  (0.1ms) begin transaction
2953
+  (0.3ms) CREATE TABLE "deforest_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_name" varchar, "line_no" integer, "method_name" varchar, "count" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2954
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20230113124304"]]
2955
+  (1.2ms) commit transaction
2956
+ Migrating to CreateUsers (20230211204438)
2957
+  (0.1ms) begin transaction
2958
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar, "last_name" varchar, "email" varchar, "age" integer, "profession" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2959
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20230211204438"]]
2960
+  (1.4ms) commit transaction
2961
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2962
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2963
+  (0.1ms) begin transaction
2964
+ Fixture Delete (0.1ms) DELETE FROM "deforest_users"
2965
+  (0.0ms) rollback transaction
2966
+  (0.0ms) begin transaction
2967
+ Fixture Delete (0.1ms) DELETE FROM "deforest_users"
2968
+  (0.0ms) rollback transaction
2969
+  (0.0ms) begin transaction
2970
+ Fixture Delete (0.1ms) DELETE FROM "deforest_users"
2971
+  (0.0ms) rollback transaction
2972
+  (0.0ms) begin transaction
2973
+ Fixture Delete (0.1ms) DELETE FROM "deforest_users"
2974
+  (0.0ms) rollback transaction
2975
+  (0.1ms) begin transaction
2976
+ Fixture Delete (0.1ms) DELETE FROM "deforest_users"
2977
+  (0.0ms) rollback transaction
2978
+  (0.0ms) begin transaction
2979
+ Fixture Delete (0.1ms) DELETE FROM "deforest_users"
2980
+  (0.0ms) rollback transaction
2981
+  (0.1ms) begin transaction
2982
+ Fixture Delete (0.1ms) DELETE FROM "deforest_users"
2983
+  (0.0ms) rollback transaction
2984
+  (0.1ms) begin transaction
2985
+ Fixture Delete (0.1ms) DELETE FROM "deforest_users"
2986
+  (0.0ms) rollback transaction
2987
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2988
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2989
+ Migrating to CreateUsers (20230211204438)
2990
+  (0.1ms) begin transaction
2991
+  (1.4ms) DROP TABLE "users"
2992
+ SQL (0.5ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20230211204438"]]
2993
+  (1.1ms) commit transaction
2994
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2995
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2996
+ Migrating to CreateUsers (20230211204438)
2997
+  (0.1ms) begin transaction
2998
+  (0.9ms) CREATE TABLE "deforest_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar, "last_name" varchar, "email" varchar, "age" integer, "profession" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2999
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20230211204438"]]
3000
+  (1.5ms) commit transaction
3001
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3002
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3003
+  (0.1ms) begin transaction
3004
+ Fixture Delete (0.7ms) DELETE FROM "deforest_users"
3005
+ Fixture Insert (0.6ms) INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
3006
+  (0.4ms) rollback transaction
3007
+  (0.1ms) begin transaction
3008
+ Fixture Delete (0.4ms) DELETE FROM "deforest_users"
3009
+ Fixture Insert (0.2ms) INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
3010
+  (0.4ms) rollback transaction
3011
+  (0.0ms) begin transaction
3012
+ Fixture Delete (0.2ms) DELETE FROM "deforest_users"
3013
+ Fixture Insert (0.1ms) INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
3014
+  (0.5ms) rollback transaction
3015
+  (0.0ms) begin transaction
3016
+ Fixture Delete (0.2ms) DELETE FROM "deforest_users"
3017
+ Fixture Insert (0.1ms) INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
3018
+  (0.3ms) rollback transaction
3019
+  (0.1ms) begin transaction
3020
+ Fixture Delete (0.3ms) DELETE FROM "deforest_users"
3021
+ Fixture Insert (0.1ms) INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
3022
+  (0.4ms) rollback transaction
3023
+  (0.0ms) begin transaction
3024
+ Fixture Delete (0.3ms) DELETE FROM "deforest_users"
3025
+ Fixture Insert (0.2ms) INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
3026
+  (0.3ms) rollback transaction
3027
+  (0.0ms) begin transaction
3028
+ Fixture Delete (0.2ms) DELETE FROM "deforest_users"
3029
+ Fixture Insert (0.1ms) INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
3030
+  (0.3ms) rollback transaction
3031
+  (0.0ms) begin transaction
3032
+ Fixture Delete (0.3ms) DELETE FROM "deforest_users"
3033
+ Fixture Insert (0.1ms) INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
3034
+  (0.2ms) rollback transaction
3035
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3036
+  (0.1ms) begin transaction
3037
+ Fixture Delete (1.0ms) DELETE FROM "deforest_logs"
3038
+ Fixture Insert (0.6ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/setting.rb', 27, 'refresh_cache', 2, '2023-02-12 11:44:24', '2023-02-12 11:44:24', 980190962)
3039
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 2144, 'lock_user', 10, '2023-02-12 11:44:24', '2023-02-12 11:44:24', 298486374)
3040
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/doctor.rb', 33, 'open', 35, '2023-02-12 11:44:24', '2023-02-12 11:44:24', 113629430)
3041
+ Fixture Insert (0.1ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 100, 'get_user_name', 100, '2023-02-12 11:44:24', '2023-02-12 11:44:24', 933434481)
3042
+ Fixture Insert (0.0ms) INSERT INTO "deforest_logs" ("file_name", "line_no", "method_name", "count", "created_at", "updated_at", "id") VALUES ('/Users/johndoe/workspace/app/models/user.rb', 200, 'get_email', 300, '2023-02-12 11:44:24', '2023-02-12 11:44:24', 303968118)
3043
+  (1.0ms) commit transaction
3044
+  (0.0ms) begin transaction
3045
+ -----------------------------------------------------------------------
3046
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
3047
+ -----------------------------------------------------------------------
3048
+  (0.1ms) rollback transaction
3049
+  (0.1ms) begin transaction
3050
+ ---------------------------------------------------------------------------
3051
+ DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
3052
+ ---------------------------------------------------------------------------
3053
+  (0.0ms) rollback transaction
3054
+  (0.1ms) begin transaction
3055
+ -----------------------------------
3056
+ DeforestTest: test_insert_into_logs
3057
+ -----------------------------------
3058
+  (0.1ms) rollback transaction
3059
+  (0.1ms) begin transaction
3060
+ ------------------------------------------
3061
+ DeforestTest: test_parse_and_save_log_file
3062
+ ------------------------------------------
3063
+  (0.4ms) INSERT INTO deforest_logs (file_name, line_no, method_name, count, created_at, updated_at) VALUES ('/Users/johndoe/workspace/app/models/doctor.rb','2144','lock_user', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/corporate.rb','2144','get_email', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/myuser.rb','120','get_name', 1, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/post.rb','2211','get_title', 2, current_timestamp, current_timestamp),('/Users/johndoe/workspace/app/models/comment.rb','879','get_body', 1, current_timestamp, current_timestamp);
3064
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
3065
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
3066
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
3067
+ Deforest::Log Load (0.0ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1 [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
3068
+  (0.7ms) rollback transaction
3069
+  (0.0ms) begin transaction
3070
+ ----------------------------------
3071
+ Deforest::LogTest: test_percentile
3072
+ ----------------------------------
3073
+ Deforest::Log Load (0.2ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
3074
+  (0.0ms) rollback transaction
3075
+  (0.1ms) begin transaction
3076
+ -----------------------------------------------------
3077
+ Deforest::LogTest: test_get_highlight_colors_for_file
3078
+ -----------------------------------------------------
3079
+ Deforest::Log Load (0.1ms) SELECT file_name, line_no, method_name, SUM(count) AS count_sum FROM "deforest_logs" WHERE (file_name like '%/app/models/%') GROUP BY "deforest_logs"."file_name", "deforest_logs"."line_no", "deforest_logs"."method_name"
3080
+  (0.0ms) rollback transaction
3081
+  (0.1ms) begin transaction
3082
+ --------------------------------------
3083
+ Deforest::LogTest: test_get_model_name
3084
+ --------------------------------------
3085
+ Deforest::Log Load (0.1ms) SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
3086
+  (0.0ms) rollback transaction