elastic-enterprise-search 7.13.0 → 7.15.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. checksums.yaml +4 -4
  2. data/.ci/functions/imports.sh +1 -0
  3. data/.ci/jobs/defaults.yml +4 -0
  4. data/.ci/jobs/{elastic+enterprise-search-ruby+master.yml → elastic+enterprise-search-ruby+main.yml} +4 -4
  5. data/.ci/make.sh +162 -0
  6. data/.ci/run-repository.sh +2 -1
  7. data/.ci/test-matrix.yml +5 -3
  8. data/.github/check_license_headers.rb +33 -0
  9. data/{spec/app-search/api_logs_spec.rb → .github/compatibility/Gemfile} +3 -16
  10. data/.github/license-header.txt +16 -0
  11. data/.github/workflows/compatibility.yml +20 -0
  12. data/.github/workflows/license.yml +13 -0
  13. data/.github/workflows/testing.yml +1 -1
  14. data/CONTRIBUTING.md +1 -1
  15. data/README.md +1 -1
  16. data/Rakefile +20 -0
  17. data/docs/guide/app-search-api.asciidoc +157 -1
  18. data/docs/guide/overview.asciidoc +3 -3
  19. data/docs/guide/release_notes/712.asciidoc +12 -0
  20. data/docs/guide/release_notes/714.asciidoc +33 -0
  21. data/docs/guide/release_notes/715.asciidoc +48 -0
  22. data/docs/guide/release_notes/index.asciidoc +4 -0
  23. data/docs/guide/workplace-search-api.asciidoc +69 -0
  24. data/elastic-enterprise-search.gemspec +1 -1
  25. data/lib/elastic/app-search/api/add_meta_engine_source.rb +3 -2
  26. data/lib/elastic/app-search/api/api_key.rb +52 -0
  27. data/lib/elastic/app-search/api/api_logs.rb +14 -13
  28. data/lib/elastic/app-search/api/count_analytics.rb +7 -6
  29. data/lib/elastic/app-search/api/crawler_active_crawl_request.rb +51 -0
  30. data/lib/elastic/app-search/api/crawler_crawl_request.rb +54 -0
  31. data/lib/elastic/app-search/api/crawler_crawl_schedule.rb +51 -0
  32. data/lib/elastic/app-search/api/crawler_domain.rb +54 -0
  33. data/lib/elastic/app-search/api/crawler_domain_validation_result.rb +48 -0
  34. data/lib/elastic/app-search/api/crawler_metrics.rb +48 -0
  35. data/lib/elastic/app-search/api/crawler_overview.rb +51 -0
  36. data/lib/elastic/app-search/api/crawler_process_crawl.rb +54 -0
  37. data/lib/elastic/app-search/api/crawler_process_crawl_denied_urls.rb +54 -0
  38. data/lib/elastic/app-search/api/crawler_url_extraction_result.rb +52 -0
  39. data/lib/elastic/app-search/api/crawler_url_tracing_result.rb +52 -0
  40. data/lib/elastic/app-search/api/crawler_url_validation_result.rb +52 -0
  41. data/lib/elastic/app-search/api/crawler_user_agent.rb +48 -0
  42. data/lib/elastic/app-search/api/create_api_key.rb +57 -0
  43. data/lib/elastic/app-search/api/create_crawler_crawl_request.rb +51 -0
  44. data/lib/elastic/app-search/api/create_crawler_crawl_rule.rb +59 -0
  45. data/lib/elastic/app-search/api/create_crawler_domain.rb +55 -0
  46. data/lib/elastic/app-search/api/create_crawler_entry_point.rb +56 -0
  47. data/lib/elastic/app-search/api/create_crawler_process_crawl.rb +53 -0
  48. data/lib/elastic/app-search/api/create_crawler_sitemap.rb +56 -0
  49. data/lib/elastic/app-search/api/create_curation.rb +7 -6
  50. data/lib/elastic/app-search/api/create_engine.rb +9 -7
  51. data/lib/elastic/app-search/api/create_synonym_set.rb +7 -4
  52. data/lib/elastic/app-search/api/curation.rb +4 -3
  53. data/lib/elastic/app-search/api/delete_active_crawl_request.rb +51 -0
  54. data/lib/elastic/app-search/api/delete_api_key.rb +52 -0
  55. data/lib/elastic/app-search/api/delete_crawler_active_crawl_request.rb +51 -0
  56. data/lib/elastic/app-search/api/delete_crawler_crawl_rule.rb +57 -0
  57. data/lib/elastic/app-search/api/delete_crawler_crawl_schedule.rb +51 -0
  58. data/lib/elastic/app-search/api/delete_crawler_domain.rb +54 -0
  59. data/lib/elastic/app-search/api/delete_crawler_entry_point.rb +57 -0
  60. data/lib/elastic/app-search/api/delete_crawler_sitemap.rb +57 -0
  61. data/lib/elastic/app-search/api/delete_curation.rb +4 -3
  62. data/lib/elastic/app-search/api/delete_documents.rb +2 -1
  63. data/lib/elastic/app-search/api/delete_engine.rb +3 -2
  64. data/lib/elastic/app-search/api/delete_meta_engine_source.rb +3 -3
  65. data/lib/elastic/app-search/api/delete_synonym_set.rb +4 -3
  66. data/lib/elastic/app-search/api/denied_urls.rb +54 -0
  67. data/lib/elastic/app-search/api/documents.rb +3 -2
  68. data/lib/elastic/app-search/api/engine.rb +3 -2
  69. data/lib/elastic/app-search/api/index_documents.rb +3 -2
  70. data/lib/elastic/app-search/api/list_api_keys.rb +50 -0
  71. data/lib/elastic/app-search/api/list_crawler_crawl_requests.rb +52 -0
  72. data/lib/elastic/app-search/api/list_crawler_process_crawls.rb +51 -0
  73. data/lib/elastic/app-search/api/list_curations.rb +3 -2
  74. data/lib/elastic/app-search/api/list_documents.rb +3 -2
  75. data/lib/elastic/app-search/api/list_engines.rb +2 -1
  76. data/lib/elastic/app-search/api/list_synonym_sets.rb +3 -2
  77. data/lib/elastic/app-search/api/log_clickthrough.rb +8 -10
  78. data/lib/elastic/app-search/api/put_api_key.rb +59 -0
  79. data/lib/elastic/app-search/api/put_crawler_crawl_rule.rb +62 -0
  80. data/lib/elastic/app-search/api/put_crawler_crawl_schedule.rb +53 -0
  81. data/lib/elastic/app-search/api/put_crawler_domain.rb +58 -0
  82. data/lib/elastic/app-search/api/put_crawler_entry_point.rb +59 -0
  83. data/lib/elastic/app-search/api/put_crawler_sitemap.rb +59 -0
  84. data/lib/elastic/app-search/api/put_curation.rb +9 -8
  85. data/lib/elastic/app-search/api/put_documents.rb +3 -3
  86. data/lib/elastic/app-search/api/put_schema.rb +4 -4
  87. data/lib/elastic/app-search/api/put_search_settings.rb +6 -2
  88. data/lib/elastic/app-search/api/put_synonym_set.rb +8 -5
  89. data/lib/elastic/app-search/api/query_suggestion.rb +7 -7
  90. data/lib/elastic/app-search/api/reset_search_settings.rb +3 -2
  91. data/lib/elastic/app-search/api/schema.rb +3 -2
  92. data/lib/elastic/app-search/api/search.rb +14 -3
  93. data/lib/elastic/app-search/api/search_settings.rb +3 -2
  94. data/lib/elastic/app-search/api/synonym_set.rb +4 -3
  95. data/lib/elastic/app-search/api/top_clicks_analytics.rb +8 -8
  96. data/lib/elastic/app-search/api/top_queries_analytics.rb +7 -7
  97. data/lib/elastic/app-search/app_search.rb +0 -10
  98. data/lib/elastic/enterprise-search/api/health.rb +1 -0
  99. data/lib/elastic/enterprise-search/api/put_read_only.rb +3 -2
  100. data/lib/elastic/enterprise-search/api/read_only.rb +1 -0
  101. data/lib/elastic/enterprise-search/api/version.rb +1 -0
  102. data/lib/elastic/enterprise-search/client.rb +12 -1
  103. data/lib/elastic/enterprise-search/request.rb +10 -1
  104. data/lib/elastic/enterprise-search/version.rb +1 -1
  105. data/lib/elastic/workplace-search/api/auto_query_refinement_details.rb +49 -0
  106. data/lib/elastic/workplace-search/api/command_sync_jobs.rb +53 -0
  107. data/lib/elastic/workplace-search/api/create_analytics_event.rb +7 -7
  108. data/lib/elastic/workplace-search/api/create_batch_synonym_sets.rb +50 -0
  109. data/lib/elastic/workplace-search/api/create_content_source.rb +5 -2
  110. data/lib/elastic/workplace-search/api/create_external_identity.rb +3 -3
  111. data/lib/elastic/workplace-search/api/current_user.rb +47 -0
  112. data/lib/elastic/workplace-search/api/delete_documents_by_query.rb +50 -0
  113. data/lib/elastic/workplace-search/api/delete_synonym_set.rb +51 -0
  114. data/lib/elastic/workplace-search/api/document.rb +1 -1
  115. data/lib/elastic/workplace-search/api/list_synonym_sets.rb +51 -0
  116. data/lib/elastic/workplace-search/api/put_content_source.rb +7 -4
  117. data/lib/elastic/workplace-search/api/put_content_source_icons.rb +53 -0
  118. data/lib/elastic/workplace-search/api/put_external_identity.rb +3 -3
  119. data/lib/elastic/workplace-search/api/put_synonym_set.rb +53 -0
  120. data/lib/elastic/workplace-search/api/put_triggers_blocklist.rb +47 -0
  121. data/lib/elastic/workplace-search/api/search.rb +4 -1
  122. data/lib/elastic/workplace-search/api/synonym_set.rb +51 -0
  123. data/lib/elastic/workplace-search/api/triggers_blocklist.rb +45 -0
  124. data/lib/elastic/workplace-search/workplace_search.rb +0 -15
  125. data/rake_tasks/unified_release_tasks.rake +46 -0
  126. data/spec/integration/app-search/api_key_spec.rb +110 -0
  127. data/spec/integration/app-search/api_logs_spec.rb +59 -0
  128. data/spec/integration/app-search/app_search_helper.rb +51 -0
  129. data/spec/integration/app-search/count_analytics_spec.rb +47 -0
  130. data/spec/integration/app-search/crawl_requests_spec.rb +86 -0
  131. data/spec/integration/app-search/crawler_crawl_rule_spec.rb +73 -0
  132. data/spec/integration/app-search/crawler_domain_spec.rb +82 -0
  133. data/spec/integration/app-search/crawler_entry_point_spec.rb +77 -0
  134. data/spec/integration/app-search/crawler_metrics_spec.rb +46 -0
  135. data/spec/integration/app-search/crawler_overview_spec.rb +45 -0
  136. data/spec/integration/app-search/crawler_process_crawl_denied_urls_spec.rb +50 -0
  137. data/spec/integration/app-search/crawler_process_crawl_spec.rb +66 -0
  138. data/spec/integration/app-search/crawler_scheduling_spec.rb +69 -0
  139. data/spec/integration/app-search/crawler_sitemap_spec.rb +72 -0
  140. data/spec/integration/app-search/crawler_urls_spec.rb +60 -0
  141. data/spec/{app-search/api_count_analytics_spec.rb → integration/app-search/crawler_user_agent_spec.rb} +6 -9
  142. data/spec/integration/app-search/curations_spec.rb +118 -0
  143. data/spec/integration/app-search/documents_spec.rb +123 -0
  144. data/spec/integration/app-search/engines_spec.rb +78 -0
  145. data/spec/{app-search/api_log_clickthrough_spec.rb → integration/app-search/log_clickthrough_spec.rb} +14 -7
  146. data/spec/integration/app-search/meta_engines_spec.rb +75 -0
  147. data/spec/integration/app-search/query_suggestion_spec.rb +50 -0
  148. data/spec/{app-search/api_schema_spec.rb → integration/app-search/schema_spec.rb} +21 -16
  149. data/spec/integration/app-search/search_and_multiple_search_spec.rb +67 -0
  150. data/spec/integration/app-search/search_settings_spec.rb +87 -0
  151. data/spec/integration/app-search/synonyms_spec.rb +79 -0
  152. data/spec/{app-search/api_top_clicks_analytics_spec.rb → integration/app-search/top_clicks_analytics_spec.rb} +20 -14
  153. data/spec/{app-search/api_top_queries_analytics_spec.rb → integration/app-search/top_queries_analytics_spec.rb} +16 -8
  154. data/spec/integration/workplace-search/content_sources_spec.rb +106 -0
  155. data/spec/integration/workplace-search/documents_spec.rb +95 -0
  156. data/spec/integration/workplace-search/external_identities_spec.rb +97 -0
  157. data/spec/integration/workplace-search/icon.png +0 -0
  158. data/spec/integration/workplace-search/permissions_spec.rb +77 -0
  159. data/spec/integration/workplace-search/synonym_sets_spec.rb +92 -0
  160. data/spec/integration/workplace-search/triggers_spec.rb +43 -0
  161. data/spec/{app-search/api_query_suggestion_spec.rb → integration/workplace-search/users_spec.rb} +12 -15
  162. data/spec/integration/workplace-search/workplace_search_helper.rb +39 -0
  163. data/spec/webmock_requires.rb +16 -0
  164. metadata +105 -61
  165. data/spec/app-search/api_curations_spec.rb +0 -97
  166. data/spec/app-search/api_documents_spec.rb +0 -102
  167. data/spec/app-search/api_engines_spec.rb +0 -67
  168. data/spec/app-search/api_meta_engines_spec.rb +0 -72
  169. data/spec/app-search/api_search_and_multi_search_spec.rb +0 -48
  170. data/spec/app-search/api_search_settings_spec.rb +0 -76
  171. data/spec/app-search/api_spec_helper.rb +0 -14
  172. data/spec/app-search/api_synonyms_spec.rb +0 -79
  173. data/spec/fixtures/vcr/app_search/add_meta_engine_source.yml +0 -109
  174. data/spec/fixtures/vcr/app_search/api_documents.yml +0 -56
  175. data/spec/fixtures/vcr/app_search/api_index_documents.yml +0 -57
  176. data/spec/fixtures/vcr/app_search/api_log_clickthrough.yml +0 -54
  177. data/spec/fixtures/vcr/app_search/api_logs.yml +0 -70
  178. data/spec/fixtures/vcr/app_search/api_put_schema.yml +0 -109
  179. data/spec/fixtures/vcr/app_search/api_put_search_settings.yml +0 -56
  180. data/spec/fixtures/vcr/app_search/api_query_suggestion.yml +0 -59
  181. data/spec/fixtures/vcr/app_search/api_reset_search_settings.yml +0 -56
  182. data/spec/fixtures/vcr/app_search/api_schema.yml +0 -56
  183. data/spec/fixtures/vcr/app_search/api_search_settings.yml +0 -56
  184. data/spec/fixtures/vcr/app_search/api_top_clicks_analytics.yml +0 -55
  185. data/spec/fixtures/vcr/app_search/api_top_clicks_analytics_query.yml +0 -55
  186. data/spec/fixtures/vcr/app_search/api_top_queries_analytics.yml +0 -55
  187. data/spec/fixtures/vcr/app_search/count_analytics.yml +0 -55
  188. data/spec/fixtures/vcr/app_search/create_and_update_document.yml +0 -107
  189. data/spec/fixtures/vcr/app_search/create_curation.yml +0 -113
  190. data/spec/fixtures/vcr/app_search/create_engine.yml +0 -55
  191. data/spec/fixtures/vcr/app_search/create_meta_engine.yml +0 -56
  192. data/spec/fixtures/vcr/app_search/create_synonym_set.yml +0 -56
  193. data/spec/fixtures/vcr/app_search/delete_curation.yml +0 -56
  194. data/spec/fixtures/vcr/app_search/delete_engine.yml +0 -55
  195. data/spec/fixtures/vcr/app_search/delete_meta_engine_source.yml +0 -56
  196. data/spec/fixtures/vcr/app_search/delete_synonym_set.yml +0 -56
  197. data/spec/fixtures/vcr/app_search/get_curation.yml +0 -56
  198. data/spec/fixtures/vcr/app_search/get_engine.yml +0 -55
  199. data/spec/fixtures/vcr/app_search/index_and_delete_document.yml +0 -107
  200. data/spec/fixtures/vcr/app_search/list_curations.yml +0 -56
  201. data/spec/fixtures/vcr/app_search/list_documents.yml +0 -57
  202. data/spec/fixtures/vcr/app_search/list_engines.yml +0 -55
  203. data/spec/fixtures/vcr/app_search/list_synonym_sets.yml +0 -56
  204. data/spec/fixtures/vcr/app_search/multi_query_search.yml +0 -63
  205. data/spec/fixtures/vcr/app_search/put_curation.yml +0 -113
  206. data/spec/fixtures/vcr/app_search/put_synonym_set.yml +0 -56
  207. data/spec/fixtures/vcr/app_search/search.yml +0 -57
  208. data/spec/fixtures/vcr/app_search/single_query_search.yml +0 -60
  209. data/spec/fixtures/vcr/app_search/synonym_set.yml +0 -56
  210. data/spec/integration/workplace_search_spec.rb +0 -253
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: elastic-enterprise-search
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.13.0
4
+ version: 7.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernando Briano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-25 00:00:00.000000000 Z
11
+ date: 2021-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: elasticsearch-transport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 7.13.0
19
+ version: '7.11'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 7.13.0
26
+ version: '7.11'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: jwt
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -165,14 +165,20 @@ files:
165
165
  - ".ci/functions/wait-for-container.sh"
