elasticsearch-test-runner 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/elasticsearch/tests/code_runner.rb +3 -3
- data/lib/elasticsearch/tests/printer.rb +1 -1
- data/lib/elasticsearch/tests/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7aaf5fcd5db6429d758a6c1aec62248b04bd36c4b6a2b664382222429364546
|
4
|
+
data.tar.gz: 1956840598048cfe9ec25d41a0cc4150048c6099d4d63f6a36783cc9700a9202
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 462f62c87dd7a8ebbaa7b63992d12f02f89b6c7109532e701aa678a94dc4caf0bf65444962c9bc8dc13f51d842fcb5188995ec8579e6fa76be36e669899b5ae8
|
7
|
+
data.tar.gz: 79bf2ece186c677fcb2c99ef975996dc64b6769bc4414f435ef135eedd4776eb18c07f75bc70b858ef290ec7b1a4537d8963bac5d0e389336422a2772b7e2eaf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.5.0] - 2024-07-30
|
4
|
+
|
5
|
+
- Clears `@response` before running a new action
|
6
|
+
- Fixes `expected_exception?` for failures
|
7
|
+
|
3
8
|
## [0.4.0] - 2024-07-08
|
4
9
|
|
5
10
|
- Refactors display of errors/passing tests. Adds `QUIET` environment variable parsing. If `true`, display for passing tests will be more compact (not showing file/test names).
|
@@ -35,6 +35,7 @@ module Elasticsearch
|
|
35
35
|
# specifications. These are function calls to the Elasticsearch clients.
|
36
36
|
#
|
37
37
|
def do_action(action)
|
38
|
+
@response = nil
|
38
39
|
catchable = action.delete('catch')
|
39
40
|
client = @client
|
40
41
|
action = action.first if action.is_a?(Array)
|
@@ -46,17 +47,16 @@ module Elasticsearch
|
|
46
47
|
client = @client.send(arrayed_method.first)
|
47
48
|
method = arrayed_method.last
|
48
49
|
end
|
49
|
-
|
50
50
|
@response = client.send(method.to_sym, process_params(params))
|
51
51
|
puts @response if ENV['DEBUG']
|
52
52
|
@response
|
53
53
|
rescue StandardError => e
|
54
54
|
raise e unless expected_exception?(catchable, e)
|
55
|
-
|
56
|
-
@response
|
57
55
|
end
|
58
56
|
|
59
57
|
def expected_exception?(error_type, e)
|
58
|
+
return false if error_type.nil?
|
59
|
+
|
60
60
|
case error_type
|
61
61
|
when 'request_timeout'
|
62
62
|
e.is_a?(Elastic::Transport::Transport::Errors::RequestTimeout)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticsearch-test-runner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic Client Library Maintainers
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: elasticsearch
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
|
-
rubygems_version: 3.5.
|
87
|
+
rubygems_version: 3.5.11
|
88
88
|
signing_key:
|
89
89
|
specification_version: 4
|
90
90
|
summary: Tool to test Elasticsearch clients against the YAML clients test suite.
|