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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +37 -0
- data/app/assets/javascripts/deforest/application.js +14 -0
- data/app/assets/javascripts/deforest/logs.js +2 -0
- data/app/assets/stylesheets/deforest/application.css +15 -0
- data/app/assets/stylesheets/deforest/logs.css +4 -0
- data/app/controllers/deforest/application_controller.rb +5 -0
- data/app/controllers/deforest/files_controller.rb +50 -0
- data/app/helpers/deforest/application_helper.rb +4 -0
- data/app/helpers/deforest/logs_helper.rb +4 -0
- data/app/models/deforest/log.rb +37 -0
- data/app/views/deforest/files/dashboard.html.erb +28 -0
- data/app/views/deforest/files/index.html.erb +16 -0
- data/app/views/deforest/files/show.html.erb +39 -0
- data/app/views/layouts/deforest/application.html.erb +14 -0
- data/config/routes.rb +5 -0
- data/db/migrate/20230113124304_create_deforest_logs.rb +12 -0
- data/lib/deforest/engine.rb +5 -0
- data/lib/deforest/version.rb +3 -0
- data/lib/deforest.rb +161 -0
- data/lib/tasks/deforest_initializer.rb +6 -0
- data/lib/tasks/deforest_tasks.rake +7 -0
- data/test/controllers/deforest/logs_controller_test.rb +13 -0
- data/test/deforest_test.rb +47 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +27 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/to_time_preserves_timezone.rb +10 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20230211204438_create_users.rb +13 -0
- data/test/dummy/db/schema.rb +41 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/deforest_db_sync.txt +1 -0
- data/test/dummy/log/development.log +60 -0
- data/test/dummy/log/test.log +3086 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/fixtures/deforest/logs.yml +37 -0
- data/test/integration/navigation_test.rb +8 -0
- data/test/models/deforest/log_test.rb +45 -0
- data/test/test_helper.rb +21 -0
- metadata +247 -0
@@ -0,0 +1,3086 @@
|
|
1
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "deforest_logs"[0m
|
2
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
3
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE 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)[0m
|
4
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
5
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
6
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20230113124304)[0m
|
7
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
8
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
9
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
10
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", "2023-02-07 19:35:34.381957"], ["updated_at", "2023-02-07 19:35:34.381957"]]
|
11
|
+
[1m[35m (0.8ms)[0m [1m[36mcommit transaction[0m
|
12
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", "environment"], ["LIMIT", 1]]
|
13
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
14
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
15
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
16
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys[0m
|
17
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
|
18
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
19
|
+
[1m[36mFixture Delete (0.6ms)[0m [1m[31mDELETE FROM "deforest_logs"[0m
|
20
|
+
[1m[36mFixture Insert (0.2ms)[0m [1m[32mINSERT 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)[0m
|
21
|
+
[1m[36mFixture Insert (0.1ms)[0m [1m[32mINSERT 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)[0m
|
22
|
+
[1m[35m (0.6ms)[0m [1m[36mcommit transaction[0m
|
23
|
+
[1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
|
24
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
25
|
+
------------------------
|
26
|
+
DeforestTest: test_truth
|
27
|
+
------------------------
|
28
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
30
|
+
[1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
|
31
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
|
32
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
33
|
+
[1m[36mFixture Delete (0.6ms)[0m [1m[31mDELETE FROM "deforest_logs"[0m
|
34
|
+
[1m[36mFixture Insert (0.2ms)[0m [1m[32mINSERT 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)[0m
|
35
|
+
[1m[36mFixture Insert (0.1ms)[0m [1m[32mINSERT 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)[0m
|
36
|
+
[1m[35m (2.9ms)[0m [1m[36mcommit transaction[0m
|
37
|
+
[1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
|
38
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
39
|
+
------------------------
|
40
|
+
DeforestTest: test_truth
|
41
|
+
------------------------
|
42
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
43
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
44
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys[0m
|
45
|
+
[1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
|
46
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47
|
+
[1m[36mFixture Delete (0.9ms)[0m [1m[31mDELETE FROM "deforest_logs"[0m
|
48
|
+
[1m[36mFixture Insert (0.5ms)[0m [1m[32mINSERT 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)[0m
|
49
|
+
[1m[36mFixture Insert (0.1ms)[0m [1m[32mINSERT 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)[0m
|
50
|
+
[1m[35m (1.5ms)[0m [1m[36mcommit transaction[0m
|
51
|
+
[1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
|
52
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
53
|
+
------------------------
|
54
|
+
DeforestTest: test_truth
|
55
|
+
------------------------
|
56
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
57
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
58
|
+
[1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys[0m
|
59
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
|
60
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
61
|
+
[1m[36mFixture Delete (0.3ms)[0m [1m[31mDELETE FROM "deforest_logs"[0m
|
62
|
+
[1m[36mFixture Insert (0.1ms)[0m [1m[32mINSERT 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)[0m
|
63
|
+
[1m[36mFixture Insert (0.0ms)[0m [1m[32mINSERT 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)[0m
|
64
|
+
[1m[35m (2.4ms)[0m [1m[36mcommit transaction[0m
|
65
|
+
[1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
|
66
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
67
|
+
------------------------
|
68
|
+
DeforestTest: test_truth
|
69
|
+
------------------------
|
70
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
71
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
72
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys[0m
|
73
|
+
[1m[35m (0.0ms)[0m [1m[35mPRAGMA foreign_keys = OFF[0m
|
74
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
75
|
+
[1m[36mFixture Delete (0.8ms)[0m [1m[31mDELETE FROM "deforest_logs"[0m
|
76
|
+
[1m[36mFixture Insert (0.6ms)[0m [1m[32mINSERT 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)[0m
|
77
|
+
[1m[36mFixture Insert (0.1ms)[0m [1m[32mINSERT 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)[0m
|
78
|
+
[1m[35m (1.3ms)[0m [1m[36mcommit transaction[0m
|
79
|
+
[1m[35m (0.1ms)[0m [1m[35mPRAGMA foreign_keys = 1[0m
|
80
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
81
|
+
------------------------
|
82
|
+
DeforestTest: test_truth
|
83
|
+
------------------------
|
84
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
85
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
86
|
+
[1m[35m (0.1ms)[0m begin transaction
|
87
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
88
|
+
[1m[35mFixture Insert (0.5ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
90
|
+
[1m[35m (1.1ms)[0m commit transaction
|
91
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
92
|
+
------------------------
|
93
|
+
DeforestTest: test_truth
|
94
|
+
------------------------
|
95
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
96
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
97
|
+
--------------------------------------
|
98
|
+
Deforest::LogTest: test_get_model_name
|
99
|
+
--------------------------------------
|
100
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
101
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
102
|
+
[1m[35m (0.1ms)[0m begin transaction
|
103
|
+
[1m[36mFixture Delete (1.0ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
104
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
106
|
+
[1m[35m (1.3ms)[0m commit transaction
|
107
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
108
|
+
------------------------
|
109
|
+
DeforestTest: test_truth
|
110
|
+
------------------------
|
111
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
112
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
113
|
+
--------------------------------------
|
114
|
+
Deforest::LogTest: test_get_model_name
|
115
|
+
--------------------------------------
|
116
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
117
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
118
|
+
[1m[35m (0.1ms)[0m begin transaction
|
119
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "logs"[0m
|
120
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
121
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
122
|
+
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "logs"
|
123
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
124
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
125
|
+
[1m[35m (0.1ms)[0m begin transaction
|
126
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
127
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
129
|
+
[1m[35m (1.9ms)[0m commit transaction
|
130
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
131
|
+
--------------------------------------
|
132
|
+
Deforest::LogTest: test_get_model_name
|
133
|
+
--------------------------------------
|
134
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
135
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
136
|
+
------------------------
|
137
|
+
DeforestTest: test_truth
|
138
|
+
------------------------
|
139
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
140
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
141
|
+
[1m[35m (0.0ms)[0m begin transaction
|
142
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
143
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
145
|
+
[1m[35m (2.4ms)[0m commit transaction
|
146
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
147
|
+
--------------------------------------
|
148
|
+
Deforest::LogTest: test_get_model_name
|
149
|
+
--------------------------------------
|
150
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
151
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
152
|
+
------------------------
|
153
|
+
DeforestTest: test_truth
|
154
|
+
------------------------
|
155
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
156
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
157
|
+
[1m[35m (0.1ms)[0m begin transaction
|
158
|
+
[1m[36mFixture Delete (1.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
159
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
161
|
+
[1m[35m (1.5ms)[0m commit transaction
|
162
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
163
|
+
------------------------
|
164
|
+
DeforestTest: test_truth
|
165
|
+
------------------------
|
166
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
167
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
168
|
+
--------------------------------------
|
169
|
+
Deforest::LogTest: test_get_model_name
|
170
|
+
--------------------------------------
|
171
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
172
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
173
|
+
[1m[35m (0.0ms)[0m begin transaction
|
174
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
175
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
177
|
+
[1m[35m (3.0ms)[0m commit transaction
|
178
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
179
|
+
--------------------------------------
|
180
|
+
Deforest::LogTest: test_get_model_name
|
181
|
+
--------------------------------------
|
182
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 545366268]]
|
183
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
184
|
+
[1m[35m (0.1ms)[0m begin transaction
|
185
|
+
------------------------
|
186
|
+
DeforestTest: test_truth
|
187
|
+
------------------------
|
188
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
189
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
190
|
+
[1m[35m (0.1ms)[0m begin transaction
|
191
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
192
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
194
|
+
[1m[35m (1.1ms)[0m commit transaction
|
195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
196
|
+
--------------------------------------
|
197
|
+
Deforest::LogTest: test_get_model_name
|
198
|
+
--------------------------------------
|
199
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 545366268]]
|
200
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
201
|
+
[1m[35m (0.0ms)[0m begin transaction
|
202
|
+
------------------------
|
203
|
+
DeforestTest: test_truth
|
204
|
+
------------------------
|
205
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
206
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
207
|
+
[1m[35m (0.1ms)[0m begin transaction
|
208
|
+
[1m[36mFixture Delete (0.6ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
209
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
211
|
+
[1m[35m (1.2ms)[0m commit transaction
|
212
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
213
|
+
--------------------------------------
|
214
|
+
Deforest::LogTest: test_get_model_name
|
215
|
+
--------------------------------------
|
216
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 545366268]]
|
217
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
218
|
+
[1m[35m (0.0ms)[0m begin transaction
|
219
|
+
------------------------
|
220
|
+
DeforestTest: test_truth
|
221
|
+
------------------------
|
222
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
223
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
224
|
+
[1m[35m (0.1ms)[0m begin transaction
|
225
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
226
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
228
|
+
[1m[35m (1.1ms)[0m commit transaction
|
229
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
230
|
+
------------------------
|
231
|
+
DeforestTest: test_truth
|
232
|
+
------------------------
|
233
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
234
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
235
|
+
--------------------------------------
|
236
|
+
Deforest::LogTest: test_get_model_name
|
237
|
+
--------------------------------------
|
238
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 545366268]]
|
239
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
240
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
241
|
+
[1m[35m (0.1ms)[0m begin transaction
|
242
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_setting"[0m
|
243
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
244
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
245
|
+
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "deforest_setting"
|
246
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
247
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
248
|
+
[1m[35m (0.1ms)[0m begin transaction
|
249
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
250
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
252
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
254
|
+
[1m[35m (1.2ms)[0m commit transaction
|
255
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
256
|
+
------------------------
|
257
|
+
DeforestTest: test_truth
|
258
|
+
------------------------
|
259
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
260
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
261
|
+
--------------------------------------
|
262
|
+
Deforest::LogTest: test_get_model_name
|
263
|
+
--------------------------------------
|
264
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
|
265
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
266
|
+
[1m[35m (0.0ms)[0m begin transaction
|
267
|
+
----------------------------------
|
268
|
+
Deforest::LogTest: test_percentile
|
269
|
+
----------------------------------
|
270
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
271
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
272
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
273
|
+
[1m[35m (0.1ms)[0m begin transaction
|
274
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
275
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
277
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
279
|
+
[1m[35m (1.3ms)[0m commit transaction
|
280
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281
|
+
------------------------
|
282
|
+
DeforestTest: test_truth
|
283
|
+
------------------------
|
284
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
285
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
286
|
+
----------------------------------
|
287
|
+
Deforest::LogTest: test_percentile
|
288
|
+
----------------------------------
|
289
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
291
|
+
[1m[35m (0.1ms)[0m begin transaction
|
292
|
+
--------------------------------------
|
293
|
+
Deforest::LogTest: test_get_model_name
|
294
|
+
--------------------------------------
|
295
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
296
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
297
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
298
|
+
[1m[35m (0.1ms)[0m begin transaction
|
299
|
+
[1m[36mFixture Delete (0.6ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
300
|
+
[1m[35mFixture Insert (0.5ms)[0m 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
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT 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)[0m
|
302
|
+
[1m[35mFixture Insert (0.2ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
304
|
+
[1m[35m (0.9ms)[0m commit transaction
|
305
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
306
|
+
--------------------------------------
|
307
|
+
Deforest::LogTest: test_get_model_name
|
308
|
+
--------------------------------------
|
309
|
+
[1m[35mDeforest::Log Load (0.3ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
|
310
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
311
|
+
[1m[35m (0.1ms)[0m begin transaction
|
312
|
+
----------------------------------
|
313
|
+
Deforest::LogTest: test_percentile
|
314
|
+
----------------------------------
|
315
|
+
[1m[36mDeforest::Log Load (0.3ms)[0m [1mSELECT 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"[0m
|
316
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
317
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
318
|
+
------------------------
|
319
|
+
DeforestTest: test_truth
|
320
|
+
------------------------
|
321
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
322
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
323
|
+
[1m[35m (0.1ms)[0m begin transaction
|
324
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
325
|
+
[1m[35mFixture Insert (0.8ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
327
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
329
|
+
[1m[35m (1.5ms)[0m commit transaction
|
330
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
331
|
+
----------------------------------
|
332
|
+
Deforest::LogTest: test_percentile
|
333
|
+
----------------------------------
|
334
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
336
|
+
[1m[35m (0.1ms)[0m begin transaction
|
337
|
+
--------------------------------------
|
338
|
+
Deforest::LogTest: test_get_model_name
|
339
|
+
--------------------------------------
|
340
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
341
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
342
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
343
|
+
------------------------
|
344
|
+
DeforestTest: test_truth
|
345
|
+
------------------------
|
346
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
347
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
348
|
+
[1m[35m (0.0ms)[0m begin transaction
|
349
|
+
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
350
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
352
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
354
|
+
[1m[35m (2.4ms)[0m commit transaction
|
355
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
356
|
+
------------------------
|
357
|
+
DeforestTest: test_truth
|
358
|
+
------------------------
|
359
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
360
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
361
|
+
--------------------------------------
|
362
|
+
Deforest::LogTest: test_get_model_name
|
363
|
+
--------------------------------------
|
364
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
|
365
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
366
|
+
[1m[35m (0.0ms)[0m begin transaction
|
367
|
+
----------------------------------
|
368
|
+
Deforest::LogTest: test_percentile
|
369
|
+
----------------------------------
|
370
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
371
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
372
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
373
|
+
[1m[35m (0.1ms)[0m begin transaction
|
374
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
375
|
+
[1m[35mFixture Insert (0.5ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
377
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
379
|
+
[1m[35m (1.2ms)[0m commit transaction
|
380
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
381
|
+
--------------------------------------
|
382
|
+
Deforest::LogTest: test_get_model_name
|
383
|
+
--------------------------------------
|
384
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
|
385
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
386
|
+
[1m[35m (0.1ms)[0m begin transaction
|
387
|
+
----------------------------------
|
388
|
+
Deforest::LogTest: test_percentile
|
389
|
+
----------------------------------
|
390
|
+
[1m[36mDeforest::Log Load (0.4ms)[0m [1mSELECT 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"[0m
|
391
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
392
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
393
|
+
------------------------
|
394
|
+
DeforestTest: test_truth
|
395
|
+
------------------------
|
396
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
397
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
398
|
+
[1m[35m (0.1ms)[0m begin transaction
|
399
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
400
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
402
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
404
|
+
[1m[35m (2.3ms)[0m commit transaction
|
405
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
406
|
+
--------------------------------------
|
407
|
+
Deforest::LogTest: test_get_model_name
|
408
|
+
--------------------------------------
|
409
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
|
410
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
411
|
+
[1m[35m (0.0ms)[0m begin transaction
|
412
|
+
----------------------------------
|
413
|
+
Deforest::LogTest: test_percentile
|
414
|
+
----------------------------------
|
415
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
416
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
417
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
418
|
+
------------------------
|
419
|
+
DeforestTest: test_truth
|
420
|
+
------------------------
|
421
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
422
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
423
|
+
[1m[35m (0.1ms)[0m begin transaction
|
424
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
425
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
427
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
429
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
431
|
+
[1m[35m (0.0ms)[0m begin transaction
|
432
|
+
------------------------
|
433
|
+
DeforestTest: test_truth
|
434
|
+
------------------------
|
435
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
436
|
+
[1m[35m (0.0ms)[0m begin transaction
|
437
|
+
--------------------------------------
|
438
|
+
Deforest::LogTest: test_get_model_name
|
439
|
+
--------------------------------------
|
440
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
441
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
442
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
443
|
+
----------------------------------
|
444
|
+
Deforest::LogTest: test_percentile
|
445
|
+
----------------------------------
|
446
|
+
[1m[35mDeforest::Log Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
448
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
449
|
+
[1m[35m (0.1ms)[0m begin transaction
|
450
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
451
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
453
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
455
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
457
|
+
[1m[35m (0.1ms)[0m begin transaction
|
458
|
+
--------------------------------------
|
459
|
+
Deforest::LogTest: test_get_model_name
|
460
|
+
--------------------------------------
|
461
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
462
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
463
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
464
|
+
-----------------------------------------------------
|
465
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
466
|
+
-----------------------------------------------------
|
467
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
469
|
+
[1m[35m (0.0ms)[0m begin transaction
|
470
|
+
----------------------------------
|
471
|
+
Deforest::LogTest: test_percentile
|
472
|
+
----------------------------------
|
473
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
474
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
475
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
476
|
+
------------------------
|
477
|
+
DeforestTest: test_truth
|
478
|
+
------------------------
|
479
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
480
|
+
[1m[36m (0.5ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs"[0m
|
481
|
+
[1m[35mDeforest::Log Load (0.4ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
483
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.3ms)[0m [1mSELECT 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"[0m
|
485
|
+
[1m[35mDeforest::Log Load (0.3ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
487
|
+
[1m[35m (0.1ms)[0m begin transaction
|
488
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
489
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
491
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
493
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
495
|
+
[1m[35m (0.1ms)[0m begin transaction
|
496
|
+
------------------------
|
497
|
+
DeforestTest: test_truth
|
498
|
+
------------------------
|
499
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
500
|
+
[1m[35m (0.0ms)[0m begin transaction
|
501
|
+
-----------------------------------------------------
|
502
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
503
|
+
-----------------------------------------------------
|
504
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
505
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
506
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
507
|
+
----------------------------------
|
508
|
+
Deforest::LogTest: test_percentile
|
509
|
+
----------------------------------
|
510
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
512
|
+
[1m[35m (0.0ms)[0m begin transaction
|
513
|
+
--------------------------------------
|
514
|
+
Deforest::LogTest: test_get_model_name
|
515
|
+
--------------------------------------
|
516
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
517
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
518
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
519
|
+
[1m[35m (0.1ms)[0m begin transaction
|
520
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
521
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
523
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
525
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
527
|
+
[1m[35m (0.1ms)[0m begin transaction
|
528
|
+
--------------------------------------
|
529
|
+
Deforest::LogTest: test_get_model_name
|
530
|
+
--------------------------------------
|
531
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
532
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
533
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
534
|
+
----------------------------------
|
535
|
+
Deforest::LogTest: test_percentile
|
536
|
+
----------------------------------
|
537
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
539
|
+
[1m[35m (0.0ms)[0m begin transaction
|
540
|
+
-----------------------------------------------------
|
541
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
542
|
+
-----------------------------------------------------
|
543
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
544
|
+
[1m[35m (0.0ms)[0m begin transaction
|
545
|
+
------------------------
|
546
|
+
DeforestTest: test_truth
|
547
|
+
------------------------
|
548
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
549
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
550
|
+
[1m[35m (0.1ms)[0m begin transaction
|
551
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
552
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
554
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
556
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
|
558
|
+
[1m[35m (0.1ms)[0m begin transaction
|
559
|
+
------------------------
|
560
|
+
DeforestTest: test_truth
|
561
|
+
------------------------
|
562
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
563
|
+
[1m[35m (0.0ms)[0m begin transaction
|
564
|
+
-----------------------------------------------------
|
565
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
566
|
+
-----------------------------------------------------
|
567
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
568
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
569
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
570
|
+
--------------------------------------
|
571
|
+
Deforest::LogTest: test_get_model_name
|
572
|
+
--------------------------------------
|
573
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
|
574
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
575
|
+
[1m[35m (0.1ms)[0m begin transaction
|
576
|
+
----------------------------------
|
577
|
+
Deforest::LogTest: test_percentile
|
578
|
+
----------------------------------
|
579
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
580
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
581
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
582
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
583
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
584
|
+
[1m[35m (0.1ms)[0m begin transaction
|
585
|
+
[1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
586
|
+
[1m[35mFixture Insert (0.9ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
588
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
590
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.8ms)[0m [1mcommit transaction[0m
|
592
|
+
[1m[35m (0.1ms)[0m begin transaction
|
593
|
+
------------------------
|
594
|
+
DeforestTest: test_truth
|
595
|
+
------------------------
|
596
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
597
|
+
[1m[35m (0.0ms)[0m begin transaction
|
598
|
+
----------------------------------
|
599
|
+
Deforest::LogTest: test_percentile
|
600
|
+
----------------------------------
|
601
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
602
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
603
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
604
|
+
-----------------------------------------------------
|
605
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
606
|
+
-----------------------------------------------------
|
607
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
609
|
+
[1m[35m (0.0ms)[0m begin transaction
|
610
|
+
--------------------------------------
|
611
|
+
Deforest::LogTest: test_get_model_name
|
612
|
+
--------------------------------------
|
613
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
614
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
615
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
616
|
+
[1m[35m (0.1ms)[0m begin transaction
|
617
|
+
[1m[36mFixture Delete (0.6ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
618
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
620
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
622
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
624
|
+
[1m[35m (0.1ms)[0m begin transaction
|
625
|
+
--------------------------------------
|
626
|
+
Deforest::LogTest: test_get_model_name
|
627
|
+
--------------------------------------
|
628
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
629
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
630
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
631
|
+
----------------------------------
|
632
|
+
Deforest::LogTest: test_percentile
|
633
|
+
----------------------------------
|
634
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
636
|
+
[1m[35m (0.0ms)[0m begin transaction
|
637
|
+
-----------------------------------------------------
|
638
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
639
|
+
-----------------------------------------------------
|
640
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
641
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
642
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
643
|
+
------------------------
|
644
|
+
DeforestTest: test_truth
|
645
|
+
------------------------
|
646
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
647
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
648
|
+
[1m[35m (0.1ms)[0m begin transaction
|
649
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
650
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
652
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
654
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
656
|
+
[1m[35m (0.1ms)[0m begin transaction
|
657
|
+
------------------------
|
658
|
+
DeforestTest: test_truth
|
659
|
+
------------------------
|
660
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
661
|
+
[1m[35m (0.0ms)[0m begin transaction
|
662
|
+
-----------------------------------------------------
|
663
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
664
|
+
-----------------------------------------------------
|
665
|
+
[1m[36mDeforest::Log Load (0.3ms)[0m [1mSELECT 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"[0m
|
666
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
667
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
668
|
+
----------------------------------
|
669
|
+
Deforest::LogTest: test_percentile
|
670
|
+
----------------------------------
|
671
|
+
[1m[35mDeforest::Log Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
673
|
+
[1m[35m (0.0ms)[0m begin transaction
|
674
|
+
--------------------------------------
|
675
|
+
Deforest::LogTest: test_get_model_name
|
676
|
+
--------------------------------------
|
677
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
678
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
679
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
680
|
+
[1m[35m (0.1ms)[0m begin transaction
|
681
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
682
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
684
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
686
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
688
|
+
[1m[35m (0.1ms)[0m begin transaction
|
689
|
+
------------------------
|
690
|
+
DeforestTest: test_truth
|
691
|
+
------------------------
|
692
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
693
|
+
[1m[35m (0.0ms)[0m begin transaction
|
694
|
+
--------------------------------------
|
695
|
+
Deforest::LogTest: test_get_model_name
|
696
|
+
--------------------------------------
|
697
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
698
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
699
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
700
|
+
-----------------------------------------------------
|
701
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
702
|
+
-----------------------------------------------------
|
703
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
705
|
+
[1m[35m (0.0ms)[0m begin transaction
|
706
|
+
----------------------------------
|
707
|
+
Deforest::LogTest: test_percentile
|
708
|
+
----------------------------------
|
709
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
710
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
711
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
712
|
+
[1m[35m (0.1ms)[0m begin transaction
|
713
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
714
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
716
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
718
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
720
|
+
[1m[35m (0.0ms)[0m begin transaction
|
721
|
+
--------------------------------------
|
722
|
+
Deforest::LogTest: test_get_model_name
|
723
|
+
--------------------------------------
|
724
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
725
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
726
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
727
|
+
-----------------------------------------------------
|
728
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
729
|
+
-----------------------------------------------------
|
730
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
732
|
+
[1m[35m (0.0ms)[0m begin transaction
|
733
|
+
----------------------------------
|
734
|
+
Deforest::LogTest: test_percentile
|
735
|
+
----------------------------------
|
736
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
737
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
738
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
739
|
+
------------------------
|
740
|
+
DeforestTest: test_truth
|
741
|
+
------------------------
|
742
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
743
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
744
|
+
[1m[35m (0.1ms)[0m begin transaction
|
745
|
+
[1m[36mFixture Delete (0.6ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
746
|
+
[1m[35mFixture Insert (0.4ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
748
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
750
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
752
|
+
[1m[35m (0.0ms)[0m begin transaction
|
753
|
+
------------------------
|
754
|
+
DeforestTest: test_truth
|
755
|
+
------------------------
|
756
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
757
|
+
[1m[35m (0.0ms)[0m begin transaction
|
758
|
+
--------------------------------------
|
759
|
+
Deforest::LogTest: test_get_model_name
|
760
|
+
--------------------------------------
|
761
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
762
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
763
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
764
|
+
-----------------------------------------------------
|
765
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
766
|
+
-----------------------------------------------------
|
767
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
769
|
+
[1m[35m (0.1ms)[0m begin transaction
|
770
|
+
----------------------------------
|
771
|
+
Deforest::LogTest: test_percentile
|
772
|
+
----------------------------------
|
773
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
774
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
775
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
776
|
+
[1m[35m (0.1ms)[0m begin transaction
|
777
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
778
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
780
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
782
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
784
|
+
[1m[35m (0.1ms)[0m begin transaction
|
785
|
+
------------------------
|
786
|
+
DeforestTest: test_truth
|
787
|
+
------------------------
|
788
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
789
|
+
[1m[35m (0.0ms)[0m begin transaction
|
790
|
+
-----------------------------------------------------
|
791
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
792
|
+
-----------------------------------------------------
|
793
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
794
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
795
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
796
|
+
----------------------------------
|
797
|
+
Deforest::LogTest: test_percentile
|
798
|
+
----------------------------------
|
799
|
+
[1m[35mDeforest::Log Load (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
801
|
+
[1m[35m (0.0ms)[0m begin transaction
|
802
|
+
--------------------------------------
|
803
|
+
Deforest::LogTest: test_get_model_name
|
804
|
+
--------------------------------------
|
805
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
806
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
807
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
808
|
+
[1m[35m (0.1ms)[0m begin transaction
|
809
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
810
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
812
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
814
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
816
|
+
[1m[35m (0.1ms)[0m begin transaction
|
817
|
+
--------------------------------------
|
818
|
+
Deforest::LogTest: test_get_model_name
|
819
|
+
--------------------------------------
|
820
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
821
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
822
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
823
|
+
-----------------------------------------------------
|
824
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
825
|
+
-----------------------------------------------------
|
826
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
828
|
+
[1m[35m (0.0ms)[0m begin transaction
|
829
|
+
----------------------------------
|
830
|
+
Deforest::LogTest: test_percentile
|
831
|
+
----------------------------------
|
832
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
833
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
834
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
835
|
+
------------------------
|
836
|
+
DeforestTest: test_truth
|
837
|
+
------------------------
|
838
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
839
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
840
|
+
[1m[35m (0.0ms)[0m begin transaction
|
841
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
842
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
844
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
846
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.5ms)[0m [1mcommit transaction[0m
|
848
|
+
[1m[35m (0.0ms)[0m begin transaction
|
849
|
+
-----------------------------------------------------
|
850
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
851
|
+
-----------------------------------------------------
|
852
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
853
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
854
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
855
|
+
--------------------------------------
|
856
|
+
Deforest::LogTest: test_get_model_name
|
857
|
+
--------------------------------------
|
858
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
859
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
860
|
+
[1m[35m (0.0ms)[0m begin transaction
|
861
|
+
----------------------------------
|
862
|
+
Deforest::LogTest: test_percentile
|
863
|
+
----------------------------------
|
864
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
865
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
866
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
867
|
+
------------------------
|
868
|
+
DeforestTest: test_truth
|
869
|
+
------------------------
|
870
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
871
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
872
|
+
[1m[35m (0.0ms)[0m begin transaction
|
873
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
874
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
876
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
878
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
880
|
+
[1m[35m (0.1ms)[0m begin transaction
|
881
|
+
----------------------------------
|
882
|
+
Deforest::LogTest: test_percentile
|
883
|
+
----------------------------------
|
884
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
885
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
886
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
887
|
+
--------------------------------------
|
888
|
+
Deforest::LogTest: test_get_model_name
|
889
|
+
--------------------------------------
|
890
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
891
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
892
|
+
[1m[35m (0.0ms)[0m begin transaction
|
893
|
+
-----------------------------------------------------
|
894
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
895
|
+
-----------------------------------------------------
|
896
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
897
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
898
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
899
|
+
------------------------
|
900
|
+
DeforestTest: test_truth
|
901
|
+
------------------------
|
902
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
903
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
904
|
+
[1m[35m (0.1ms)[0m begin transaction
|
905
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
906
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
908
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
910
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (3.1ms)[0m [1mcommit transaction[0m
|
912
|
+
[1m[35m (0.1ms)[0m begin transaction
|
913
|
+
------------------------
|
914
|
+
DeforestTest: test_truth
|
915
|
+
------------------------
|
916
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
917
|
+
[1m[35m (0.0ms)[0m begin transaction
|
918
|
+
-----------------------------------------------------
|
919
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
920
|
+
-----------------------------------------------------
|
921
|
+
[1m[36mDeforest::Log Load (0.3ms)[0m [1mSELECT 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"[0m
|
922
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
923
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
924
|
+
--------------------------------------
|
925
|
+
Deforest::LogTest: test_get_model_name
|
926
|
+
--------------------------------------
|
927
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
928
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
929
|
+
[1m[35m (0.0ms)[0m begin transaction
|
930
|
+
----------------------------------
|
931
|
+
Deforest::LogTest: test_percentile
|
932
|
+
----------------------------------
|
933
|
+
[1m[36mDeforest::Log Load (0.3ms)[0m [1mSELECT 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"[0m
|
934
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
935
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
936
|
+
[1m[35m (0.1ms)[0m begin transaction
|
937
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
938
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
940
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
942
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.3ms)[0m [1mcommit transaction[0m
|
944
|
+
[1m[35m (0.1ms)[0m begin transaction
|
945
|
+
------------------------
|
946
|
+
DeforestTest: test_truth
|
947
|
+
------------------------
|
948
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
949
|
+
[1m[35m (0.0ms)[0m begin transaction
|
950
|
+
-----------------------------------------------------
|
951
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
952
|
+
-----------------------------------------------------
|
953
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
954
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
955
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
956
|
+
--------------------------------------
|
957
|
+
Deforest::LogTest: test_get_model_name
|
958
|
+
--------------------------------------
|
959
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
960
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
961
|
+
[1m[35m (0.0ms)[0m begin transaction
|
962
|
+
----------------------------------
|
963
|
+
Deforest::LogTest: test_percentile
|
964
|
+
----------------------------------
|
965
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
966
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
967
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
968
|
+
[1m[35m (0.1ms)[0m begin transaction
|
969
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
970
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
972
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
974
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.1ms)[0m [1mcommit transaction[0m
|
976
|
+
[1m[35m (0.0ms)[0m begin transaction
|
977
|
+
--------------------------------------
|
978
|
+
Deforest::LogTest: test_get_model_name
|
979
|
+
--------------------------------------
|
980
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
981
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
982
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
983
|
+
-----------------------------------------------------
|
984
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
985
|
+
-----------------------------------------------------
|
986
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
988
|
+
[1m[35m (0.0ms)[0m begin transaction
|
989
|
+
----------------------------------
|
990
|
+
Deforest::LogTest: test_percentile
|
991
|
+
----------------------------------
|
992
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
993
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
994
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
995
|
+
------------------------
|
996
|
+
DeforestTest: test_truth
|
997
|
+
------------------------
|
998
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
999
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1000
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1001
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1002
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1004
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1006
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (5.9ms)[0m [1mcommit transaction[0m
|
1008
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1009
|
+
------------------------------------------
|
1010
|
+
DeforestTest: test_initialize_db_sync_file
|
1011
|
+
------------------------------------------
|
1012
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1013
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1014
|
+
-----------------------------------------------------
|
1015
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1016
|
+
-----------------------------------------------------
|
1017
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1018
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1019
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1020
|
+
--------------------------------------
|
1021
|
+
Deforest::LogTest: test_get_model_name
|
1022
|
+
--------------------------------------
|
1023
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
1024
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1025
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1026
|
+
----------------------------------
|
1027
|
+
Deforest::LogTest: test_percentile
|
1028
|
+
----------------------------------
|
1029
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
1030
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1031
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1032
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1033
|
+
[1m[36mFixture Delete (1.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1034
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1036
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1038
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
|
1040
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1041
|
+
-----------------------------------------------------
|
1042
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1043
|
+
-----------------------------------------------------
|
1044
|
+
[1m[36mDeforest::Log Load (0.3ms)[0m [1mSELECT 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"[0m
|
1045
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1046
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1047
|
+
----------------------------------
|
1048
|
+
Deforest::LogTest: test_percentile
|
1049
|
+
----------------------------------
|
1050
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1052
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1053
|
+
--------------------------------------
|
1054
|
+
Deforest::LogTest: test_get_model_name
|
1055
|
+
--------------------------------------
|
1056
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1057
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1058
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1059
|
+
------------------------------------------
|
1060
|
+
DeforestTest: test_initialize_db_sync_file
|
1061
|
+
------------------------------------------
|
1062
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1063
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1064
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1065
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1066
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1068
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1070
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
|
1072
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1073
|
+
--------------------------------------
|
1074
|
+
Deforest::LogTest: test_get_model_name
|
1075
|
+
--------------------------------------
|
1076
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1077
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1078
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1079
|
+
----------------------------------
|
1080
|
+
Deforest::LogTest: test_percentile
|
1081
|
+
----------------------------------
|
1082
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1084
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1085
|
+
-----------------------------------------------------
|
1086
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1087
|
+
-----------------------------------------------------
|
1088
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1089
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1090
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1091
|
+
------------------------------------------
|
1092
|
+
DeforestTest: test_initialize_db_sync_file
|
1093
|
+
------------------------------------------
|
1094
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1095
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1096
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1097
|
+
[1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1098
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1100
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1102
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
1104
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1105
|
+
------------------------------------------
|
1106
|
+
DeforestTest: test_initialize_db_sync_file
|
1107
|
+
------------------------------------------
|
1108
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1109
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1110
|
+
----------------------------------
|
1111
|
+
Deforest::LogTest: test_percentile
|
1112
|
+
----------------------------------
|
1113
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1114
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1115
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1116
|
+
-----------------------------------------------------
|
1117
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1118
|
+
-----------------------------------------------------
|
1119
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1121
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1122
|
+
--------------------------------------
|
1123
|
+
Deforest::LogTest: test_get_model_name
|
1124
|
+
--------------------------------------
|
1125
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1126
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1127
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1128
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1129
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1130
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1132
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1134
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1136
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1137
|
+
------------------------------------------
|
1138
|
+
DeforestTest: test_initialize_db_sync_file
|
1139
|
+
------------------------------------------
|
1140
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1141
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1142
|
+
-----------------------------------------------------
|
1143
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1144
|
+
-----------------------------------------------------
|
1145
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1146
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1147
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1148
|
+
--------------------------------------
|
1149
|
+
Deforest::LogTest: test_get_model_name
|
1150
|
+
--------------------------------------
|
1151
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
1152
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1153
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1154
|
+
----------------------------------
|
1155
|
+
Deforest::LogTest: test_percentile
|
1156
|
+
----------------------------------
|
1157
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
1158
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1159
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1160
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1161
|
+
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1162
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1164
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1166
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
1168
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1169
|
+
-----------------------------------------------------
|
1170
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1171
|
+
-----------------------------------------------------
|
1172
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1173
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
1174
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1175
|
+
--------------------------------------
|
1176
|
+
Deforest::LogTest: test_get_model_name
|
1177
|
+
--------------------------------------
|
1178
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
1179
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1180
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1181
|
+
----------------------------------
|
1182
|
+
Deforest::LogTest: test_percentile
|
1183
|
+
----------------------------------
|
1184
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
1185
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1186
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1187
|
+
------------------------------------------
|
1188
|
+
DeforestTest: test_initialize_db_sync_file
|
1189
|
+
------------------------------------------
|
1190
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1191
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1192
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1193
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1194
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1196
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1198
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.0ms)[0m [1mcommit transaction[0m
|
1200
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1201
|
+
-----------------------------------------------------
|
1202
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1203
|
+
-----------------------------------------------------
|
1204
|
+
[1m[36mDeforest::Log Load (0.3ms)[0m [1mSELECT 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"[0m
|
1205
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1206
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1207
|
+
--------------------------------------
|
1208
|
+
Deforest::LogTest: test_get_model_name
|
1209
|
+
--------------------------------------
|
1210
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
1211
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1212
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1213
|
+
----------------------------------
|
1214
|
+
Deforest::LogTest: test_percentile
|
1215
|
+
----------------------------------
|
1216
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1217
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1218
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1219
|
+
---------------------------------------------------------------------------
|
1220
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1221
|
+
---------------------------------------------------------------------------
|
1222
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1223
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1224
|
+
-----------------------------------------------------------------------
|
1225
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1226
|
+
-----------------------------------------------------------------------
|
1227
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1228
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1229
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1230
|
+
[1m[36mFixture Delete (1.4ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1231
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1233
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1235
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1237
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1238
|
+
-----------------------------------------------------
|
1239
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1240
|
+
-----------------------------------------------------
|
1241
|
+
[1m[36mDeforest::Log Load (0.3ms)[0m [1mSELECT 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"[0m
|
1242
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1243
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1244
|
+
----------------------------------
|
1245
|
+
Deforest::LogTest: test_percentile
|
1246
|
+
----------------------------------
|
1247
|
+
[1m[35mDeforest::Log Load (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1249
|
+
[1m[35m (0.2ms)[0m begin transaction
|
1250
|
+
--------------------------------------
|
1251
|
+
Deforest::LogTest: test_get_model_name
|
1252
|
+
--------------------------------------
|
1253
|
+
[1m[36mDeforest::Log Load (0.4ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1254
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1255
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1256
|
+
-----------------------------------------------------------------------
|
1257
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1258
|
+
-----------------------------------------------------------------------
|
1259
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1260
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1261
|
+
---------------------------------------------------------------------------
|
1262
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1263
|
+
---------------------------------------------------------------------------
|
1264
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1265
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1266
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1267
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1268
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1270
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1272
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
1274
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1275
|
+
-----------------------------------------------------------------------
|
1276
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1277
|
+
-----------------------------------------------------------------------
|
1278
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1279
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1280
|
+
---------------------------------------------------------------------------
|
1281
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1282
|
+
---------------------------------------------------------------------------
|
1283
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1284
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1285
|
+
--------------------------------------
|
1286
|
+
Deforest::LogTest: test_get_model_name
|
1287
|
+
--------------------------------------
|
1288
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1289
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1290
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1291
|
+
-----------------------------------------------------
|
1292
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1293
|
+
-----------------------------------------------------
|
1294
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1296
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1297
|
+
----------------------------------
|
1298
|
+
Deforest::LogTest: test_percentile
|
1299
|
+
----------------------------------
|
1300
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1301
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1302
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1303
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1304
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1305
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1307
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1309
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1311
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1312
|
+
--------------------------------------
|
1313
|
+
Deforest::LogTest: test_get_model_name
|
1314
|
+
--------------------------------------
|
1315
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1316
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1317
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1318
|
+
-----------------------------------------------------
|
1319
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1320
|
+
-----------------------------------------------------
|
1321
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1323
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1324
|
+
----------------------------------
|
1325
|
+
Deforest::LogTest: test_percentile
|
1326
|
+
----------------------------------
|
1327
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1328
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1329
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1330
|
+
---------------------------------------------------------------------------
|
1331
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1332
|
+
---------------------------------------------------------------------------
|
1333
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1334
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1335
|
+
-----------------------------------------------------------------------
|
1336
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1337
|
+
-----------------------------------------------------------------------
|
1338
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1339
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1340
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1341
|
+
[1m[36mFixture Delete (1.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1342
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1344
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1346
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
1348
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1349
|
+
---------------------------------------------------------------------------
|
1350
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1351
|
+
---------------------------------------------------------------------------
|
1352
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1353
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1354
|
+
-----------------------------------------------------------------------
|
1355
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1356
|
+
-----------------------------------------------------------------------
|
1357
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1358
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1359
|
+
-----------------------------------------------------
|
1360
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1361
|
+
-----------------------------------------------------
|
1362
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1363
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1364
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1365
|
+
----------------------------------
|
1366
|
+
Deforest::LogTest: test_percentile
|
1367
|
+
----------------------------------
|
1368
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1370
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1371
|
+
--------------------------------------
|
1372
|
+
Deforest::LogTest: test_get_model_name
|
1373
|
+
--------------------------------------
|
1374
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1375
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1376
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1377
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1378
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1379
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1381
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1383
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
1385
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1386
|
+
-----------------------------------------------------------------------
|
1387
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1388
|
+
-----------------------------------------------------------------------
|
1389
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1390
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1391
|
+
---------------------------------------------------------------------------
|
1392
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1393
|
+
---------------------------------------------------------------------------
|
1394
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1395
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1396
|
+
-----------------------------------------------------
|
1397
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1398
|
+
-----------------------------------------------------
|
1399
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1400
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1401
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1402
|
+
--------------------------------------
|
1403
|
+
Deforest::LogTest: test_get_model_name
|
1404
|
+
--------------------------------------
|
1405
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
1406
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1407
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1408
|
+
----------------------------------
|
1409
|
+
Deforest::LogTest: test_percentile
|
1410
|
+
----------------------------------
|
1411
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
1412
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1413
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1414
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1415
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1416
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1418
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1420
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
1422
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1423
|
+
-----------------------------------------------------------------------
|
1424
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1425
|
+
-----------------------------------------------------------------------
|
1426
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1427
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1428
|
+
---------------------------------------------------------------------------
|
1429
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1430
|
+
---------------------------------------------------------------------------
|
1431
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1432
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1433
|
+
-----------------------------------------------------
|
1434
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1435
|
+
-----------------------------------------------------
|
1436
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1437
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1438
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1439
|
+
--------------------------------------
|
1440
|
+
Deforest::LogTest: test_get_model_name
|
1441
|
+
--------------------------------------
|
1442
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
1443
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1444
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1445
|
+
----------------------------------
|
1446
|
+
Deforest::LogTest: test_percentile
|
1447
|
+
----------------------------------
|
1448
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
1449
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1450
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1451
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1452
|
+
[1m[36mFixture Delete (0.5ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1453
|
+
[1m[35mFixture Insert (0.3ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1455
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1457
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
1459
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1460
|
+
-----------------------------------------------------------------------
|
1461
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1462
|
+
-----------------------------------------------------------------------
|
1463
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1464
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1465
|
+
---------------------------------------------------------------------------
|
1466
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1467
|
+
---------------------------------------------------------------------------
|
1468
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1469
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1470
|
+
-----------------------------------------------------
|
1471
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1472
|
+
-----------------------------------------------------
|
1473
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1474
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1475
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1476
|
+
----------------------------------
|
1477
|
+
Deforest::LogTest: test_percentile
|
1478
|
+
----------------------------------
|
1479
|
+
[1m[35mDeforest::Log Load (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1481
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1482
|
+
--------------------------------------
|
1483
|
+
Deforest::LogTest: test_get_model_name
|
1484
|
+
--------------------------------------
|
1485
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1486
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1487
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1488
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1489
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1490
|
+
[1m[35mFixture Insert (0.9ms)[0m 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
|
+
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT 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)[0m
|
1492
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1494
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
1496
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1497
|
+
---------------------------------------------------------------------------
|
1498
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1499
|
+
---------------------------------------------------------------------------
|
1500
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1501
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1502
|
+
-----------------------------------------------------------------------
|
1503
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1504
|
+
-----------------------------------------------------------------------
|
1505
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1506
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1507
|
+
-----------------------------------------------------
|
1508
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1509
|
+
-----------------------------------------------------
|
1510
|
+
[1m[36mDeforest::Log Load (0.4ms)[0m [1mSELECT 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"[0m
|
1511
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1512
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1513
|
+
--------------------------------------
|
1514
|
+
Deforest::LogTest: test_get_model_name
|
1515
|
+
--------------------------------------
|
1516
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
1517
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1518
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1519
|
+
----------------------------------
|
1520
|
+
Deforest::LogTest: test_percentile
|
1521
|
+
----------------------------------
|
1522
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1523
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1524
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1525
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1526
|
+
[1m[36mFixture Delete (1.1ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1527
|
+
[1m[35mFixture Insert (0.5ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1529
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1531
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
1533
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1534
|
+
-----------------------------------------------------------------------
|
1535
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1536
|
+
-----------------------------------------------------------------------
|
1537
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1538
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1539
|
+
---------------------------------------------------------------------------
|
1540
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1541
|
+
---------------------------------------------------------------------------
|
1542
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1543
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1544
|
+
-----------------------------------
|
1545
|
+
DeforestTest: test_insert_into_logs
|
1546
|
+
-----------------------------------
|
1547
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1548
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1549
|
+
-----------------------------------------------------
|
1550
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1551
|
+
-----------------------------------------------------
|
1552
|
+
[1m[36mDeforest::Log Load (0.3ms)[0m [1mSELECT 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"[0m
|
1553
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1554
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1555
|
+
----------------------------------
|
1556
|
+
Deforest::LogTest: test_percentile
|
1557
|
+
----------------------------------
|
1558
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1560
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1561
|
+
--------------------------------------
|
1562
|
+
Deforest::LogTest: test_get_model_name
|
1563
|
+
--------------------------------------
|
1564
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1565
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1566
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1567
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1568
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1569
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1571
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1573
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
1575
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1576
|
+
-----------------------------------------------------
|
1577
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1578
|
+
-----------------------------------------------------
|
1579
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1580
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1581
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1582
|
+
----------------------------------
|
1583
|
+
Deforest::LogTest: test_percentile
|
1584
|
+
----------------------------------
|
1585
|
+
[1m[35mDeforest::Log Load (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1587
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1588
|
+
--------------------------------------
|
1589
|
+
Deforest::LogTest: test_get_model_name
|
1590
|
+
--------------------------------------
|
1591
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1592
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1593
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1594
|
+
-----------------------------------------------------------------------
|
1595
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1596
|
+
-----------------------------------------------------------------------
|
1597
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1598
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1599
|
+
---------------------------------------------------------------------------
|
1600
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1601
|
+
---------------------------------------------------------------------------
|
1602
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1603
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1604
|
+
-----------------------------------
|
1605
|
+
DeforestTest: test_insert_into_logs
|
1606
|
+
-----------------------------------
|
1607
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1608
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1609
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1610
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1611
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1613
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1615
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
1617
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1618
|
+
---------------------------------------------------------------------------
|
1619
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1620
|
+
---------------------------------------------------------------------------
|
1621
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1622
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1623
|
+
-----------------------------------
|
1624
|
+
DeforestTest: test_insert_into_logs
|
1625
|
+
-----------------------------------
|
1626
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1627
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1628
|
+
-----------------------------------------------------------------------
|
1629
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1630
|
+
-----------------------------------------------------------------------
|
1631
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1632
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1633
|
+
----------------------------------
|
1634
|
+
Deforest::LogTest: test_percentile
|
1635
|
+
----------------------------------
|
1636
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1637
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1638
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1639
|
+
-----------------------------------------------------
|
1640
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1641
|
+
-----------------------------------------------------
|
1642
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1644
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1645
|
+
--------------------------------------
|
1646
|
+
Deforest::LogTest: test_get_model_name
|
1647
|
+
--------------------------------------
|
1648
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1649
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1650
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1651
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1652
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1653
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1655
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1657
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.6ms)[0m [1mcommit transaction[0m
|
1659
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1660
|
+
-----------------------------------------------------
|
1661
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1662
|
+
-----------------------------------------------------
|
1663
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1664
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1665
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1666
|
+
--------------------------------------
|
1667
|
+
Deforest::LogTest: test_get_model_name
|
1668
|
+
--------------------------------------
|
1669
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
1670
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1671
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1672
|
+
----------------------------------
|
1673
|
+
Deforest::LogTest: test_percentile
|
1674
|
+
----------------------------------
|
1675
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
1676
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1677
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1678
|
+
-----------------------------------------------------------------------
|
1679
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1680
|
+
-----------------------------------------------------------------------
|
1681
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1682
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1683
|
+
---------------------------------------------------------------------------
|
1684
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1685
|
+
---------------------------------------------------------------------------
|
1686
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1687
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1688
|
+
-----------------------------------
|
1689
|
+
DeforestTest: test_insert_into_logs
|
1690
|
+
-----------------------------------
|
1691
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1692
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1693
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1694
|
+
[1m[36mFixture Delete (1.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1695
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1697
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1699
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
|
1701
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1702
|
+
--------------------------------------
|
1703
|
+
Deforest::LogTest: test_get_model_name
|
1704
|
+
--------------------------------------
|
1705
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1706
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1707
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1708
|
+
-----------------------------------------------------
|
1709
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1710
|
+
-----------------------------------------------------
|
1711
|
+
[1m[35mDeforest::Log Load (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1713
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1714
|
+
----------------------------------
|
1715
|
+
Deforest::LogTest: test_percentile
|
1716
|
+
----------------------------------
|
1717
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
1718
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1719
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1720
|
+
---------------------------------------------------------------------------
|
1721
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1722
|
+
---------------------------------------------------------------------------
|
1723
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1724
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1725
|
+
------------------------------------------
|
1726
|
+
DeforestTest: test_parse_and_save_log_file
|
1727
|
+
------------------------------------------
|
1728
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1730
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1731
|
+
-----------------------------------
|
1732
|
+
DeforestTest: test_insert_into_logs
|
1733
|
+
-----------------------------------
|
1734
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1735
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1736
|
+
-----------------------------------------------------------------------
|
1737
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1738
|
+
-----------------------------------------------------------------------
|
1739
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1740
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1741
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1742
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1743
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1745
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1747
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1749
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1750
|
+
------------------------------------------
|
1751
|
+
DeforestTest: test_parse_and_save_log_file
|
1752
|
+
------------------------------------------
|
1753
|
+
[1m[36m (0.4ms)[0m [1mINSERT 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);[0m
|
1754
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1755
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1756
|
+
-----------------------------------------------------------------------
|
1757
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1758
|
+
-----------------------------------------------------------------------
|
1759
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1760
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1761
|
+
---------------------------------------------------------------------------
|
1762
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1763
|
+
---------------------------------------------------------------------------
|
1764
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1765
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1766
|
+
-----------------------------------
|
1767
|
+
DeforestTest: test_insert_into_logs
|
1768
|
+
-----------------------------------
|
1769
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1770
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1771
|
+
----------------------------------
|
1772
|
+
Deforest::LogTest: test_percentile
|
1773
|
+
----------------------------------
|
1774
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1776
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1777
|
+
-----------------------------------------------------
|
1778
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1779
|
+
-----------------------------------------------------
|
1780
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
1781
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1782
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1783
|
+
--------------------------------------
|
1784
|
+
Deforest::LogTest: test_get_model_name
|
1785
|
+
--------------------------------------
|
1786
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
1787
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1788
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1789
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1790
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1791
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1793
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1795
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.5ms)[0m [1mcommit transaction[0m
|
1797
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1798
|
+
---------------------------------------------------------------------------
|
1799
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1800
|
+
---------------------------------------------------------------------------
|
1801
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1802
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1803
|
+
-----------------------------------
|
1804
|
+
DeforestTest: test_insert_into_logs
|
1805
|
+
-----------------------------------
|
1806
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1807
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1808
|
+
------------------------------------------
|
1809
|
+
DeforestTest: test_parse_and_save_log_file
|
1810
|
+
------------------------------------------
|
1811
|
+
[1m[36m (0.4ms)[0m [1mINSERT 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);[0m
|
1812
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/doctor.rb"]]
|
1813
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1814
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1815
|
+
-----------------------------------------------------------------------
|
1816
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1817
|
+
-----------------------------------------------------------------------
|
1818
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1819
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1820
|
+
-----------------------------------------------------
|
1821
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1822
|
+
-----------------------------------------------------
|
1823
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1824
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1825
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1826
|
+
----------------------------------
|
1827
|
+
Deforest::LogTest: test_percentile
|
1828
|
+
----------------------------------
|
1829
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1831
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1832
|
+
--------------------------------------
|
1833
|
+
Deforest::LogTest: test_get_model_name
|
1834
|
+
--------------------------------------
|
1835
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1836
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1837
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1838
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1839
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1840
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1842
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1844
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
1846
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1847
|
+
----------------------------------
|
1848
|
+
Deforest::LogTest: test_percentile
|
1849
|
+
----------------------------------
|
1850
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1851
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1852
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1853
|
+
-----------------------------------------------------
|
1854
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1855
|
+
-----------------------------------------------------
|
1856
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1858
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1859
|
+
--------------------------------------
|
1860
|
+
Deforest::LogTest: test_get_model_name
|
1861
|
+
--------------------------------------
|
1862
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1863
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1864
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1865
|
+
-----------------------------------------------------------------------
|
1866
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1867
|
+
-----------------------------------------------------------------------
|
1868
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1869
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1870
|
+
------------------------------------------
|
1871
|
+
DeforestTest: test_parse_and_save_log_file
|
1872
|
+
------------------------------------------
|
1873
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/doctor.rb"]]
|
1875
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
1876
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1877
|
+
-----------------------------------
|
1878
|
+
DeforestTest: test_insert_into_logs
|
1879
|
+
-----------------------------------
|
1880
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1881
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1882
|
+
---------------------------------------------------------------------------
|
1883
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1884
|
+
---------------------------------------------------------------------------
|
1885
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1886
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1887
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1888
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1889
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1891
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1893
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.9ms)[0m [1mcommit transaction[0m
|
1895
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1896
|
+
-----------------------------------------------------
|
1897
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1898
|
+
-----------------------------------------------------
|
1899
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1900
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1901
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1902
|
+
----------------------------------
|
1903
|
+
Deforest::LogTest: test_percentile
|
1904
|
+
----------------------------------
|
1905
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1907
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1908
|
+
--------------------------------------
|
1909
|
+
Deforest::LogTest: test_get_model_name
|
1910
|
+
--------------------------------------
|
1911
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
1912
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1913
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1914
|
+
-----------------------------------------------------------------------
|
1915
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1916
|
+
-----------------------------------------------------------------------
|
1917
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1918
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1919
|
+
-----------------------------------
|
1920
|
+
DeforestTest: test_insert_into_logs
|
1921
|
+
-----------------------------------
|
1922
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1923
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1924
|
+
------------------------------------------
|
1925
|
+
DeforestTest: test_parse_and_save_log_file
|
1926
|
+
------------------------------------------
|
1927
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
1929
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
1930
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
1931
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1932
|
+
---------------------------------------------------------------------------
|
1933
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1934
|
+
---------------------------------------------------------------------------
|
1935
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1936
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1937
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1938
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1939
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1941
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
1943
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
|
1945
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1946
|
+
-----------------------------------------------------------------------
|
1947
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
1948
|
+
-----------------------------------------------------------------------
|
1949
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1950
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1951
|
+
-----------------------------------
|
1952
|
+
DeforestTest: test_insert_into_logs
|
1953
|
+
-----------------------------------
|
1954
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1955
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1956
|
+
---------------------------------------------------------------------------
|
1957
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
1958
|
+
---------------------------------------------------------------------------
|
1959
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1960
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1961
|
+
------------------------------------------
|
1962
|
+
DeforestTest: test_parse_and_save_log_file
|
1963
|
+
------------------------------------------
|
1964
|
+
[1m[36m (0.3ms)[0m [1mINSERT 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);[0m
|
1965
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
1966
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
1967
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
1968
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1969
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1970
|
+
-----------------------------------------------------
|
1971
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1972
|
+
-----------------------------------------------------
|
1973
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
1974
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1975
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1976
|
+
--------------------------------------
|
1977
|
+
Deforest::LogTest: test_get_model_name
|
1978
|
+
--------------------------------------
|
1979
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
1980
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1981
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1982
|
+
----------------------------------
|
1983
|
+
Deforest::LogTest: test_percentile
|
1984
|
+
----------------------------------
|
1985
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
1986
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1987
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1988
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1989
|
+
[1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
1990
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1992
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1994
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
1996
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1997
|
+
-----------------------------------------------------
|
1998
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
1999
|
+
-----------------------------------------------------
|
2000
|
+
[1m[36mDeforest::Log Load (0.3ms)[0m [1mSELECT 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"[0m
|
2001
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2002
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2003
|
+
--------------------------------------
|
2004
|
+
Deforest::LogTest: test_get_model_name
|
2005
|
+
--------------------------------------
|
2006
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
2007
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2008
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2009
|
+
----------------------------------
|
2010
|
+
Deforest::LogTest: test_percentile
|
2011
|
+
----------------------------------
|
2012
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
2013
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2014
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2015
|
+
-----------------------------------------------------------------------
|
2016
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2017
|
+
-----------------------------------------------------------------------
|
2018
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2019
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2020
|
+
-----------------------------------
|
2021
|
+
DeforestTest: test_insert_into_logs
|
2022
|
+
-----------------------------------
|
2023
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2024
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2025
|
+
------------------------------------------
|
2026
|
+
DeforestTest: test_parse_and_save_log_file
|
2027
|
+
------------------------------------------
|
2028
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2029
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2030
|
+
---------------------------------------------------------------------------
|
2031
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2032
|
+
---------------------------------------------------------------------------
|
2033
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2034
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2035
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2036
|
+
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2037
|
+
[1m[35mFixture Insert (0.5ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2039
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2041
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
2043
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2044
|
+
---------------------------------------------------------------------------
|
2045
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2046
|
+
---------------------------------------------------------------------------
|
2047
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2048
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2049
|
+
-----------------------------------
|
2050
|
+
DeforestTest: test_insert_into_logs
|
2051
|
+
-----------------------------------
|
2052
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2053
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2054
|
+
------------------------------------------
|
2055
|
+
DeforestTest: test_parse_and_save_log_file
|
2056
|
+
------------------------------------------
|
2057
|
+
[1m[36m (0.3ms)[0m [1mINSERT 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);[0m
|
2058
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2059
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2060
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2061
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2062
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2063
|
+
-----------------------------------------------------------------------
|
2064
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2065
|
+
-----------------------------------------------------------------------
|
2066
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2067
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2068
|
+
----------------------------------
|
2069
|
+
Deforest::LogTest: test_percentile
|
2070
|
+
----------------------------------
|
2071
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2072
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2073
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2074
|
+
-----------------------------------------------------
|
2075
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2076
|
+
-----------------------------------------------------
|
2077
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2079
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2080
|
+
--------------------------------------
|
2081
|
+
Deforest::LogTest: test_get_model_name
|
2082
|
+
--------------------------------------
|
2083
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
2084
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2085
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2086
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2087
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2088
|
+
[1m[35mFixture Insert (0.4ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2090
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2092
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
2094
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2095
|
+
---------------------------------------------------------------------------
|
2096
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2097
|
+
---------------------------------------------------------------------------
|
2098
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2099
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2100
|
+
-----------------------------------
|
2101
|
+
DeforestTest: test_insert_into_logs
|
2102
|
+
-----------------------------------
|
2103
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2104
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2105
|
+
------------------------------------------
|
2106
|
+
DeforestTest: test_parse_and_save_log_file
|
2107
|
+
------------------------------------------
|
2108
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2109
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2110
|
+
-----------------------------------------------------------------------
|
2111
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2112
|
+
-----------------------------------------------------------------------
|
2113
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2114
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2115
|
+
----------------------------------
|
2116
|
+
Deforest::LogTest: test_percentile
|
2117
|
+
----------------------------------
|
2118
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2119
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2120
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2121
|
+
-----------------------------------------------------
|
2122
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2123
|
+
-----------------------------------------------------
|
2124
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2126
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2127
|
+
--------------------------------------
|
2128
|
+
Deforest::LogTest: test_get_model_name
|
2129
|
+
--------------------------------------
|
2130
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
2131
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2132
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2133
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2134
|
+
[1m[36mFixture Delete (1.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2135
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2137
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2139
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
2141
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2142
|
+
-----------------------------------------------------
|
2143
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2144
|
+
-----------------------------------------------------
|
2145
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2146
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2147
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
2148
|
+
----------------------------------
|
2149
|
+
Deforest::LogTest: test_percentile
|
2150
|
+
----------------------------------
|
2151
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2153
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2154
|
+
--------------------------------------
|
2155
|
+
Deforest::LogTest: test_get_model_name
|
2156
|
+
--------------------------------------
|
2157
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
2158
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2159
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2160
|
+
---------------------------------------------------------------------------
|
2161
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2162
|
+
---------------------------------------------------------------------------
|
2163
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2164
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2165
|
+
-----------------------------------
|
2166
|
+
DeforestTest: test_insert_into_logs
|
2167
|
+
-----------------------------------
|
2168
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2169
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2170
|
+
-----------------------------------------------------------------------
|
2171
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2172
|
+
-----------------------------------------------------------------------
|
2173
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2174
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2175
|
+
------------------------------------------
|
2176
|
+
DeforestTest: test_parse_and_save_log_file
|
2177
|
+
------------------------------------------
|
2178
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2180
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2181
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2182
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2183
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2184
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2185
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2186
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2188
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2190
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
2192
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2193
|
+
-----------------------------------
|
2194
|
+
DeforestTest: test_insert_into_logs
|
2195
|
+
-----------------------------------
|
2196
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2197
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2198
|
+
------------------------------------------
|
2199
|
+
DeforestTest: test_parse_and_save_log_file
|
2200
|
+
------------------------------------------
|
2201
|
+
[1m[36m (0.4ms)[0m [1mINSERT 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);[0m
|
2202
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2203
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2204
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2205
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2206
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2207
|
+
-----------------------------------------------------------------------
|
2208
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2209
|
+
-----------------------------------------------------------------------
|
2210
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2211
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2212
|
+
---------------------------------------------------------------------------
|
2213
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2214
|
+
---------------------------------------------------------------------------
|
2215
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2216
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2217
|
+
----------------------------------
|
2218
|
+
Deforest::LogTest: test_percentile
|
2219
|
+
----------------------------------
|
2220
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2221
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2222
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2223
|
+
-----------------------------------------------------
|
2224
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2225
|
+
-----------------------------------------------------
|
2226
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2228
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2229
|
+
--------------------------------------
|
2230
|
+
Deforest::LogTest: test_get_model_name
|
2231
|
+
--------------------------------------
|
2232
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
2233
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2234
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2235
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2236
|
+
[1m[36mFixture Delete (0.6ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2237
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2239
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2241
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
2243
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2244
|
+
-----------------------------------------------------
|
2245
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2246
|
+
-----------------------------------------------------
|
2247
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2248
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2249
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2250
|
+
--------------------------------------
|
2251
|
+
Deforest::LogTest: test_get_model_name
|
2252
|
+
--------------------------------------
|
2253
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
2254
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2255
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2256
|
+
----------------------------------
|
2257
|
+
Deforest::LogTest: test_percentile
|
2258
|
+
----------------------------------
|
2259
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2260
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2261
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2262
|
+
-----------------------------------
|
2263
|
+
DeforestTest: test_insert_into_logs
|
2264
|
+
-----------------------------------
|
2265
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2267
|
+
-----------------------------------------------------------------------
|
2268
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2269
|
+
-----------------------------------------------------------------------
|
2270
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2271
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2272
|
+
---------------------------------------------------------------------------
|
2273
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2274
|
+
---------------------------------------------------------------------------
|
2275
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2276
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2277
|
+
------------------------------------------
|
2278
|
+
DeforestTest: test_parse_and_save_log_file
|
2279
|
+
------------------------------------------
|
2280
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2282
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2283
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2284
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
2285
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2286
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2287
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2288
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2290
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2292
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
2294
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2295
|
+
-----------------------------------------------------------------------
|
2296
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2297
|
+
-----------------------------------------------------------------------
|
2298
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2299
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2300
|
+
-----------------------------------
|
2301
|
+
DeforestTest: test_insert_into_logs
|
2302
|
+
-----------------------------------
|
2303
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2304
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2305
|
+
------------------------------------------
|
2306
|
+
DeforestTest: test_parse_and_save_log_file
|
2307
|
+
------------------------------------------
|
2308
|
+
[1m[36m (0.6ms)[0m [1mINSERT 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);[0m
|
2309
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "deforest_logs"
|
2310
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2311
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2312
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2313
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2314
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2315
|
+
---------------------------------------------------------------------------
|
2316
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2317
|
+
---------------------------------------------------------------------------
|
2318
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2319
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2320
|
+
----------------------------------
|
2321
|
+
Deforest::LogTest: test_percentile
|
2322
|
+
----------------------------------
|
2323
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2325
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2326
|
+
-----------------------------------------------------
|
2327
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2328
|
+
-----------------------------------------------------
|
2329
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
2330
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2331
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2332
|
+
--------------------------------------
|
2333
|
+
Deforest::LogTest: test_get_model_name
|
2334
|
+
--------------------------------------
|
2335
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
2336
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2337
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2338
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2339
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2340
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2342
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2344
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
2346
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2347
|
+
------------------------------------------
|
2348
|
+
DeforestTest: test_parse_and_save_log_file
|
2349
|
+
------------------------------------------
|
2350
|
+
[1m[36m (0.4ms)[0m [1mINSERT 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);[0m
|
2351
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "deforest_logs"
|
2352
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2353
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2354
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2355
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2356
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2357
|
+
-----------------------------------------------------------------------
|
2358
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2359
|
+
-----------------------------------------------------------------------
|
2360
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2361
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2362
|
+
-----------------------------------
|
2363
|
+
DeforestTest: test_insert_into_logs
|
2364
|
+
-----------------------------------
|
2365
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2366
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2367
|
+
---------------------------------------------------------------------------
|
2368
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2369
|
+
---------------------------------------------------------------------------
|
2370
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2371
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2372
|
+
----------------------------------
|
2373
|
+
Deforest::LogTest: test_percentile
|
2374
|
+
----------------------------------
|
2375
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2377
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2378
|
+
-----------------------------------------------------
|
2379
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2380
|
+
-----------------------------------------------------
|
2381
|
+
[1m[36mDeforest::Log Load (0.4ms)[0m [1mSELECT 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"[0m
|
2382
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2383
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2384
|
+
--------------------------------------
|
2385
|
+
Deforest::LogTest: test_get_model_name
|
2386
|
+
--------------------------------------
|
2387
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
2388
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2389
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2390
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2391
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2392
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2394
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2396
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
2398
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2399
|
+
------------------------------------------
|
2400
|
+
DeforestTest: test_parse_and_save_log_file
|
2401
|
+
------------------------------------------
|
2402
|
+
[1m[36m (0.8ms)[0m [1mINSERT 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);[0m
|
2403
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "deforest_logs"
|
2404
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2405
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ?[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2407
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
|
2409
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2410
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2411
|
+
-----------------------------------------------------------------------
|
2412
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2413
|
+
-----------------------------------------------------------------------
|
2414
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2415
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2416
|
+
-----------------------------------
|
2417
|
+
DeforestTest: test_insert_into_logs
|
2418
|
+
-----------------------------------
|
2419
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2420
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2421
|
+
---------------------------------------------------------------------------
|
2422
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2423
|
+
---------------------------------------------------------------------------
|
2424
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2425
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2426
|
+
--------------------------------------
|
2427
|
+
Deforest::LogTest: test_get_model_name
|
2428
|
+
--------------------------------------
|
2429
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
2430
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2431
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2432
|
+
-----------------------------------------------------
|
2433
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2434
|
+
-----------------------------------------------------
|
2435
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
2436
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2437
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2438
|
+
----------------------------------
|
2439
|
+
Deforest::LogTest: test_percentile
|
2440
|
+
----------------------------------
|
2441
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2443
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2444
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2445
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2446
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2448
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2450
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
2452
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2453
|
+
-----------------------------------------------------------------------
|
2454
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2455
|
+
-----------------------------------------------------------------------
|
2456
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2457
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2458
|
+
---------------------------------------------------------------------------
|
2459
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2460
|
+
---------------------------------------------------------------------------
|
2461
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2462
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2463
|
+
------------------------------------------
|
2464
|
+
DeforestTest: test_parse_and_save_log_file
|
2465
|
+
------------------------------------------
|
2466
|
+
[1m[36m (0.5ms)[0m [1mINSERT 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);[0m
|
2467
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "deforest_logs"
|
2468
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2469
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
|
2471
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2473
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2474
|
+
-----------------------------------
|
2475
|
+
DeforestTest: test_insert_into_logs
|
2476
|
+
-----------------------------------
|
2477
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2478
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2479
|
+
----------------------------------
|
2480
|
+
Deforest::LogTest: test_percentile
|
2481
|
+
----------------------------------
|
2482
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2483
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2484
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2485
|
+
--------------------------------------
|
2486
|
+
Deforest::LogTest: test_get_model_name
|
2487
|
+
--------------------------------------
|
2488
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
2489
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2490
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2491
|
+
-----------------------------------------------------
|
2492
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2493
|
+
-----------------------------------------------------
|
2494
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
2495
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2496
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2497
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2498
|
+
[1m[36mFixture Delete (0.6ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2499
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2501
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2503
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2505
|
+
[1m[35m (1.3ms)[0m commit transaction
|
2506
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2507
|
+
-----------------------------------------------------
|
2508
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2509
|
+
-----------------------------------------------------
|
2510
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2511
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2512
|
+
----------------------------------
|
2513
|
+
Deforest::LogTest: test_percentile
|
2514
|
+
----------------------------------
|
2515
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2516
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2517
|
+
--------------------------------------
|
2518
|
+
Deforest::LogTest: test_get_model_name
|
2519
|
+
--------------------------------------
|
2520
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2521
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2522
|
+
---------------------------------------------
|
2523
|
+
Deforest::LogTest: test_get_nested_model_name
|
2524
|
+
---------------------------------------------
|
2525
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2526
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2527
|
+
-----------------------------------
|
2528
|
+
DeforestTest: test_insert_into_logs
|
2529
|
+
-----------------------------------
|
2530
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2531
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2532
|
+
-----------------------------------------------------------------------
|
2533
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2534
|
+
-----------------------------------------------------------------------
|
2535
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2536
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2537
|
+
---------------------------------------------------------------------------
|
2538
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2539
|
+
---------------------------------------------------------------------------
|
2540
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2541
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2542
|
+
------------------------------------------
|
2543
|
+
DeforestTest: test_parse_and_save_log_file
|
2544
|
+
------------------------------------------
|
2545
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2547
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
|
2549
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2551
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2552
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2553
|
+
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2554
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2556
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2558
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2560
|
+
[1m[35m (1.2ms)[0m commit transaction
|
2561
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2562
|
+
-----------------------------------
|
2563
|
+
DeforestTest: test_insert_into_logs
|
2564
|
+
-----------------------------------
|
2565
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2566
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2567
|
+
-----------------------------------------------------------------------
|
2568
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2569
|
+
-----------------------------------------------------------------------
|
2570
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2571
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2572
|
+
---------------------------------------------------------------------------
|
2573
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2574
|
+
---------------------------------------------------------------------------
|
2575
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2576
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2577
|
+
------------------------------------------
|
2578
|
+
DeforestTest: test_parse_and_save_log_file
|
2579
|
+
------------------------------------------
|
2580
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2582
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
|
2584
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2586
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2587
|
+
----------------------------------
|
2588
|
+
Deforest::LogTest: test_percentile
|
2589
|
+
----------------------------------
|
2590
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2591
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2592
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2593
|
+
-----------------------------------------------------
|
2594
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2595
|
+
-----------------------------------------------------
|
2596
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2598
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2599
|
+
--------------------------------------
|
2600
|
+
Deforest::LogTest: test_get_model_name
|
2601
|
+
--------------------------------------
|
2602
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
2603
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2604
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2605
|
+
---------------------------------------------
|
2606
|
+
Deforest::LogTest: test_get_nested_model_name
|
2607
|
+
---------------------------------------------
|
2608
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 749124092]]
|
2609
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2610
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2611
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2612
|
+
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2613
|
+
[1m[35mFixture Insert (0.7ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2615
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2617
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2619
|
+
[1m[35m (1.3ms)[0m commit transaction
|
2620
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2621
|
+
---------------------------------------------
|
2622
|
+
Deforest::LogTest: test_get_nested_model_name
|
2623
|
+
---------------------------------------------
|
2624
|
+
[1m[35mDeforest::Log Load (0.3ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 749124092]]
|
2625
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2626
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2627
|
+
-----------------------------------------------------
|
2628
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2629
|
+
-----------------------------------------------------
|
2630
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2631
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2632
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2633
|
+
----------------------------------
|
2634
|
+
Deforest::LogTest: test_percentile
|
2635
|
+
----------------------------------
|
2636
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2638
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2639
|
+
--------------------------------------
|
2640
|
+
Deforest::LogTest: test_get_model_name
|
2641
|
+
--------------------------------------
|
2642
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 298486374]]
|
2643
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2644
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2645
|
+
-----------------------------------------------------------------------
|
2646
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2647
|
+
-----------------------------------------------------------------------
|
2648
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2649
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2650
|
+
---------------------------------------------------------------------------
|
2651
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2652
|
+
---------------------------------------------------------------------------
|
2653
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2654
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2655
|
+
------------------------------------------
|
2656
|
+
DeforestTest: test_parse_and_save_log_file
|
2657
|
+
------------------------------------------
|
2658
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2660
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
|
2662
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2664
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2665
|
+
-----------------------------------
|
2666
|
+
DeforestTest: test_insert_into_logs
|
2667
|
+
-----------------------------------
|
2668
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2669
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2670
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2671
|
+
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2672
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2674
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2676
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2678
|
+
[1m[35m (1.1ms)[0m commit transaction
|
2679
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2680
|
+
-----------------------------------
|
2681
|
+
DeforestTest: test_insert_into_logs
|
2682
|
+
-----------------------------------
|
2683
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2684
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2685
|
+
-----------------------------------------------------------------------
|
2686
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2687
|
+
-----------------------------------------------------------------------
|
2688
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2689
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2690
|
+
---------------------------------------------------------------------------
|
2691
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2692
|
+
---------------------------------------------------------------------------
|
2693
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2694
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2695
|
+
------------------------------------------
|
2696
|
+
DeforestTest: test_parse_and_save_log_file
|
2697
|
+
------------------------------------------
|
2698
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2700
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
|
2702
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2704
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2705
|
+
---------------------------------------------
|
2706
|
+
Deforest::LogTest: test_get_nested_model_name
|
2707
|
+
---------------------------------------------
|
2708
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 749124092]]
|
2709
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2710
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2711
|
+
----------------------------------
|
2712
|
+
Deforest::LogTest: test_percentile
|
2713
|
+
----------------------------------
|
2714
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2716
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2717
|
+
-----------------------------------------------------
|
2718
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2719
|
+
-----------------------------------------------------
|
2720
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
2721
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2722
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2723
|
+
--------------------------------------
|
2724
|
+
Deforest::LogTest: test_get_model_name
|
2725
|
+
--------------------------------------
|
2726
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
2727
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2728
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2729
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2730
|
+
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2731
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2733
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2735
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2737
|
+
[1m[35m (1.3ms)[0m commit transaction
|
2738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2739
|
+
--------------------------------------
|
2740
|
+
Deforest::LogTest: test_get_model_name
|
2741
|
+
--------------------------------------
|
2742
|
+
[1m[35mDeforest::Log Load (0.3ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 298486374]]
|
2743
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2744
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2745
|
+
---------------------------------------------
|
2746
|
+
Deforest::LogTest: test_get_nested_model_name
|
2747
|
+
---------------------------------------------
|
2748
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 749124092]]
|
2749
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2750
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2751
|
+
-----------------------------------------------------
|
2752
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2753
|
+
-----------------------------------------------------
|
2754
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2756
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2757
|
+
----------------------------------
|
2758
|
+
Deforest::LogTest: test_percentile
|
2759
|
+
----------------------------------
|
2760
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2761
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2762
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2763
|
+
-----------------------------------------------------------------------
|
2764
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2765
|
+
-----------------------------------------------------------------------
|
2766
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2767
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2768
|
+
-----------------------------------
|
2769
|
+
DeforestTest: test_insert_into_logs
|
2770
|
+
-----------------------------------
|
2771
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2772
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2773
|
+
---------------------------------------------------------------------------
|
2774
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2775
|
+
---------------------------------------------------------------------------
|
2776
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2777
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2778
|
+
------------------------------------------
|
2779
|
+
DeforestTest: test_parse_and_save_log_file
|
2780
|
+
------------------------------------------
|
2781
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2783
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
|
2785
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2787
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2788
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2789
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2790
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2792
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2794
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
2796
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2797
|
+
-----------------------------------------------------------------------
|
2798
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2799
|
+
-----------------------------------------------------------------------
|
2800
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2801
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2802
|
+
---------------------------------------------------------------------------
|
2803
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2804
|
+
---------------------------------------------------------------------------
|
2805
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2806
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2807
|
+
------------------------------------------
|
2808
|
+
DeforestTest: test_parse_and_save_log_file
|
2809
|
+
------------------------------------------
|
2810
|
+
[1m[36m (0.4ms)[0m [1mINSERT 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);[0m
|
2811
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2813
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
|
2815
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2816
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2817
|
+
-----------------------------------
|
2818
|
+
DeforestTest: test_insert_into_logs
|
2819
|
+
-----------------------------------
|
2820
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2821
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2822
|
+
-----------------------------------------------------
|
2823
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2824
|
+
-----------------------------------------------------
|
2825
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2827
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2828
|
+
--------------------------------------
|
2829
|
+
Deforest::LogTest: test_get_model_name
|
2830
|
+
--------------------------------------
|
2831
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
2832
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2833
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2834
|
+
----------------------------------
|
2835
|
+
Deforest::LogTest: test_percentile
|
2836
|
+
----------------------------------
|
2837
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2839
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2840
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2841
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2842
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2844
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2846
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
2848
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2849
|
+
-----------------------------------
|
2850
|
+
DeforestTest: test_insert_into_logs
|
2851
|
+
-----------------------------------
|
2852
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2853
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2854
|
+
-----------------------------------------------------------------------
|
2855
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2856
|
+
-----------------------------------------------------------------------
|
2857
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2858
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2859
|
+
---------------------------------------------------------------------------
|
2860
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2861
|
+
---------------------------------------------------------------------------
|
2862
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2863
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2864
|
+
------------------------------------------
|
2865
|
+
DeforestTest: test_parse_and_save_log_file
|
2866
|
+
------------------------------------------
|
2867
|
+
[1m[36m (0.4ms)[0m [1mINSERT 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);[0m
|
2868
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
2870
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
|
2872
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2873
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2874
|
+
-----------------------------------------------------
|
2875
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2876
|
+
-----------------------------------------------------
|
2877
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2879
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2880
|
+
--------------------------------------
|
2881
|
+
Deforest::LogTest: test_get_model_name
|
2882
|
+
--------------------------------------
|
2883
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
2884
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2885
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2886
|
+
----------------------------------
|
2887
|
+
Deforest::LogTest: test_percentile
|
2888
|
+
----------------------------------
|
2889
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2891
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2892
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2893
|
+
[1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
2894
|
+
[1m[35mFixture Insert (0.5ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
2896
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.0ms)[0m [1mINSERT 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)[0m
|
2898
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
2900
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2901
|
+
--------------------------------------
|
2902
|
+
Deforest::LogTest: test_get_model_name
|
2903
|
+
--------------------------------------
|
2904
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
2905
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2906
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2907
|
+
-----------------------------------------------------
|
2908
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
2909
|
+
-----------------------------------------------------
|
2910
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2912
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2913
|
+
----------------------------------
|
2914
|
+
Deforest::LogTest: test_percentile
|
2915
|
+
----------------------------------
|
2916
|
+
[1m[36mDeforest::Log Load (0.2ms)[0m [1mSELECT 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"[0m
|
2917
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2918
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2919
|
+
-----------------------------------------------------------------------
|
2920
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
2921
|
+
-----------------------------------------------------------------------
|
2922
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2923
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2924
|
+
------------------------------------------
|
2925
|
+
DeforestTest: test_parse_and_save_log_file
|
2926
|
+
------------------------------------------
|
2927
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/corporate.rb"]]
|
2929
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/myuser.rb"]]
|
2931
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2933
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2934
|
+
---------------------------------------------------------------------------
|
2935
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
2936
|
+
---------------------------------------------------------------------------
|
2937
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2938
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2939
|
+
-----------------------------------
|
2940
|
+
DeforestTest: test_insert_into_logs
|
2941
|
+
-----------------------------------
|
2942
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2943
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2944
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "ar_internal_metadata" ("key" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
2945
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2946
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "sqlite_autoindex_ar_internal_metadata_1" ON "ar_internal_metadata" ("key")[0m
|
2947
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2948
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2949
|
+
[1m[36m (2.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2950
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2951
|
+
Migrating to CreateDeforestLogs (20230113124304)
|
2952
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2953
|
+
[1m[35m (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20230113124304"]]
|
2955
|
+
[1m[35m (1.2ms)[0m commit transaction
|
2956
|
+
Migrating to CreateUsers (20230211204438)
|
2957
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2958
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20230211204438"]]
|
2960
|
+
[1m[35m (1.4ms)[0m commit transaction
|
2961
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2962
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2963
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2964
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "deforest_users"[0m
|
2965
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2966
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2967
|
+
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "deforest_users"
|
2968
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2969
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2970
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "deforest_users"[0m
|
2971
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2972
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2973
|
+
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "deforest_users"
|
2974
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2975
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2976
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "deforest_users"[0m
|
2977
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2978
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2979
|
+
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "deforest_users"
|
2980
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2981
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2982
|
+
[1m[36mFixture Delete (0.1ms)[0m [1mDELETE FROM "deforest_users"[0m
|
2983
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2984
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2985
|
+
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "deforest_users"
|
2986
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
2987
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2988
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
2989
|
+
Migrating to CreateUsers (20230211204438)
|
2990
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2991
|
+
[1m[35m (1.4ms)[0m DROP TABLE "users"
|
2992
|
+
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ?[0m [["version", "20230211204438"]]
|
2993
|
+
[1m[35m (1.1ms)[0m commit transaction
|
2994
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2995
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2996
|
+
Migrating to CreateUsers (20230211204438)
|
2997
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2998
|
+
[1m[36m (0.9ms)[0m [1mCREATE 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) [0m
|
2999
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20230211204438"]]
|
3000
|
+
[1m[36m (1.5ms)[0m [1mcommit transaction[0m
|
3001
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
3002
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3003
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3004
|
+
[1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "deforest_users"[0m
|
3005
|
+
[1m[35mFixture Insert (0.6ms)[0m INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
|
3006
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
3007
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3008
|
+
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "deforest_users"[0m
|
3009
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
|
3010
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
3011
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3012
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_users"[0m
|
3013
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
|
3014
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
3015
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3016
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_users"[0m
|
3017
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
|
3018
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
3019
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3020
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_users"[0m
|
3021
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
|
3022
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
3023
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3024
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_users"[0m
|
3025
|
+
[1m[35mFixture Insert (0.2ms)[0m INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
|
3026
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
3027
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3028
|
+
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "deforest_users"[0m
|
3029
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
|
3030
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
3031
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3032
|
+
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "deforest_users"[0m
|
3033
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "deforest_users" ("first_name", "last_name", "age", "email", "profession") VALUES ('Akshay', 'Takkar', 30, 'akshay.takkar101@gmail.com', 'programmer')
|
3034
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
3035
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3036
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3037
|
+
[1m[36mFixture Delete (1.0ms)[0m [1mDELETE FROM "deforest_logs"[0m
|
3038
|
+
[1m[35mFixture Insert (0.6ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
3040
|
+
[1m[35mFixture Insert (0.1ms)[0m 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
|
+
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
3042
|
+
[1m[35mFixture Insert (0.0ms)[0m 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
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
3044
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3045
|
+
-----------------------------------------------------------------------
|
3046
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_exist
|
3047
|
+
-----------------------------------------------------------------------
|
3048
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3049
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3050
|
+
---------------------------------------------------------------------------
|
3051
|
+
DeforestTest: test_initialize_db_sync_file_when_db_sync_file_does_not_exist
|
3052
|
+
---------------------------------------------------------------------------
|
3053
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
3054
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3055
|
+
-----------------------------------
|
3056
|
+
DeforestTest: test_insert_into_logs
|
3057
|
+
-----------------------------------
|
3058
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3059
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3060
|
+
------------------------------------------
|
3061
|
+
DeforestTest: test_parse_and_save_log_file
|
3062
|
+
------------------------------------------
|
3063
|
+
[1m[36m (0.4ms)[0m [1mINSERT 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);[0m
|
3064
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/post.rb"]]
|
3066
|
+
[1m[35mDeforest::Log Load (0.0ms)[0m 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
|
+
[1m[36mDeforest::Log Load (0.0ms)[0m [1mSELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."file_name" = ? ORDER BY "deforest_logs"."id" DESC LIMIT 1[0m [["file_name", "/Users/johndoe/workspace/app/models/comment.rb"]]
|
3068
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
3069
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3070
|
+
----------------------------------
|
3071
|
+
Deforest::LogTest: test_percentile
|
3072
|
+
----------------------------------
|
3073
|
+
[1m[35mDeforest::Log Load (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
3075
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3076
|
+
-----------------------------------------------------
|
3077
|
+
Deforest::LogTest: test_get_highlight_colors_for_file
|
3078
|
+
-----------------------------------------------------
|
3079
|
+
[1m[36mDeforest::Log Load (0.1ms)[0m [1mSELECT 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"[0m
|
3080
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3081
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3082
|
+
--------------------------------------
|
3083
|
+
Deforest::LogTest: test_get_model_name
|
3084
|
+
--------------------------------------
|
3085
|
+
[1m[35mDeforest::Log Load (0.1ms)[0m SELECT "deforest_logs".* FROM "deforest_logs" WHERE "deforest_logs"."id" = ? LIMIT 1 [["id", 980190962]]
|
3086
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|