166
166
  - ".ci/jobs/defaults.yml"
167
167
  - ".ci/jobs/elastic+enterprise-search-ruby+7.10.0.beta.1.yml"
168
- - ".ci/jobs/elastic+enterprise-search-ruby+master.yml"
168
+ - ".ci/jobs/elastic+enterprise-search-ruby+main.yml"
169
169
  - ".ci/jobs/elastic+enterprise-search-ruby+pull-request.yml"
170
+ - ".ci/make.sh"
170
171
  - ".ci/run-elasticsearch.sh"
171
172
  - ".ci/run-enterprise-search.sh"
172
173
  - ".ci/run-local.sh"
173
174
  - ".ci/run-repository.sh"
174
175
  - ".ci/run-tests"
175
176
  - ".ci/test-matrix.yml"
177
+ - ".github/check_license_headers.rb"
178
+ - ".github/compatibility/Gemfile"
179
+ - ".github/license-header.txt"
180
+ - ".github/workflows/compatibility.yml"
181
+ - ".github/workflows/license.yml"
176
182
  - ".github/workflows/rubocop.yml"
177
183
  - ".github/workflows/testing.yml"
178
184
  - ".gitignore"
@@ -193,6 +199,8 @@ files:
193
199
  - docs/guide/release_notes/711.asciidoc
