groonga-query-log 1.2.3 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/doc/text/news.md +15 -0
- data/lib/groonga/query-log/command/run-regression-test.rb +57 -13
- data/lib/groonga/query-log/command/verify-server.rb +10 -6
- data/lib/groonga/query-log/response-comparer.rb +6 -0
- data/lib/groonga/query-log/server-verifier.rb +43 -11
- data/lib/groonga/query-log/version.rb +1 -1
- data/test/fixtures/run-regression-test/data/data.grn +6 -0
- data/test/fixtures/run-regression-test/indexes/indexes.grn +6 -0
- data/test/fixtures/run-regression-test/query-logs/query.log +722 -0
- data/test/fixtures/run-regression-test/schema/schema.grn +2 -0
- metadata +34 -26
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: groonga-query-log
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kouhei Sutou
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: groonga-command-parser
|
@@ -154,15 +154,15 @@ description: ''
|
|
154
154
|
email:
|
155
155
|
- kou@clear-code.com
|
156
156
|
executables:
|
157
|
-
- groonga-query-log-
|
158
|
-
- groonga-query-log-format-regression-test-logs
|
157
|
+
- groonga-query-log-extract
|
159
158
|
- groonga-query-log-run-regression-test
|
160
|
-
- groonga-query-log-check-command-version-compatibility
|
161
|
-
- groonga-query-log-replay
|
162
|
-
- groonga-query-log-show-running-queries
|
163
159
|
- groonga-query-log-analyze
|
164
160
|
- groonga-query-log-verify-server
|
165
|
-
- groonga-query-log-
|
161
|
+
- groonga-query-log-check-command-version-compatibility
|
162
|
+
- groonga-query-log-detect-memory-leak
|
163
|
+
- groonga-query-log-format-regression-test-logs
|
164
|
+
- groonga-query-log-show-running-queries
|
165
|
+
- groonga-query-log-replay
|
166
166
|
extensions: []
|
167
167
|
extra_rdoc_files: []
|
168
168
|
files:
|
@@ -228,6 +228,10 @@ files:
|
|
228
228
|
- test/fixtures/reporter/html.expected
|
229
229
|
- test/fixtures/reporter/json-stream.expected
|
230
230
|
- test/fixtures/reporter/json.expected
|
231
|
+
- test/fixtures/run-regression-test/data/data.grn
|
232
|
+
- test/fixtures/run-regression-test/indexes/indexes.grn
|
233
|
+
- test/fixtures/run-regression-test/query-logs/query.log
|
234
|
+
- test/fixtures/run-regression-test/schema/schema.grn
|
231
235
|
- test/fixtures/target-commands.expected
|
232
236
|
- test/fixtures/target-tables.expected
|
233
237
|
- test/helper.rb
|
@@ -257,7 +261,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
257
261
|
version: '0'
|
258
262
|
requirements: []
|
259
263
|
rubyforge_project:
|
260
|
-
rubygems_version: 2.
|
264
|
+
rubygems_version: 2.2.2
|
261
265
|
signing_key:
|
262
266
|
specification_version: 4
|
263
267
|
summary: Groonga-query-log is a collection of library and tools to process [Groonga](http://groonga.org/)'s
|
@@ -265,29 +269,33 @@ summary: Groonga-query-log is a collection of library and tools to process [Groo
|
|
265
269
|
as a library. You can analyze your Groonga's queries and test with your Groonga's
|
266
270
|
query log by using groonga-query-log as a tool.
|
267
271
|
test_files:
|
268
|
-
- test/run-test.rb
|
269
|
-
- test/test-analyzer.rb
|
270
|
-
- test/command/test-extract.rb
|
271
|
-
- test/command/test-format-regression-test-logs.rb
|
272
272
|
- test/test-response-comparer.rb
|
273
|
+
- test/run-test.rb
|
274
|
+
- test/test-replayer.rb
|
275
|
+
- test/test-parser.rb
|
273
276
|
- test/helper.rb
|
277
|
+
- test/fixtures/query.log
|
278
|
+
- test/fixtures/n_entries.expected
|
274
279
|
- test/fixtures/other-query.log
|
280
|
+
- test/fixtures/no-report-summary.expected
|
275
281
|
- test/fixtures/reporter/json-stream.expected
|
276
|
-
- test/fixtures/reporter/console.expected
|
277
|
-
- test/fixtures/reporter/html.expected
|
278
282
|
- test/fixtures/reporter/json.expected
|
279
|
-
- test/fixtures/
|
280
|
-
- test/fixtures/
|
281
|
-
- test/fixtures/no-report-summary.expected
|
282
|
-
- test/fixtures/order/-start-time.expected
|
283
|
-
- test/fixtures/order/elapsed.expected
|
284
|
-
- test/fixtures/order/-elapsed.expected
|
285
|
-
- test/fixtures/order/start-time.expected
|
286
|
-
- test/fixtures/target-commands.expected
|
283
|
+
- test/fixtures/reporter/html.expected
|
284
|
+
- test/fixtures/reporter/console.expected
|
287
285
|
- test/fixtures/regression-test-logs/command-format.log
|
288
286
|
- test/fixtures/regression-test-logs/url-format.log
|
289
|
-
- test/fixtures/target-
|
287
|
+
- test/fixtures/target-commands.expected
|
290
288
|
- test/fixtures/multi.expected
|
291
|
-
- test/test-
|
289
|
+
- test/fixtures/run-regression-test/query-logs/query.log
|
290
|
+
- test/fixtures/run-regression-test/schema/schema.grn
|
291
|
+
- test/fixtures/run-regression-test/indexes/indexes.grn
|
292
|
+
- test/fixtures/run-regression-test/data/data.grn
|
293
|
+
- test/fixtures/order/-elapsed.expected
|
294
|
+
- test/fixtures/order/start-time.expected
|
295
|
+
- test/fixtures/order/-start-time.expected
|
296
|
+
- test/fixtures/order/elapsed.expected
|
297
|
+
- test/fixtures/target-tables.expected
|
298
|
+
- test/command/test-format-regression-test-logs.rb
|
299
|
+
- test/command/test-extract.rb
|
300
|
+
- test/test-analyzer.rb
|
292
301
|
- test/test-incompatibility-detector.rb
|
293
|
-
- test/test-parser.rb
|