elastic-enterprise-search 0.3.1 → 7.10.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +4 -4
  2. data/.ci/.gitignore +1 -0
  3. data/.ci/Dockerfile +12 -0
  4. data/.ci/certs/README.md +50 -0
  5. data/.ci/certs/ca.crt +20 -0
  6. data/.ci/certs/ca.key +27 -0
  7. data/.ci/certs/testnode.crt +21 -0
  8. data/.ci/certs/testnode.key +27 -0
  9. data/.ci/certs/testnode_no_san.crt +19 -0
  10. data/.ci/certs/testnode_no_san.key +27 -0
  11. data/.ci/functions/cleanup.sh +67 -0
  12. data/.ci/functions/imports.sh +60 -0
  13. data/.ci/functions/wait-for-container.sh +36 -0
  14. data/.ci/jobs/defaults.yml +69 -0
  15. data/.ci/jobs/elastic+enterprise-search-ruby+master.yml +12 -0
  16. data/.ci/jobs/elastic+enterprise-search-ruby+pull-request.yml +19 -0
  17. data/.ci/run-elasticsearch.sh +127 -0
  18. data/.ci/run-enterprise-search.sh +70 -0
  19. data/.ci/run-local.sh +14 -0
  20. data/.ci/run-repository.sh +47 -0
  21. data/.ci/run-tests +29 -0
  22. data/.ci/test-matrix.yml +13 -0
  23. data/.github/workflows/rubocop.yml +15 -0
  24. data/.github/workflows/testing.yml +40 -0
  25. data/.gitignore +3 -0
  26. data/.rubocop.yml +52 -0
  27. data/Gemfile +22 -1
  28. data/{LICENSE.txt → LICENSE} +33 -32
  29. data/README.md +201 -103
  30. data/Rakefile +71 -1
  31. data/elastic-enterprise-search.gemspec +47 -13
  32. data/lib/elastic-enterprise-search.rb +20 -1
  33. data/lib/elastic/.rubocop.yml +6 -0
  34. data/lib/elastic/app-search/api/add_meta_engine_source.rb +48 -0
  35. data/lib/elastic/app-search/api/api_logs.rb +63 -0
  36. data/lib/elastic/app-search/api/count_analytics.rb +50 -0
  37. data/lib/elastic/app-search/api/create_curation.rb +52 -0
  38. data/lib/elastic/app-search/api/create_engine.rb +51 -0
  39. data/lib/elastic/app-search/api/create_synonym_set.rb +50 -0
  40. data/lib/elastic/app-search/api/curation.rb +52 -0
  41. data/lib/elastic/app-search/api/delete_curation.rb +52 -0
  42. data/lib/elastic/app-search/api/delete_documents.rb +48 -0
  43. data/lib/elastic/app-search/api/delete_engine.rb +48 -0
  44. data/lib/elastic/app-search/api/delete_meta_engine_source.rb +48 -0
  45. data/lib/elastic/app-search/api/delete_synonym_set.rb +52 -0
  46. data/lib/elastic/app-search/api/documents.rb +48 -0
  47. data/lib/elastic/app-search/api/engine.rb +48 -0
  48. data/lib/elastic/app-search/api/index_documents.rb +48 -0
  49. data/lib/elastic/app-search/api/list_curations.rb +50 -0
  50. data/lib/elastic/app-search/api/list_documents.rb +50 -0
  51. data/lib/elastic/app-search/api/list_engines.rb +47 -0
  52. data/lib/elastic/app-search/api/list_synonym_sets.rb +50 -0
  53. data/lib/elastic/app-search/api/log_clickthrough.rb +54 -0
  54. data/lib/elastic/app-search/api/multi_search.rb +50 -0
  55. data/lib/elastic/app-search/api/put_curation.rb +56 -0
  56. data/lib/elastic/app-search/api/put_documents.rb +48 -0
  57. data/lib/elastic/app-search/api/put_schema.rb +48 -0
  58. data/lib/elastic/app-search/api/put_search_settings.rb +48 -0
  59. data/lib/elastic/app-search/api/put_synonym_set.rb +54 -0
  60. data/lib/elastic/app-search/api/query_suggestion.rb +52 -0
  61. data/lib/elastic/app-search/api/reset_search_settings.rb +48 -0
  62. data/lib/elastic/app-search/api/schema.rb +48 -0
  63. data/lib/elastic/app-search/api/search.rb +48 -0
  64. data/lib/elastic/app-search/api/search_settings.rb +48 -0
  65. data/lib/elastic/app-search/api/synonym_set.rb +52 -0
  66. data/lib/elastic/app-search/api/top_clicks_analytics.rb +52 -0
  67. data/lib/elastic/app-search/api/top_queries_analytics.rb +51 -0
  68. data/lib/elastic/app-search/app_search.rb +65 -0
  69. data/lib/elastic/enterprise-search/api/health.rb +38 -0
  70. data/lib/elastic/enterprise-search/api/put_read_only.rb +40 -0
  71. data/lib/elastic/enterprise-search/api/read_only.rb +38 -0
  72. data/lib/elastic/enterprise-search/api/stats.rb +41 -0
  73. data/lib/elastic/enterprise-search/api/version.rb +38 -0
  74. data/lib/elastic/enterprise-search/client.rb +79 -15
  75. data/lib/elastic/enterprise-search/configuration.rb +32 -16
  76. data/lib/elastic/enterprise-search/exceptions.rb +19 -0
  77. data/lib/elastic/enterprise-search/request.rb +46 -80
  78. data/lib/elastic/enterprise-search/utils.rb +29 -1
  79. data/lib/elastic/enterprise-search/version.rb +20 -1
  80. data/lib/elastic/enterprise_search.rb +38 -0
  81. data/lib/elastic/workplace-search/api/add_user_permissions.rb +53 -0
  82. data/lib/elastic/workplace-search/api/create_external_identity.rb +49 -0
  83. data/lib/elastic/workplace-search/api/delete_documents.rb +49 -0
  84. data/lib/elastic/workplace-search/api/delete_external_identity.rb +49 -0
  85. data/lib/elastic/workplace-search/api/external_identity.rb +49 -0
  86. data/lib/elastic/workplace-search/api/index_documents.rb +49 -0
  87. data/lib/elastic/workplace-search/api/list_external_identities.rb +47 -0
  88. data/lib/elastic/workplace-search/api/list_permissions.rb +47 -0
  89. data/lib/elastic/workplace-search/api/put_external_identity.rb +53 -0
  90. data/lib/elastic/workplace-search/api/put_user_permissions.rb +53 -0
  91. data/lib/elastic/workplace-search/api/remove_user_permissions.rb +53 -0
  92. data/lib/elastic/workplace-search/api/search.rb +42 -0
  93. data/lib/elastic/workplace-search/api/user_permissions.rb +49 -0
  94. data/lib/elastic/workplace-search/workplace_search.rb +59 -0
  95. data/lib/generator/documentation_helper.rb +94 -0
  96. data/lib/generator/endpoint_generator.rb +119 -0
  97. data/lib/generator/parameters_exceptions.rb +40 -0
  98. data/lib/generator/parameters_helper.rb +144 -0
  99. data/lib/generator/templates/_license.erb +16 -0
  100. data/lib/generator/templates/endpoint_template.erb +29 -0
  101. data/lib/generator/templates/spec_template.erb +1 -0
  102. data/lib/generator/utils.rb +70 -0
  103. data/spec/app-search/api_count_analytics_spec.rb +34 -0
  104. data/spec/app-search/api_documents_spec.rb +88 -0
  105. data/spec/app-search/api_engines_spec.rb +67 -0
  106. data/spec/app-search/api_logs_spec.rb +36 -0
  107. data/spec/app-search/api_schema_spec.rb +34 -0
  108. data/spec/app-search/api_search_and_multi_search_spec.rb +48 -0
  109. data/spec/app-search/api_spec_helper.rb +14 -0
  110. data/spec/app-search/api_top_clicks_analytics_spec.rb +44 -0
  111. data/spec/app-search/api_top_queries_analytics_spec.rb +34 -0
  112. data/spec/app-search/client_spec.rb +68 -0
  113. data/spec/enterprise-search/client_spec.rb +96 -0
  114. data/spec/enterprise-search/request_spec.rb +114 -0
  115. data/spec/fixtures/vcr/add_user_permissions.yml +18 -22
  116. data/spec/fixtures/vcr/app_search/api_logs.yml +70 -0
  117. data/spec/fixtures/vcr/app_search/api_top_clicks_analytics.yml +55 -0
  118. data/spec/fixtures/vcr/app_search/api_top_clicks_analytics_query.yml +55 -0
  119. data/spec/fixtures/vcr/app_search/api_top_queries_analytics.yml +55 -0
  120. data/spec/fixtures/vcr/app_search/count_analytics.yml +55 -0
  121. data/spec/fixtures/vcr/app_search/create_and_update_document.yml +107 -0
  122. data/spec/fixtures/vcr/app_search/index_and_delete_document.yml +107 -0
  123. data/spec/fixtures/vcr/app_search/index_documents.yml +56 -0
  124. data/spec/fixtures/vcr/app_search/list_documents.yml +57 -0
  125. data/spec/fixtures/vcr/app_search/multi_query_search.yml +63 -0
  126. data/spec/fixtures/vcr/app_search/schema.yml +55 -0
  127. data/spec/fixtures/vcr/app_search/search.yml +57 -0
  128. data/spec/fixtures/vcr/app_search/single_query_search.yml +60 -0
  129. data/spec/fixtures/vcr/clear_user_permissions.yml +51 -0
  130. data/spec/fixtures/vcr/create_document.yml +54 -0
  131. data/spec/fixtures/vcr/create_engine.yml +55 -0
  132. data/spec/fixtures/vcr/delete_documents.yml +51 -0
  133. data/spec/fixtures/vcr/delete_engine.yml +55 -0
  134. data/spec/fixtures/vcr/get_engine.yml +55 -0
  135. data/spec/fixtures/vcr/index_documents.yml +53 -0
  136. data/spec/fixtures/vcr/list_engines.yml +55 -0
  137. data/spec/fixtures/vcr/list_permissions.yml +51 -0
  138. data/spec/fixtures/vcr/put_user_permissions.yml +99 -0
  139. data/spec/fixtures/vcr/remove_user_permissions.yml +16 -20
  140. data/spec/fixtures/vcr/user_permissions_empty.yml +51 -0
  141. data/spec/integration/enterprise_search_api_spec.rb +96 -0
  142. data/spec/spec_helper.rb +25 -14
  143. data/spec/webmock_requires.rb +4 -0
  144. data/spec/workplace-search/api_spec.rb +188 -0
  145. data/spec/workplace-search/client_spec.rb +69 -0
  146. metadata +207 -47
  147. data/.circleci/config.yml +0 -68
  148. data/.travis.yml +0 -15
  149. data/NOTICE.txt +0 -3
  150. data/lib/elastic/enterprise-search.rb +0 -7
  151. data/lib/elastic/enterprise-search/client/content_source_documents.rb +0 -46
  152. data/lib/elastic/enterprise-search/client/permissions.rb +0 -30
  153. data/logo-enterprise-search.png +0 -0
  154. data/spec/client/content_source_documents_spec.rb +0 -55
  155. data/spec/client/permissions_spec.rb +0 -75
  156. data/spec/configuration_spec.rb +0 -19
  157. data/spec/fixtures/vcr/async_create_or_update_document_success.yml +0 -51
  158. data/spec/fixtures/vcr/destroy_documents_success.yml +0 -51
  159. data/spec/fixtures/vcr/get_user_permissions.yml +0 -55
  160. data/spec/fixtures/vcr/list_all_permissions.yml +0 -55
  161. data/spec/fixtures/vcr/list_all_permissions_with_paging.yml +0 -55
  162. data/spec/fixtures/vcr/update_user_permissions.yml +0 -55