194
200
  - docs/guide/release_notes/712.asciidoc
195
201
  - docs/guide/release_notes/713.asciidoc
202
+ - docs/guide/release_notes/714.asciidoc
203
+ - docs/guide/release_notes/715.asciidoc
196
204
  - docs/guide/release_notes/index.asciidoc
197
205
  - docs/guide/workplace-search-api.asciidoc
198
206
  - elastic-enterprise-search.gemspec
@@ -200,26 +208,65 @@ files:
200
208
  - lib/elastic-enterprise-search.rb
201
209
  - lib/elastic/.rubocop.yml
202
210
  - lib/elastic/app-search/api/add_meta_engine_source.rb
211
+ - lib/elastic/app-search/api/api_key.rb
203
212
  - lib/elastic/app-search/api/api_logs.rb
204
213
  - lib/elastic/app-search/api/count_analytics.rb
214
+ - lib/elastic/app-search/api/crawler_active_crawl_request.rb
215
+ - lib/elastic/app-search/api/crawler_crawl_request.rb
216
+ - lib/elastic/app-search/api/crawler_crawl_schedule.rb
217
+ - lib/elastic/app-search/api/crawler_domain.rb
218
+ - lib/elastic/app-search/api/crawler_domain_validation_result.rb
219
+ - lib/elastic/app-search/api/crawler_metrics.rb
220
+ - lib/elastic/app-search/api/crawler_overview.rb
221
+ - lib/elastic/app-search/api/crawler_process_crawl.rb
222
+ - lib/elastic/app-search/api/crawler_process_crawl_denied_urls.rb
223
+ - lib/elastic/app-search/api/crawler_url_extraction_result.rb
224
+ - lib/elastic/app-search/api/crawler_url_tracing_result.rb
225
+ - lib/elastic/app-search/api/crawler_url_validation_result.rb
226
+ - lib/elastic/app-search/api/crawler_user_agent.rb
227
+ - lib/elastic/app-search/api/create_api_key.rb
228
+ - lib/elastic/app-search/api/create_crawler_crawl_request.rb
229
+ - lib/elastic/app-search/api/create_crawler_crawl_rule.rb
230
+ - lib/elastic/app-search/api/create_crawler_domain.rb
231
+ - lib/elastic/app-search/api/create_crawler_entry_point.rb
232
+ - lib/elastic/app-search/api/create_crawler_process_crawl.rb
233
+ - lib/elastic/app-search/api/create_crawler_sitemap.rb
205
234
  - lib/elastic/app-search/api/create_curation.rb
206
235
  - lib/elastic/app-search/api/create_engine.rb
207
236
  - lib/elastic/app-search/api/create_synonym_set.rb
208
237
  - lib/elastic/app-search/api/curation.rb
238
+ - lib/elastic/app-search/api/delete_active_crawl_request.rb
239
+ - lib/elastic/app-search/api/delete_api_key.rb
240
+ - lib/elastic/app-search/api/delete_crawler_active_crawl_request.rb
241
+ - lib/elastic/app-search/api/delete_crawler_crawl_rule.rb
242
+ - lib/elastic/app-search/api/delete_crawler_crawl_schedule.rb
243
+ - lib/elastic/app-search/api/delete_crawler_domain.rb
244
+ - lib/elastic/app-search/api/delete_crawler_entry_point.rb
245
+ - lib/elastic/app-search/api/delete_crawler_sitemap.rb
209
246
  - lib/elastic/app-search/api/delete_curation.rb
210
247
  - lib/elastic/app-search/api/delete_documents.rb
211
248
  - lib/elastic/app-search/api/delete_engine.rb
212
249
  - lib/elastic/app-search/api/delete_meta_engine_source.rb
213
250
  - lib/elastic/app-search/api/delete_synonym_set.rb
251
+ - lib/elastic/app-search/api/denied_urls.rb
214
252
  - lib/elastic/app-search/api/documents.rb
215
253
  - lib/elastic/app-search/api/engine.rb