@@ -0,0 +1,44 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ # frozen_string_literal: true
19
+
20
+ require_relative './api_spec_helper'
21
+
22
+ describe Elastic::EnterpriseSearch::AppSearch::Client do
23
+ context 'api_top_clicks_analytics' do
24
+ it 'returns api_top_clicks_analytics with no query' do
25
+ VCR.use_cassette('app_search/api_top_clicks_analytics') do
26
+ response = @client.top_clicks_analytics('books')
27
+ expect(response.status).to eq 200
28
+
29
+ expect(response.body['results'])
30
+ expect(response.body['meta'])
31
+ end
32
+ end
33
+
34
+ it 'returns api_top_clicks_analytics with query' do
35
+ VCR.use_cassette('app_search/api_top_clicks_analytics_query') do
36
+ response = @client.top_clicks_analytics('books', query: 'test')
37
+ expect(response.status).to eq 200
38
+
39
+ expect(response.body['results'])
40
+ expect(response.body['meta'])
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,34 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ # frozen_string_literal: true
19
+
20
+ require_relative './api_spec_helper'
21
+
22
+ describe Elastic::EnterpriseSearch::AppSearch::Client do
23
+ context 'api_top_queries_analytics' do
24
+ it 'returns api_top_queries_analytics with no query' do
25
+ VCR.use_cassette('app_search/api_top_queries_analytics') do
26
+ response = @client.top_queries_analytics('books')
27
+ expect(response.status).to eq 200
28
+
29
+ expect(response.body['results'])
30
+ expect(response.body['meta'])
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,68 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ # frozen_string_literal: true
19
+
20
+ require 'spec_helper'
21
+
22
+ describe Elastic::EnterpriseSearch::AppSearch::Client do
23
+ let(:host) { 'https://localhost:8080' }
24
+ let(:api_key) { 'api_key' }
25
+
26
+ context 'dependant on EnterpriseSearch' do
27
+ let(:ent_client) { Elastic::EnterpriseSearch::Client.new(host: host) }
28
+ let(:app_client) { ent_client.app_search }
29
+
30
+ it 'initializes an app search client' do
31
+ expect(app_client).not_to be nil
32
+ expect(app_client).to be_a(Elastic::EnterpriseSearch::AppSearch::Client)
33
+ expect(app_client.host).to eq(host)
34
+ end
35
+
36
+ it 'sets up authentication during initialization' do
37
+ ent_client = Elastic::EnterpriseSearch::Client.new(host: host)
38
+ app_client = ent_client.app_search(http_auth: api_key)
39
+ expect(app_client.http_auth).to eq api_key
40
+ end
41
+
42
+ it 'sets up authentication as a parameter' do
43
+ app_client.http_auth = api_key
44
+ expect(app_client.http_auth).to eq api_key
45
+ end
46
+ end
47
+
48
+ context 'independent from EnterpriseSearch client' do
49
+ let(:app_client) { Elastic::EnterpriseSearch::AppSearch::Client.new(host: host) }
50
+
51
+ it 'initializes a workplace search client' do
52
+ expect(app_client).not_to be nil
53
+ expect(app_client).to be_a(Elastic::EnterpriseSearch::AppSearch::Client)
54
+ expect(app_client.host).to eq(host)
55
+ end
56
+
57
+ it 'sets up authentication during initialization' do
58
+ ent_client = Elastic::EnterpriseSearch::Client.new(host: host)
59
+ app_client = ent_client.app_search(http_auth: api_key)
60
+ expect(app_client.http_auth).to eq api_key
61
+ end
62
+
63
+ it 'sets up authentication as a parameter' do
64
+ app_client.http_auth = api_key
65
+ expect(app_client.http_auth).to eq api_key
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,96 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ # frozen_string_literal: true
19
+
20
+ require 'spec_helper'
21
+ require_relative './../webmock_requires'
22
+
23
+ describe Elastic::EnterpriseSearch::Client do
24
+ let(:host) { 'https://localhost:8080' }
25
+ let(:http_auth) { { user: 'elasticenterprise', password: 'password' } }
26
+
27
+ context 'initialization' do
28
+ it 'sets up options' do
29
+ client = Elastic::EnterpriseSearch::Client.new(
30
+ host: host
31
+ )
32
+ expect(client.host).to eq host
33
+ end
34
+
35
+ it 'uses the default host' do
36
+ client = Elastic::EnterpriseSearch::Client.new
37
+
38
+ expect(client.host).to eq 'http://localhost:3002'
39
+ end
40
+
41
+ it 'raises an exception for invalid host' do
42
+ expect do
43
+ Elastic::EnterpriseSearch::Client.new(host: 'localhost')
44
+ end.to raise_exception(URI::InvalidURIError)
45
+ end
46
+ end
47
+
48
+ context 'logging' do
49
+ require 'logger'
50
+ # rubocop:disable all
51
+ class FakeLogger < Logger
52
+ def initialize; @strio = StringIO.new; super(@strio); end
53
+ def messages; @strio.string; end
54
+ end
55
+ # rubocop:enable all
56
+
57
+ let(:logger) { FakeLogger.new }
58
+
59
+ it 'sets log' do
60
+ client = Elastic::EnterpriseSearch::Client.new(log: true)
61
+
62
+ expect(client.log)
63
+ end
64
+
65
+ it 'sets a logger' do
66
+ client = Elastic::EnterpriseSearch::Client.new(logger: logger)
67
+ stub_request(:get, 'http://localhost:3002/api/ent/v1/internal/health/')
68
+ client.health
69
+ expect(logger.messages).to include('INFO -- : GET http://localhost:3002/api/ent/v1/internal/health/')
70
+ end
71
+ end
72
+
73
+ context 'basic authentication' do
74
+ it 'sets up authentication on initialization' do
75
+ client = Elastic::EnterpriseSearch::Client.new(
76
+ http_auth: http_auth
77
+ )
78
+ expect(client.http_auth).to eq http_auth
79
+ end
80
+
81
+ it 'sets authentication after initialization' do
82
+ http_auth = { user: 'test', password: 'testing' }
83
+ client = Elastic::EnterpriseSearch::Client.new
84
+ client.http_auth = http_auth
85
+ expect(client.http_auth).to eq http_auth
86
+ end
87
+ end
88
+
89
+ context 'workplace search instantiation from enterprise search' do
90
+ let(:client) { Elastic::EnterpriseSearch::Client.new(host: host) }
91
+
92
+ it 'instantiates workplace search with default endpoint' do
93
+ expect(client.workplace_search.host).to eq host
94
+ end
95
+ end
96
+ end
@@ -0,0 +1,114 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ # frozen_string_literal: true
19
+
20
+ require 'spec_helper'
21
+ require 'ostruct'
22
+ require_relative './../webmock_requires'
23
+
24
+ describe Elastic::EnterpriseSearch::Client do
25
+ let(:client) { Elastic::EnterpriseSearch::Client.new(http_auth: http_auth) }
26
+ let(:stub_response) { OpenStruct.new(status: 200) }
27
+ let(:host) { 'http://localhost:3002' }
28
+ let(:http_auth) { { user: 'elastic', password: 'password' } }
29
+ let(:user_agent) do
30
+ [
31
+ "#{Elastic::EnterpriseSearch::CLIENT_NAME}/#{Elastic::EnterpriseSearch::VERSION} ",
32
+ "(RUBY_VERSION: #{RUBY_VERSION}; ",
33
+ "#{RbConfig::CONFIG['host_os'].split('_').first[/[a-z]+/i].downcase} ",
34
+ "#{RbConfig::CONFIG['target_cpu']}; ",
35
+ "elasticsearch-transport: #{Elasticsearch::Transport::VERSION})"
36
+ ].join
37
+ end
38
+
39
+ let(:headers) do
40
+ {
41
+ 'Authorization' => 'Basic ZWxhc3RpYzpwYXNzd29yZA==',
42
+ 'Content-Type' => 'application/json',
43
+ 'User-Agent' => user_agent
44
+ }
45
+ end
46
+
47
+ context 'builds request' do
48
+ context 'get' do
49
+ it 'builds the right request' do
50
+ stub_request(:get, "#{host}/test")
51
+ .with(
52
+ query: { 'params' => 'test' },
53
+ headers: headers
54
+ ).to_return(stub_response)
55
+
56
+ expect(client.get('test', params: 'test').status).to eq(200)
57
+ end
58
+ end
59
+
60
+ context 'delete' do
61
+ it 'builds the right request' do
62
+ stub_request(:delete, "#{host}/test")
63
+ .with(
64
+ query: { 'params' => 'test' },
65
+ headers: headers
66
+ ).to_return(stub_response)
67
+
68
+ expect(client.delete('test', params: 'test').status).to eq(200)
69
+ end
70
+ end
71
+
72
+ context 'post' do
73
+ it 'builds the right request' do
74
+ stub_request(:post, "#{host}/test")
75
+ .with(
76
+ body: { some: 'value' },
77
+ headers: headers
78
+ ).to_return(stub_response)
79
+
80
+ expect(client.post('test', {}, { some: 'value' }).status).to eq(200)
81
+ end
82
+ end
83
+
84
+ context 'put' do
85
+ it 'builds the right request' do
86
+ stub_request(:put, "#{host}/test")
87
+ .with(body: { 'params' => 'test' }, headers: headers)
88
+ .to_return(stub_response)
89
+
90
+ expect(client.put('test', {}, { 'params' => 'test' }).status).to eq(200)
91
+ end
92
+ end
93
+ end
94
+
95
+ context 'with ssl' do
96
+ let(:host) { 'https://localhost:3002/api/ws/v1' }
97
+ let(:client) do
98
+ Elastic::EnterpriseSearch::Client.new(
99
+ http_auth: http_auth,
100
+ host: host
101
+ )
102
+ end
103
+
104
+ it 'sends the request correctly' do
105
+ stub_request(:get, "#{host}/test")
106
+ .with(
107
+ query: { 'params' => 'test' },
108
+ headers: headers
109
+ ).to_return(stub_response)
110
+
111
+ expect(client.get('test', { 'params' => 'test' }).status).to eq(200)
112
+ end
113
+ end
114
+ end
@@ -2,25 +2,22 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: http://localhost:3002/api/v1/ent/sources/5d96387b75444bf49532c24a/permissions/enterprise_search/add
5
+ uri: http://localhost:3002/api/ws/v1/sources/content_source_key/permissions/enterprise_search/add/?permissions%5B%5D=permission1&permissions%5B%5D=permission2&user=enterprise_search
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"permissions":["permission1"]}'
8
+ string: "{}"
9
9
  headers:
10
- Accept-Encoding:
11
- - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
- Accept:
13
- - "*/*"
14
10
  User-Agent:
15
- - Ruby
11
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
12
+ 7.9.0)'
16
13
  Content-Type:
17
14
  - application/json
18
- X-Swiftype-Client:
19
- - elastic-enterprise-search-ruby
20
- X-Swiftype-Client-Version:
21
- - 0.3.1
22
15
  Authorization:
23
- - Bearer xyT3mm3ecPsPuYxd_6fX
16
+ - Bearer access_token
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Accept:
20
+ - "*/*"
24
21
  response:
25
22
  status:
26
23
  code: 200
@@ -33,23 +30,22 @@ http_interactions:
33
30
  X-Content-Type-Options:
34
31
  - nosniff
35
32
  Content-Type:
36
- - application/json; charset=utf-8
33
+ - application/json;charset=utf-8
37
34
  Etag:
38
- - W/"6cb0d74ff26d6f74253df3ee283a38dd"
35
+ - W/"b468c7da0c319e7f5f76f1b107306a23"
39
36
  Cache-Control:
40
37
  - max-age=0, private, must-revalidate
41
- Set-Cookie:
42
- - _st_frito_togo_session=KzdUM3ZvN3Z3aUIvRHNudUF0ZzJaT01EK2tNUk53akxDNVBlNWZxYVVDd3o4YlhqZXVUWjA3MWlqSlZnNzB0eFJrRW5RaUZBRFdHeVdtRnBtWUs5bWc9PS0tcEhjSk0xekxrOGRrcXNsWE83dlJrUT09--6f1c0da2f24a45042ff4492d5bac3ae214cd3731;
43
- path=/; expires=Mon, 08 Oct 2029 18:04:32 -0000; HttpOnly
44
38
  X-Request-Id:
45
- - 616a8613-11c8-4031-8767-16f3ff735170
39
+ - d8232f35-60cc-431a-8c94-cbdb41f362a7
46
40
  X-Runtime:
47
- - '0.310198'
41
+ - '1.344729'
48
42
  Transfer-Encoding:
49
43
  - chunked
44
+ Server:
45
+ - Jetty(9.4.30.v20200611)
50
46
  body:
51
47
  encoding: UTF-8
52
- string: '{"user":"enterprise_search","permissions":["permission1"]}'
53
- http_version:
54
- recorded_at: Tue, 08 Oct 2019 18:04:32 GMT
48
+ string: '{"user":"enterprise_search","permissions":["permission1","permission2"]}'
49
+ http_version:
50
+ recorded_at: Tue, 03 Nov 2020 23:17:24 GMT
55
51
  recorded_with: VCR 3.0.3
@@ -0,0 +1,70 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://localhost:3002/api/as/v1/engines/videogames/logs/api/?filters%5Bdate%5D%5Bfrom%5D=2020-10-01T00:00:00%2B00:00&filters%5Bdate%5D%5Bto%5D=2020-11-05T00:00:00%2B00:00
6
+ body:
7
+ encoding: UTF-8
8
+ string: "{}"
9
+ headers:
10
+ User-Agent:
11
+ - 'elastic-enteprise-search-ruby/0.0.1 (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport:
12
+ 7.9.0)'
13
+ Content-Type:
14
+ - application/json
15
+ Authorization:
16
+ - Bearer api_key
17
+ Accept-Encoding:
18
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
19
+ Accept:
20
+ - "*/*"
21
+ response:
22
+ status:
23
+ code: 200
24
+ message: OK
25
+ headers:
26
+ X-Frame-Options:
27
+ - SAMEORIGIN
28
+ X-Xss-Protection:
29
+ - 1; mode=block
30
+ X-Content-Type-Options:
31
+ - nosniff
32
+ X-App-Search-Version:
33
+ - 7.10.0
34
+ Content-Type:
35
+ - application/json;charset=utf-8
36
+ Vary:
37
+ - Origin
38
+ Etag:
39
+ - W/"46f5eff6326a14fda4ffa9d26388e19a"
40
+ Cache-Control:
41
+ - max-age=0, private, must-revalidate
42
+ X-Request-Id:
43
+ - c729ae2c-83a5-408a-9eb5-592bbf2c20b6
44
+ X-Runtime:
45
+ - '0.025284'
46
+ Transfer-Encoding:
47
+ - chunked
48
+ Server:
49
+ - Jetty(9.4.30.v20200611)
50
+ body:
51
+ encoding: UTF-8
52
+ string: '{"results":[{"timestamp":"2020-11-03T22:57:17Z","request_body":"[{\"name\":\"Super
53
+ Lorenzo Bros\",\"year\":1985},{\"name\":\"Pack-Man\",\"year\":1980},{\"name\":\"Galaxxian\",\"year\":1979},{\"name\":\"Audiovisual,
54
+ the hedgehog\",\"year\":\"1991\"}]","full_request_path":"/api/as/v1/engines/videogames/documents","user_agent":"elastic-enteprise-search-ruby/0.0.1
55
+ (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport: 8.0.0.pre)","response_body":"[{\"id\":\"doc-5fa1e04d389ab9c9bb5be384\",\"errors\":[]},{\"id\":\"doc-5fa1e04d389ab9c9bb5be385\",\"errors\":[]},{\"id\":\"doc-5fa1e04d389ab9c9bb5be386\",\"errors\":[]},{\"id\":\"doc-5fa1e04d389ab9c9bb5be387\",\"errors\":[]}]","http_method":"POST","status":200,"path":null},{"timestamp":"2020-11-03T22:57:18Z","request_body":"{\"query\":\"Pack-Man\"}","full_request_path":"/api/as/v1/engines/videogames/search","user_agent":"elastic-enteprise-search-ruby/0.0.1
56
+ (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport: 8.0.0.pre)","response_body":"{\"meta\":{\"alerts\":[],\"warnings\":[],\"page\":{\"current\":1,\"total_pages\":0,\"total_results\":0,\"size\":10},\"engine\":{\"name\":\"videogames\",\"type\":\"default\"},\"request_id\":\"af52a7f1-aa18-4f24-9545-19c18c3bfb00\"},\"results\":[]}","http_method":"POST","status":200,"path":null},{"timestamp":"2020-11-03T22:58:58Z","request_body":"{\"query\":\"Pack-Man\"}","full_request_path":"/api/as/v1/engines/videogames/search","user_agent":"elastic-enteprise-search-ruby/0.0.1
57
+ (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport: 8.0.0.pre)","response_body":"{\"meta\":{\"alerts\":[],\"warnings\":[],\"page\":{\"current\":1,\"total_pages\":1,\"total_results\":1,\"size\":10},\"engine\":{\"name\":\"videogames\",\"type\":\"default\"},\"request_id\":\"435a5809-d036-4d78-9199-58d99209f3fb\"},\"results\":[{\"name\":{\"raw\":\"Pack-Man\"},\"year\":{\"raw\":\"1980\"},\"_meta\":{\"id\":\"doc-5fa1e04d389ab9c9bb5be385\",\"engine\":\"videogames\",\"score\":1.9132978},\"id\":{\"raw\":\"doc-5fa1e04d389ab9c9bb5be385\"}}]}","http_method":"POST","status":200,"path":null},{"timestamp":"2020-11-04T15:41:30Z","request_body":"{}","full_request_path":"/api/as/v1/engines/videogames/documents?id=176&name=test","user_agent":"elastic-enteprise-search-ruby/0.0.1
58
+ (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport: 8.0.0.pre)","response_body":"{\"errors\":[\"JSON
59
+ must not be empty\"]}","http_method":"POST","status":400,"path":null},{"timestamp":"2020-11-04T15:41:38Z","request_body":"{\"id\":176,\"name\":\"test\"}","full_request_path":"/api/as/v1/engines/videogames/documents","user_agent":"elastic-enteprise-search-ruby/0.0.1
60
+ (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport: 8.0.0.pre)","response_body":"[{\"id\":\"176\",\"errors\":[]}]","http_method":"POST","status":200,"path":null},{"timestamp":"2020-11-04T15:44:12Z","request_body":"{}","full_request_path":"/api/as/v1/engines/videogames/search?query=fernando","user_agent":"elastic-enteprise-search-ruby/0.0.1
61
+ (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport: 8.0.0.pre)","response_body":"{\"meta\":{\"alerts\":[],\"warnings\":[],\"page\":{\"current\":1,\"total_pages\":0,\"total_results\":0,\"size\":10},\"engine\":{\"name\":\"videogames\",\"type\":\"default\"},\"request_id\":\"ef7980cd-08f3-48fb-b8a5-851f03e9ec28\"},\"results\":[]}","http_method":"POST","status":200,"path":null},{"timestamp":"2020-11-04T15:44:25Z","request_body":"{\"query\":\"\",\"result_fields\":{\"name\":{\"snippet\":{\"size\":300,\"fallback\":true}},\"year\":{\"snippet\":{\"size\":300,\"fallback\":true}}},\"sort\":{\"id\":\"desc\"},\"page\":{\"size\":20,\"current\":1}}","full_request_path":"/api/as/v1/engines/videogames/search.json","user_agent":"Mozilla/5.0
62
+ (X11; Ubuntu; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0","response_body":"{\"meta\":{\"alerts\":[],\"warnings\":[],\"page\":{\"current\":1,\"total_pages\":1,\"total_results\":5,\"size\":20},\"engine\":{\"name\":\"videogames\",\"type\":\"default\"},\"request_id\":\"dec6b6ef-d400-42f3-9a9a-0375e1a67a97\"},\"results\":[{\"name\":{\"snippet\":\"Audiovisual,
63
+ the hedgehog\"},\"year\":{\"snippet\":\"1991\"},\"_meta\":{\"id\":\"doc-5fa1e04d389ab9c9bb5be387\",\"engine\":\"videogames\",\"score\":null},\"id\":{\"raw\":\"doc-5fa1e04d389ab9c9bb5be387\"}},{\"name\":{\"snippet\":\"Galaxxian\"},\"year\":{\"snippet\":\"1979\"},\"_meta\":{\"id\":\"doc-5fa1e04d389ab9c9bb5be386\",\"engine\":\"videogames\",\"score\":null},\"id\":{\"raw\":\"doc-5fa1e04d389ab9c9bb5be386\"}},{\"name\":{\"snippet\":\"Pack-Man\"},\"year\":{\"snippet\":\"1980\"},\"_meta\":{\"id\":\"doc-5fa1e04d389ab9c9bb5be385\",\"engine\":\"videogames\",\"score\":null},\"id\":{\"raw\":\"doc-5fa1e04d389ab9c9bb5be385\"}},{\"name\":{\"snippet\":\"Super
64
+ Lorenzo Bros\"},\"year\":{\"snippet\":\"1985\"},\"_meta\":{\"id\":\"doc-5fa1e04d389ab9c9bb5be384\",\"engine\":\"videogames\",\"score\":null},\"id\":{\"raw\":\"doc-5fa1e04d389ab9c9bb5be384\"}},{\"name\":{\"snippet\":\"test\"},\"_meta\":{\"id\":\"176\",\"engine\":\"videogames\",\"score\":null},\"id\":{\"raw\":\"176\"}}]}","http_method":"POST","status":200,"path":null},{"timestamp":"2020-11-04T15:44:30Z","request_body":"{}","full_request_path":"/api/as/v1/engines/videogames/search?query=pack","user_agent":"elastic-enteprise-search-ruby/0.0.1
65
+ (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport: 8.0.0.pre)","response_body":"{\"meta\":{\"alerts\":[],\"warnings\":[],\"page\":{\"current\":1,\"total_pages\":1,\"total_results\":1,\"size\":10},\"engine\":{\"name\":\"videogames\",\"type\":\"default\"},\"request_id\":\"f75ecdff-cb85-4327-bfe1-b64598a8c1bd\"},\"results\":[{\"name\":{\"raw\":\"Pack-Man\"},\"year\":{\"raw\":\"1980\"},\"_meta\":{\"id\":\"doc-5fa1e04d389ab9c9bb5be385\",\"engine\":\"videogames\",\"score\":1.1594962},\"id\":{\"raw\":\"doc-5fa1e04d389ab9c9bb5be385\"}}]}","http_method":"POST","status":200,"path":null},{"timestamp":"2020-11-04T15:44:35Z","request_body":"{}","full_request_path":"/api/as/v1/engines/videogames/search?query=pack","user_agent":"elastic-enteprise-search-ruby/0.0.1
66
+ (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport: 8.0.0.pre)","response_body":"{\"meta\":{\"alerts\":[],\"warnings\":[],\"page\":{\"current\":1,\"total_pages\":1,\"total_results\":1,\"size\":10},\"engine\":{\"name\":\"videogames\",\"type\":\"default\"},\"request_id\":\"9709ef82-39f6-4289-88de-fec36e9771c3\"},\"results\":[{\"name\":{\"raw\":\"Pack-Man\"},\"year\":{\"raw\":\"1980\"},\"_meta\":{\"id\":\"doc-5fa1e04d389ab9c9bb5be385\",\"engine\":\"videogames\",\"score\":1.1594962},\"id\":{\"raw\":\"doc-5fa1e04d389ab9c9bb5be385\"}}]}","http_method":"POST","status":200,"path":null},{"timestamp":"2020-11-04T15:44:38Z","request_body":"{}","full_request_path":"/api/as/v1/engines/videogames/search?query=pack","user_agent":"elastic-enteprise-search-ruby/0.0.1
67
+ (RUBY_VERSION: 2.7.1; linux x86_64; elasticsearch-transport: 8.0.0.pre)","response_body":"{\"meta\":{\"alerts\":[],\"warnings\":[],\"page\":{\"current\":1,\"total_pages\":1,\"total_results\":1,\"size\":10},\"engine\":{\"name\":\"videogames\",\"type\":\"default\"},\"request_id\":\"f3fcc54d-68eb-4268-8b1d-3473db1ee85f\"},\"results\":[{\"name\":{\"raw\":\"Pack-Man\"},\"year\":{\"raw\":\"1980\"},\"_meta\":{\"id\":\"doc-5fa1e04d389ab9c9bb5be385\",\"engine\":\"videogames\",\"score\":1.1594962},\"id\":{\"raw\":\"doc-5fa1e04d389ab9c9bb5be385\"}}]}","http_method":"POST","status":200,"path":null}],"meta":{"query":"","filters":{"date":{"from":"2020-10-01T00:00:00+00:00","to":"2020-11-05T00:00:00+00:00"}},"sort_direction":"asc","page":{"current":1,"total_pages":9,"total_results":83,"size":10}}}'
68
+ http_version:
69
+ recorded_at: Wed, 04 Nov 2020 20:11:36 GMT
70
+ recorded_with: VCR 3.0.3