216
254
  - lib/elastic/app-search/api/index_documents.rb
255
+ - lib/elastic/app-search/api/list_api_keys.rb
256
+ - lib/elastic/app-search/api/list_crawler_crawl_requests.rb
257
+ - lib/elastic/app-search/api/list_crawler_process_crawls.rb
217
258
  - lib/elastic/app-search/api/list_curations.rb
218
259
  - lib/elastic/app-search/api/list_documents.rb
219
260
  - lib/elastic/app-search/api/list_engines.rb
220
261
  - lib/elastic/app-search/api/list_synonym_sets.rb
221
262
  - lib/elastic/app-search/api/log_clickthrough.rb
222
263
  - lib/elastic/app-search/api/multi_search.rb
264
+ - lib/elastic/app-search/api/put_api_key.rb
265
+ - lib/elastic/app-search/api/put_crawler_crawl_rule.rb
266
+ - lib/elastic/app-search/api/put_crawler_crawl_schedule.rb
267
+ - lib/elastic/app-search/api/put_crawler_domain.rb
268
+ - lib/elastic/app-search/api/put_crawler_entry_point.rb
269
+ - lib/elastic/app-search/api/put_crawler_sitemap.rb
223
270
  - lib/elastic/app-search/api/put_curation.rb
224
271
  - lib/elastic/app-search/api/put_documents.rb
225
272
  - lib/elastic/app-search/api/put_schema.rb
@@ -247,89 +294,86 @@ files:
247
294
  - lib/elastic/enterprise-search/version.rb
248
295
  - lib/elastic/enterprise_search.rb
249
296
  - lib/elastic/workplace-search/api/add_user_permissions.rb
297
+ - lib/elastic/workplace-search/api/auto_query_refinement_details.rb
298
+ - lib/elastic/workplace-search/api/command_sync_jobs.rb
250
299
  - lib/elastic/workplace-search/api/content_source.rb
251
300
  - lib/elastic/workplace-search/api/create_analytics_event.rb
301
+ - lib/elastic/workplace-search/api/create_batch_synonym_sets.rb
252
302
  - lib/elastic/workplace-search/api/create_content_source.rb
253
303
  - lib/elastic/workplace-search/api/create_external_identity.rb
304
+ - lib/elastic/workplace-search/api/current_user.rb
254
305
  - lib/elastic/workplace-search/api/delete_all_documents.rb
255
306
  - lib/elastic/workplace-search/api/delete_content_source.rb
256
307
  - lib/elastic/workplace-search/api/delete_documents.rb
308
+ - lib/elastic/workplace-search/api/delete_documents_by_query.rb
257
309
  - lib/elastic/workplace-search/api/delete_external_identity.rb
310
+ - lib/elastic/workplace-search/api/delete_synonym_set.rb
258
311
  - lib/elastic/workplace-search/api/document.rb
259
312
  - lib/elastic/workplace-search/api/external_identity.rb
260
313
  - lib/elastic/workplace-search/api/index_documents.rb
261
314
  - lib/elastic/workplace-search/api/list_content_sources.rb
262
315
  - lib/elastic/workplace-search/api/list_external_identities.rb
263
316
  - lib/elastic/workplace-search/api/list_permissions.rb
317
+ - lib/elastic/workplace-search/api/list_synonym_sets.rb
264
318
  - lib/elastic/workplace-search/api/put_content_source.rb
319
+ - lib/elastic/workplace-search/api/put_content_source_icons.rb
265
320
  - lib/elastic/workplace-search/api/put_external_identity.rb
321
+ - lib/elastic/workplace-search/api/put_synonym_set.rb
322
+ - lib/elastic/workplace-search/api/put_triggers_blocklist.rb
266
323
  - lib/elastic/workplace-search/api/put_user_permissions.rb
267
324
  - lib/elastic/workplace-search/api/remove_user_permissions.rb
268
325
  - lib/elastic/workplace-search/api/search.rb
326
+ - lib/elastic/workplace-search/api/synonym_set.rb
327
+ - lib/elastic/workplace-search/api/triggers_blocklist.rb
269
328
  - lib/elastic/workplace-search/api/user_permissions.rb
270
329
  - lib/elastic/workplace-search/workplace_search.rb
271
- - spec/app-search/api_count_analytics_spec.rb
272
- - spec/app-search/api_curations_spec.rb
273
- - spec/app-search/api_documents_spec.rb
274
- - spec/app-search/api_engines_spec.rb
275
- - spec/app-search/api_log_clickthrough_spec.rb
276
- - spec/app-search/api_logs_spec.rb
277
- - spec/app-search/api_meta_engines_spec.rb
278
- - spec/app-search/api_query_suggestion_spec.rb
279
- - spec/app-search/api_schema_spec.rb
280
- - spec/app-search/api_search_and_multi_search_spec.rb
281
- - spec/app-search/api_search_settings_spec.rb
282
- - spec/app-search/api_spec_helper.rb
283
- - spec/app-search/api_synonyms_spec.rb
284
- - spec/app-search/api_top_clicks_analytics_spec.rb
285
- - spec/app-search/api_top_queries_analytics_spec.rb
330
+ - rake_tasks/unified_release_tasks.rake
286
331
  - spec/app-search/client_spec.rb
287
332
  - spec/app-search/date_spec.rb
288
333
  - spec/enterprise-search/client_spec.rb
289
334
  - spec/enterprise-search/request_spec.rb
290
335
  - spec/enterprise-search/utils_spec.rb
291
- - spec/fixtures/vcr/app_search/add_meta_engine_source.yml
292
- - spec/fixtures/vcr/app_search/api_documents.yml
293
- - spec/fixtures/vcr/app_search/api_index_documents.yml
294
- - spec/fixtures/vcr/app_search/api_log_clickthrough.yml
295
- - spec/fixtures/vcr/app_search/api_logs.yml
296
- - spec/fixtures/vcr/app_search/api_put_schema.yml
297
- - spec/fixtures/vcr/app_search/api_put_search_settings.yml
298
- - spec/fixtures/vcr/app_search/api_query_suggestion.yml
299
- - spec/fixtures/vcr/app_search/api_reset_search_settings.yml
300
- - spec/fixtures/vcr/app_search/api_schema.yml
301
- - spec/fixtures/vcr/app_search/api_search_settings.yml
302
- - spec/fixtures/vcr/app_search/api_top_clicks_analytics.yml
303
- - spec/fixtures/vcr/app_search/api_top_clicks_analytics_query.yml
304
- - spec/fixtures/vcr/app_search/api_top_queries_analytics.yml
305
- - spec/fixtures/vcr/app_search/count_analytics.yml
306
- - spec/fixtures/vcr/app_search/create_and_update_document.yml
307
- - spec/fixtures/vcr/app_search/create_curation.yml
308
- - spec/fixtures/vcr/app_search/create_engine.yml
309
- - spec/fixtures/vcr/app_search/create_meta_engine.yml
310
- - spec/fixtures/vcr/app_search/create_synonym_set.yml
311
- - spec/fixtures/vcr/app_search/delete_curation.yml
312
- - spec/fixtures/vcr/app_search/delete_engine.yml
313
- - spec/fixtures/vcr/app_search/delete_meta_engine_source.yml
314
- - spec/fixtures/vcr/app_search/delete_synonym_set.yml
315
- - spec/fixtures/vcr/app_search/get_curation.yml
316
- - spec/fixtures/vcr/app_search/get_engine.yml
317
- - spec/fixtures/vcr/app_search/index_and_delete_document.yml
318
- - spec/fixtures/vcr/app_search/list_curations.yml
319
- - spec/fixtures/vcr/app_search/list_documents.yml
320
- - spec/fixtures/vcr/app_search/list_engines.yml
321
- - spec/fixtures/vcr/app_search/list_synonym_sets.yml
322
- - spec/fixtures/vcr/app_search/multi_query_search.yml
323
- - spec/fixtures/vcr/app_search/put_curation.yml
324
- - spec/fixtures/vcr/app_search/put_synonym_set.yml
325
- - spec/fixtures/vcr/app_search/search.yml
326
- - spec/fixtures/vcr/app_search/single_query_search.yml
327
- - spec/fixtures/vcr/app_search/synonym_set.yml
328
336
  - spec/fixtures/vcr/workplace_search/create_analytics_event.yml
329
337
  - spec/fixtures/vcr/workplace_search/oauth_request_token.yml
330
338
  - spec/fixtures/vcr/workplace_search/search_request.yml
339
+ - spec/integration/app-search/api_key_spec.rb
340
+ - spec/integration/app-search/api_logs_spec.rb
341
+ - spec/integration/app-search/app_search_helper.rb
342
+ - spec/integration/app-search/count_analytics_spec.rb
343
+ - spec/integration/app-search/crawl_requests_spec.rb
344
+ - spec/integration/app-search/crawler_crawl_rule_spec.rb
345
+ - spec/integration/app-search/crawler_domain_spec.rb
346
+ - spec/integration/app-search/crawler_entry_point_spec.rb
347
+ - spec/integration/app-search/crawler_metrics_spec.rb
348
+ - spec/integration/app-search/crawler_overview_spec.rb
349
+ - spec/integration/app-search/crawler_process_crawl_denied_urls_spec.rb
350
+ - spec/integration/app-search/crawler_process_crawl_spec.rb
351
+ - spec/integration/app-search/crawler_scheduling_spec.rb
352
+ - spec/integration/app-search/crawler_sitemap_spec.rb
353
+ - spec/integration/app-search/crawler_urls_spec.rb
354
+ - spec/integration/app-search/crawler_user_agent_spec.rb
355
+ - spec/integration/app-search/curations_spec.rb
356
+ - spec/integration/app-search/documents_spec.rb
357
+ - spec/integration/app-search/engines_spec.rb
358
+ - spec/integration/app-search/log_clickthrough_spec.rb
359
+ - spec/integration/app-search/meta_engines_spec.rb
360
+ - spec/integration/app-search/query_suggestion_spec.rb
361
+ - spec/integration/app-search/schema_spec.rb
362
+ - spec/integration/app-search/search_and_multiple_search_spec.rb
363
+ - spec/integration/app-search/search_settings_spec.rb
364
+ - spec/integration/app-search/synonyms_spec.rb
365
+ - spec/integration/app-search/top_clicks_analytics_spec.rb
366
+ - spec/integration/app-search/top_queries_analytics_spec.rb
331
367
  - spec/integration/enterprise_search_api_spec.rb
332
- - spec/integration/workplace_search_spec.rb
368
+ - spec/integration/workplace-search/content_sources_spec.rb
369
+ - spec/integration/workplace-search/documents_spec.rb
370
+ - spec/integration/workplace-search/external_identities_spec.rb
371
+ - spec/integration/workplace-search/icon.png
372
+ - spec/integration/workplace-search/permissions_spec.rb
373
+ - spec/integration/workplace-search/synonym_sets_spec.rb
374
+ - spec/integration/workplace-search/triggers_spec.rb
375
+ - spec/integration/workplace-search/users_spec.rb
376
+ - spec/integration/workplace-search/workplace_search_helper.rb
333
377
  - spec/spec_helper.rb
334
378
  - spec/webmock_requires.rb
335
379
  - spec/workplace-search/client_spec.rb
@@ -359,7 +403,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
359
403
  - !ruby/object:Gem::Version
360
404
  version: '0'
361
405
  requirements: []
362
- rubygems_version: 3.2.16
406
+ rubygems_version: 3.2.22
363
407
  signing_key:
364
408
  specification_version: 4
365
409
  summary: Official API client for Elastic Enterprise Search
@@ -1,97 +0,0 @@
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 'curations' do
24
- let(:engine_name) { 'books' }
25
-
26
- it 'creates a new curation' do
27
- VCR.use_cassette('app_search/create_curation') do
28
- response = @client.create_curation(
29
- engine_name,
30
- queries: ['jungle'],
31
- promoted: ['doc-600070f60e9e05e6b7037721'],
32
- hidden: ['doc-600070f60e9e05e6b7037729']
33
- )
34
- expect(response.status).to eq 200
35
- expect(response.body['id']).to match(/cur-[0-9a-f]+/)
36
-
37
- response = @client.search(engine_name, query: 'jungle')
38
- expect(response.status).to eq 200
39
- expect(response.body['results'].count).to eq 1
40
- expect(response.body['results'].first['title']['raw']).to eq 'Jungle Tales'
41
- end
42
- end
43
-
44
- it 'retrieves a curation by id' do
45
- VCR.use_cassette('app_search/get_curation') do
46
- response = @client.curation(engine_name, curation_id: 'cur-600202fa0e9e05e6b7037753')
47
-
48
- expect(response.status).to eq 200
49
- expect(response.body['id']).to match(/cur-[0-9a-f]+/)
50
- expect(response.body['queries']).to eq ['jungle']
51
- expect(response.body['promoted']).to eq ['doc-600070f60e9e05e6b7037721']
52
- expect(response.body['hidden']).to eq ['doc-600070f60e9e05e6b7037729']
53
- end
54
- end
55
-
56
- it 'updates an existing curation' do
57
- VCR.use_cassette('app_search/put_curation') do
58
- response = @client.put_curation(
59
- engine_name,
60
- curation_id: 'cur-600202fa0e9e05e6b7037753',
61
- queries: ['jungle'],
62
- promoted: ['doc-600070f60e9e05e6b7037729'],
63
- hidden: ['doc-600070f60e9e05e6b7037721']
64
- )
65
-
66
- expect(response.status).to eq 200
67
- expect(response.body['id']).to match(/cur-[0-9a-f]+/)
68
-
69
- response = @client.search(engine_name, query: 'jungle')
70
- expect(response.status).to eq 200
71
- expect(response.body['results'].count).to eq 1
72
- expect(response.body['results'].first['title']['raw']).to eq 'The Jungle Book'
73
- end
74
- end
75
-
76
- it 'lists curations' do
77
- VCR.use_cassette('app_search/list_curations') do
78
- response = @client.list_curations(engine_name)
79
-
80
- expect(response.status).to eq 200
81
- expect(response.body['results'].count).to eq 1
82
- curation = response.body['results'].first
83
- expect(curation['id']).to match(/cur-[0-9a-f]+/)
84
- expect(curation['queries']).to eq ['jungle']
85
- end
86
- end
87
-
88
- it 'deletes a curation' do
89
- VCR.use_cassette('app_search/delete_curation') do
90
- response = @client.delete_curation(engine_name, curation_id: 'cur-6002097c0e9e053992037769')
91
-
92
- expect(response.status).to eq 200
93
- expect(response.body).to eq({ 'deleted' => true })
94
- end
95
- end
96
- end
97
- end
@@ -1,102 +0,0 @@
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
- let(:engine_name) { 'videogames' }
24
-
25
- # TODO: Once we stop using VCR, we need to do create / list / destroy engines
26
-
27
- context 'documents' do
28
- it 'indexes and lists documents' do
29
- VCR.use_cassette('app_search/api_index_documents') do
30
- documents = [
31
- { name: 'Super Lorenzo Bros', year: 1985 },
32
- { name: 'Pack-Man', year: 1980 },
33
- { name: 'Galaxxian', year: 1979 },
34
- { name: 'Audiovisual, the hedgehog', year: '1991' }
35
- ]
36
- response = @client.index_documents(engine_name, documents: documents)
37
- expect(response.status).to eq 200
38
- expect(response.body.count).to eq 4
39
- expect(response.body.map(&:keys)).to eq [['id', 'errors'], ['id', 'errors'], ['id', 'errors'], ['id', 'errors']]
40
- end
41
-
42
- VCR.use_cassette('app_search/list_documents') do
43
- response = @client.list_documents(engine_name)
44
-
45
- expect(response.status).to eq 200
46
- expect(response.body['results'].count).to eq 4
47
- end
48
- end
49
-
50
- it 'retrieves documents by ID' do
51
- VCR.use_cassette('app_search/api_documents') do
52
- ids = ['doc-6005c044ad7f0c8b464b8cc4', 'doc-6005c044ad7f0c8b464b8cc3']
53
- response = @client.documents(engine_name, document_ids: ids)
54
-
55
- expect(response.status).to eq 200
56
- expect(response.body.count).to eq 2
57
- expect(response.body).to include(
58
- { 'name' => 'Galaxxian', 'year' => '1979', 'id' => 'doc-6005c044ad7f0c8b464b8cc4' },
59
- { 'name' => 'Pack-Man', 'year' => '1980', 'id' => 'doc-6005c044ad7f0c8b464b8cc3' }
60
- )
61
- end
62
- end
63
-
64
- it 'searches for a document' do
65
- VCR.use_cassette('app_search/search') do
66
- response = @client.search(engine_name, body: { query: 'Pack-Man' })
67
- expect(response.status).to eq 200
68
- expect(response.body['meta']['engine']).to eq({ 'name' => 'videogames', 'type' => 'default' })
69
- expect(response.body['results'].first['name']).to eq({ 'raw' => 'Pack-Man' })
70
- expect(response.body['results'].first['year']).to eq({ 'raw' => '1980' })
71
- end
72
- end
73
-
74
- it 'deletes a document' do
75
- VCR.use_cassette('app_search/index_and_delete_document') do
76
- document = { name: 'Princess Zelda', year: 1986 }
77
- response = @client.index_documents(engine_name, documents: document)
78
- expect(response.status).to eq 200
79
-
80
- id = response.body.first['id']
81
-
82
- response = @client.delete_documents(engine_name, document_ids: [id])
83
- expect(response.status).to eq 200
84
- expect(response.body.first['deleted'])
85
- end
86
- end
87
-
88
- it 'updates a document' do
89
- VCR.use_cassette('app_search/create_and_update_document') do
90
- document = { name: '', year: 1986 }
91
- response = @client.index_documents(engine_name, documents: document)
92
- expect(response.status).to eq 200
93
-
94
- id = response.body.first['id']
95
-
96
- response = @client.put_documents(engine_name, documents: [{ id: id, year: 1987 }])
97
- expect(response.status).to eq 200
98
- expect(response.body).to eq [{ 'id' => 'doc-5fa2d4e1389ab975965be3e3', 'errors' => [] }]
99
- end
100
- end
101
- end
102
- end
@@ -1,67 +0,0 @@
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
- let(:engine_name) { 'videogames' }
24
-
25
- # TODO: Once we stop using VCR, we need to do create / list / destroy engines
26
-
27
- context 'engines' do
28
- it 'creates an engine' do
29
- VCR.use_cassette('app_search/create_engine') do
30
- response = @client.create_engine(name: 'videogames')
31
-
32
- expect(response.status).to eq 200
33
- expect(response.body).to eq({ 'name' => 'videogames', 'type' => 'default', 'language' => nil })
34
- end
35
- end
36
-
37
- it 'lists engines' do
38
- VCR.use_cassette('app_search/list_engines') do
39
- response = @client.list_engines
40
-
41
- expect(response.status).to eq 200
42
- expect(response.body).to eq(
43
- { 'meta' => { 'page' => { 'current' => 1, 'total_pages' => 1, 'total_results' => 1, 'size' => 25 } },
44
- 'results' => [{ 'name' => 'videogames', 'type' => 'default', 'language' => nil }] }
45
- )
46
- end
47
- end
48
-
49
- it 'retrieves an engine by name' do
50
- VCR.use_cassette('app_search/get_engine') do
51
- response = @client.engine('videogames')
52
-
53
- expect(response.status).to eq 200
54
- expect(response.body).to eq({ 'name' => 'videogames', 'type' => 'default', 'language' => nil })
55
- end
56
- end
57
-
58
- it 'deletes an engine' do
59
- VCR.use_cassette('app_search/delete_engine') do
60
- response = @client.delete_engine('videogames')
61
-
62
- expect(response.status).to eq 200
63
- expect(response.body).to eq({ 'deleted' => true })
64
- end
65
- end
66
- end
67
- end
@@ -1,72 +0,0 @@
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
- let(:engine_name) { 'new-meta-engine' }
24
-
25
- # TODO: Once we stop using VCR, we need to do create / list / destroy engines
26
-
27
- context 'meta engines' do
28
- it 'creates a meta engine' do
29
- VCR.use_cassette('app_search/create_meta_engine') do
30
- body = {
31
- name: engine_name,
32
- type: 'meta',
33
- source_engines: ['books', 'videogames']
34
- }
35
- response = @client.create_engine(name: engine_name, body: body)
36
-
37
- expect(response.status).to eq 200
38
- expect(response.body['name']).to eq('new-meta-engine')
39
- expect(response.body['type']).to eq('meta')
40
- expect(response.body['source_engines'].sort).to eq(['books', 'videogames'])
41
- expect(response.body['document_count']).to be > 1
42
- end
43
- end
44
-
45
- it 'adds a new source engine to a meta engine' do
46
- VCR.use_cassette('app_search/add_meta_engine_source') do
47
- # Create new source engine to add:
48
- @client.create_engine(name: 'comicbooks')
49
-
50
- response = @client.add_meta_engine_source(engine_name, source_engines: ['comicbooks'])
51
-
52
- expect(response.status).to eq 200
53
- expect(response.body['name']).to eq('new-meta-engine')
54
- expect(response.body['type']).to eq('meta')
55
- expect(response.body['source_engines'].sort).to eq(['books', 'comicbooks', 'videogames'])
56
- expect(response.body['document_count']).to be > 1
57
- end
58
- end
59
-
60
- it 'removes a source engine from a meta engine' do
61
- VCR.use_cassette('app_search/delete_meta_engine_source') do
62
- response = @client.delete_meta_engine_source(engine_name, source_engines: ['videogames'])
63
-
64
- expect(response.status).to eq 200
65
- expect(response.body['name']).to eq('new-meta-engine')
66
- expect(response.body['type']).to eq('meta')
67
- expect(response.body['source_engines'].sort).to eq(['books', 'comicbooks'])
68
- expect(response.body['document_count']).to be > 1
69
- end
70
- end
71
- end
72
- end
@@ -1,48 +0,0 @@
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
- let(:engine_name) { 'books' }
24
-
25
- context 'single search' do
26
- it 'performs a single query search' do
27
- VCR.use_cassette('app_search/single_query_search') do
28
- response = @client.search(engine_name, query: 'Herman')
29
- expect(response.status).to eq 200
30
- expect(response.body).not_to be nil
31
- expect(response.body['results'].count).to be > 1
32
- end
33
- end
34
- end
35
-
36
- context 'multi query search' do
37
- it 'performs a multi query search' do
38
- VCR.use_cassette('app_search/multi_query_search') do
39
- response = @client.multi_search('books', body: [{ query: 'Herman' }, { query: 'Edgar' }])
40
- expect(response.status).to eq 200
41
- expect(response.body.class).to be Array
42
- expect(response.body.count).to be 2
43
- expect(response.body[0]['results']).to_not be nil
44
- expect(response.body[1]['results']).to_not be nil
45
- end
46
- end
47
- end
48
- end