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.
- checksums.yaml +4 -4
- data/.ci/functions/imports.sh +1 -0
- data/.ci/jobs/defaults.yml +4 -0
- data/.ci/jobs/{elastic+enterprise-search-ruby+master.yml → elastic+enterprise-search-ruby+main.yml} +4 -4
- data/.ci/make.sh +162 -0
- data/.ci/run-repository.sh +2 -1
- data/.ci/test-matrix.yml +5 -3
- data/.github/check_license_headers.rb +33 -0
- data/{spec/app-search/api_logs_spec.rb → .github/compatibility/Gemfile} +3 -16
- data/.github/license-header.txt +16 -0
- data/.github/workflows/compatibility.yml +20 -0
- data/.github/workflows/license.yml +13 -0
- data/.github/workflows/testing.yml +1 -1
- data/CONTRIBUTING.md +1 -1
- data/README.md +1 -1
- data/Rakefile +20 -0
- data/docs/guide/app-search-api.asciidoc +157 -1
- data/docs/guide/overview.asciidoc +3 -3
- data/docs/guide/release_notes/712.asciidoc +12 -0
- data/docs/guide/release_notes/714.asciidoc +33 -0
- data/docs/guide/release_notes/715.asciidoc +48 -0
- data/docs/guide/release_notes/index.asciidoc +4 -0
- data/docs/guide/workplace-search-api.asciidoc +69 -0
- data/elastic-enterprise-search.gemspec +1 -1
- data/lib/elastic/app-search/api/add_meta_engine_source.rb +3 -2
- data/lib/elastic/app-search/api/api_key.rb +52 -0
- data/lib/elastic/app-search/api/api_logs.rb +14 -13
- data/lib/elastic/app-search/api/count_analytics.rb +7 -6
- data/lib/elastic/app-search/api/crawler_active_crawl_request.rb +51 -0
- data/lib/elastic/app-search/api/crawler_crawl_request.rb +54 -0
- data/lib/elastic/app-search/api/crawler_crawl_schedule.rb +51 -0
- data/lib/elastic/app-search/api/crawler_domain.rb +54 -0
- data/lib/elastic/app-search/api/crawler_domain_validation_result.rb +48 -0
- data/lib/elastic/app-search/api/crawler_metrics.rb +48 -0
- data/lib/elastic/app-search/api/crawler_overview.rb +51 -0
- data/lib/elastic/app-search/api/crawler_process_crawl.rb +54 -0
- data/lib/elastic/app-search/api/crawler_process_crawl_denied_urls.rb +54 -0
- data/lib/elastic/app-search/api/crawler_url_extraction_result.rb +52 -0
- data/lib/elastic/app-search/api/crawler_url_tracing_result.rb +52 -0
- data/lib/elastic/app-search/api/crawler_url_validation_result.rb +52 -0
- data/lib/elastic/app-search/api/crawler_user_agent.rb +48 -0
- data/lib/elastic/app-search/api/create_api_key.rb +57 -0
- data/lib/elastic/app-search/api/create_crawler_crawl_request.rb +51 -0
- data/lib/elastic/app-search/api/create_crawler_crawl_rule.rb +59 -0
- data/lib/elastic/app-search/api/create_crawler_domain.rb +55 -0
- data/lib/elastic/app-search/api/create_crawler_entry_point.rb +56 -0
- data/lib/elastic/app-search/api/create_crawler_process_crawl.rb +53 -0
- data/lib/elastic/app-search/api/create_crawler_sitemap.rb +56 -0
- data/lib/elastic/app-search/api/create_curation.rb +7 -6
- data/lib/elastic/app-search/api/create_engine.rb +9 -7
- data/lib/elastic/app-search/api/create_synonym_set.rb +7 -4
- data/lib/elastic/app-search/api/curation.rb +4 -3
- data/lib/elastic/app-search/api/delete_active_crawl_request.rb +51 -0
- data/lib/elastic/app-search/api/delete_api_key.rb +52 -0
- data/lib/elastic/app-search/api/delete_crawler_active_crawl_request.rb +51 -0
- data/lib/elastic/app-search/api/delete_crawler_crawl_rule.rb +57 -0
- data/lib/elastic/app-search/api/delete_crawler_crawl_schedule.rb +51 -0
- data/lib/elastic/app-search/api/delete_crawler_domain.rb +54 -0
- data/lib/elastic/app-search/api/delete_crawler_entry_point.rb +57 -0
- data/lib/elastic/app-search/api/delete_crawler_sitemap.rb +57 -0
- data/lib/elastic/app-search/api/delete_curation.rb +4 -3
- data/lib/elastic/app-search/api/delete_documents.rb +2 -1
- data/lib/elastic/app-search/api/delete_engine.rb +3 -2
- data/lib/elastic/app-search/api/delete_meta_engine_source.rb +3 -3
- data/lib/elastic/app-search/api/delete_synonym_set.rb +4 -3
- data/lib/elastic/app-search/api/denied_urls.rb +54 -0
- data/lib/elastic/app-search/api/documents.rb +3 -2
- data/lib/elastic/app-search/api/engine.rb +3 -2
- data/lib/elastic/app-search/api/index_documents.rb +3 -2
- data/lib/elastic/app-search/api/list_api_keys.rb +50 -0
- data/lib/elastic/app-search/api/list_crawler_crawl_requests.rb +52 -0
- data/lib/elastic/app-search/api/list_crawler_process_crawls.rb +51 -0
- data/lib/elastic/app-search/api/list_curations.rb +3 -2
- data/lib/elastic/app-search/api/list_documents.rb +3 -2
- data/lib/elastic/app-search/api/list_engines.rb +2 -1
- data/lib/elastic/app-search/api/list_synonym_sets.rb +3 -2
- data/lib/elastic/app-search/api/log_clickthrough.rb +8 -10
- data/lib/elastic/app-search/api/put_api_key.rb +59 -0
- data/lib/elastic/app-search/api/put_crawler_crawl_rule.rb +62 -0
- data/lib/elastic/app-search/api/put_crawler_crawl_schedule.rb +53 -0
- data/lib/elastic/app-search/api/put_crawler_domain.rb +58 -0
- data/lib/elastic/app-search/api/put_crawler_entry_point.rb +59 -0
- data/lib/elastic/app-search/api/put_crawler_sitemap.rb +59 -0
- data/lib/elastic/app-search/api/put_curation.rb +9 -8
- data/lib/elastic/app-search/api/put_documents.rb +3 -3
- data/lib/elastic/app-search/api/put_schema.rb +4 -4
- data/lib/elastic/app-search/api/put_search_settings.rb +6 -2
- data/lib/elastic/app-search/api/put_synonym_set.rb +8 -5
- data/lib/elastic/app-search/api/query_suggestion.rb +7 -7
- data/lib/elastic/app-search/api/reset_search_settings.rb +3 -2
- data/lib/elastic/app-search/api/schema.rb +3 -2
- data/lib/elastic/app-search/api/search.rb +14 -3
- data/lib/elastic/app-search/api/search_settings.rb +3 -2
- data/lib/elastic/app-search/api/synonym_set.rb +4 -3
- data/lib/elastic/app-search/api/top_clicks_analytics.rb +8 -8
- data/lib/elastic/app-search/api/top_queries_analytics.rb +7 -7
- data/lib/elastic/app-search/app_search.rb +0 -10
- data/lib/elastic/enterprise-search/api/health.rb +1 -0
- data/lib/elastic/enterprise-search/api/put_read_only.rb +3 -2
- data/lib/elastic/enterprise-search/api/read_only.rb +1 -0
- data/lib/elastic/enterprise-search/api/version.rb +1 -0
- data/lib/elastic/enterprise-search/client.rb +12 -1
- data/lib/elastic/enterprise-search/request.rb +10 -1
- data/lib/elastic/enterprise-search/version.rb +1 -1
- data/lib/elastic/workplace-search/api/auto_query_refinement_details.rb +49 -0
- data/lib/elastic/workplace-search/api/command_sync_jobs.rb +53 -0
- data/lib/elastic/workplace-search/api/create_analytics_event.rb +7 -7
- data/lib/elastic/workplace-search/api/create_batch_synonym_sets.rb +50 -0
- data/lib/elastic/workplace-search/api/create_content_source.rb +5 -2
- data/lib/elastic/workplace-search/api/create_external_identity.rb +3 -3
- data/lib/elastic/workplace-search/api/current_user.rb +47 -0
- data/lib/elastic/workplace-search/api/delete_documents_by_query.rb +50 -0
- data/lib/elastic/workplace-search/api/delete_synonym_set.rb +51 -0
- data/lib/elastic/workplace-search/api/document.rb +1 -1
- data/lib/elastic/workplace-search/api/list_synonym_sets.rb +51 -0
- data/lib/elastic/workplace-search/api/put_content_source.rb +7 -4
- data/lib/elastic/workplace-search/api/put_content_source_icons.rb +53 -0
- data/lib/elastic/workplace-search/api/put_external_identity.rb +3 -3
- data/lib/elastic/workplace-search/api/put_synonym_set.rb +53 -0
- data/lib/elastic/workplace-search/api/put_triggers_blocklist.rb +47 -0
- data/lib/elastic/workplace-search/api/search.rb +4 -1
- data/lib/elastic/workplace-search/api/synonym_set.rb +51 -0
- data/lib/elastic/workplace-search/api/triggers_blocklist.rb +45 -0
- data/lib/elastic/workplace-search/workplace_search.rb +0 -15
- data/rake_tasks/unified_release_tasks.rake +46 -0
- data/spec/integration/app-search/api_key_spec.rb +110 -0
- data/spec/integration/app-search/api_logs_spec.rb +59 -0
- data/spec/integration/app-search/app_search_helper.rb +51 -0
- data/spec/integration/app-search/count_analytics_spec.rb +47 -0
- data/spec/integration/app-search/crawl_requests_spec.rb +86 -0
- data/spec/integration/app-search/crawler_crawl_rule_spec.rb +73 -0
- data/spec/integration/app-search/crawler_domain_spec.rb +82 -0
- data/spec/integration/app-search/crawler_entry_point_spec.rb +77 -0
- data/spec/integration/app-search/crawler_metrics_spec.rb +46 -0
- data/spec/integration/app-search/crawler_overview_spec.rb +45 -0
- data/spec/integration/app-search/crawler_process_crawl_denied_urls_spec.rb +50 -0
- data/spec/integration/app-search/crawler_process_crawl_spec.rb +66 -0
- data/spec/integration/app-search/crawler_scheduling_spec.rb +69 -0
- data/spec/integration/app-search/crawler_sitemap_spec.rb +72 -0
- data/spec/integration/app-search/crawler_urls_spec.rb +60 -0
- data/spec/{app-search/api_count_analytics_spec.rb → integration/app-search/crawler_user_agent_spec.rb} +6 -9
- data/spec/integration/app-search/curations_spec.rb +118 -0
- data/spec/integration/app-search/documents_spec.rb +123 -0
- data/spec/integration/app-search/engines_spec.rb +78 -0
- data/spec/{app-search/api_log_clickthrough_spec.rb → integration/app-search/log_clickthrough_spec.rb} +14 -7
- data/spec/integration/app-search/meta_engines_spec.rb +75 -0
- data/spec/integration/app-search/query_suggestion_spec.rb +50 -0
- data/spec/{app-search/api_schema_spec.rb → integration/app-search/schema_spec.rb} +21 -16
- data/spec/integration/app-search/search_and_multiple_search_spec.rb +67 -0
- data/spec/integration/app-search/search_settings_spec.rb +87 -0
- data/spec/integration/app-search/synonyms_spec.rb +79 -0
- data/spec/{app-search/api_top_clicks_analytics_spec.rb → integration/app-search/top_clicks_analytics_spec.rb} +20 -14
- data/spec/{app-search/api_top_queries_analytics_spec.rb → integration/app-search/top_queries_analytics_spec.rb} +16 -8
- data/spec/integration/workplace-search/content_sources_spec.rb +106 -0
- data/spec/integration/workplace-search/documents_spec.rb +95 -0
- data/spec/integration/workplace-search/external_identities_spec.rb +97 -0
- data/spec/integration/workplace-search/icon.png +0 -0
- data/spec/integration/workplace-search/permissions_spec.rb +77 -0
- data/spec/integration/workplace-search/synonym_sets_spec.rb +92 -0
- data/spec/integration/workplace-search/triggers_spec.rb +43 -0
- data/spec/{app-search/api_query_suggestion_spec.rb → integration/workplace-search/users_spec.rb} +12 -15
- data/spec/integration/workplace-search/workplace_search_helper.rb +39 -0
- data/spec/webmock_requires.rb +16 -0
- metadata +105 -61
- data/spec/app-search/api_curations_spec.rb +0 -97
- data/spec/app-search/api_documents_spec.rb +0 -102
- data/spec/app-search/api_engines_spec.rb +0 -67
- data/spec/app-search/api_meta_engines_spec.rb +0 -72
- data/spec/app-search/api_search_and_multi_search_spec.rb +0 -48
- data/spec/app-search/api_search_settings_spec.rb +0 -76
- data/spec/app-search/api_spec_helper.rb +0 -14
- data/spec/app-search/api_synonyms_spec.rb +0 -79
- data/spec/fixtures/vcr/app_search/add_meta_engine_source.yml +0 -109
- data/spec/fixtures/vcr/app_search/api_documents.yml +0 -56
- data/spec/fixtures/vcr/app_search/api_index_documents.yml +0 -57
- data/spec/fixtures/vcr/app_search/api_log_clickthrough.yml +0 -54
- data/spec/fixtures/vcr/app_search/api_logs.yml +0 -70
- data/spec/fixtures/vcr/app_search/api_put_schema.yml +0 -109
- data/spec/fixtures/vcr/app_search/api_put_search_settings.yml +0 -56
- data/spec/fixtures/vcr/app_search/api_query_suggestion.yml +0 -59
- data/spec/fixtures/vcr/app_search/api_reset_search_settings.yml +0 -56
- data/spec/fixtures/vcr/app_search/api_schema.yml +0 -56
- data/spec/fixtures/vcr/app_search/api_search_settings.yml +0 -56
- data/spec/fixtures/vcr/app_search/api_top_clicks_analytics.yml +0 -55
- data/spec/fixtures/vcr/app_search/api_top_clicks_analytics_query.yml +0 -55
- data/spec/fixtures/vcr/app_search/api_top_queries_analytics.yml +0 -55
- data/spec/fixtures/vcr/app_search/count_analytics.yml +0 -55
- data/spec/fixtures/vcr/app_search/create_and_update_document.yml +0 -107
- data/spec/fixtures/vcr/app_search/create_curation.yml +0 -113
- data/spec/fixtures/vcr/app_search/create_engine.yml +0 -55
- data/spec/fixtures/vcr/app_search/create_meta_engine.yml +0 -56
- data/spec/fixtures/vcr/app_search/create_synonym_set.yml +0 -56
- data/spec/fixtures/vcr/app_search/delete_curation.yml +0 -56
- data/spec/fixtures/vcr/app_search/delete_engine.yml +0 -55
- data/spec/fixtures/vcr/app_search/delete_meta_engine_source.yml +0 -56
- data/spec/fixtures/vcr/app_search/delete_synonym_set.yml +0 -56
- data/spec/fixtures/vcr/app_search/get_curation.yml +0 -56
- data/spec/fixtures/vcr/app_search/get_engine.yml +0 -55
- data/spec/fixtures/vcr/app_search/index_and_delete_document.yml +0 -107
- data/spec/fixtures/vcr/app_search/list_curations.yml +0 -56
- data/spec/fixtures/vcr/app_search/list_documents.yml +0 -57
- data/spec/fixtures/vcr/app_search/list_engines.yml +0 -55
- data/spec/fixtures/vcr/app_search/list_synonym_sets.yml +0 -56
- data/spec/fixtures/vcr/app_search/multi_query_search.yml +0 -63
- data/spec/fixtures/vcr/app_search/put_curation.yml +0 -113
- data/spec/fixtures/vcr/app_search/put_synonym_set.yml +0 -56
- data/spec/fixtures/vcr/app_search/search.yml +0 -57
- data/spec/fixtures/vcr/app_search/single_query_search.yml +0 -60
- data/spec/fixtures/vcr/app_search/synonym_set.yml +0 -56
- data/spec/integration/workplace_search_spec.rb +0 -253
@@ -1,56 +0,0 @@
|
|
1
|
-
---
|
2
|
-
http_interactions:
|
3
|
-
- request:
|
4
|
-
method: get
|
5
|
-
uri: http://localhost:3002/api/as/v1/engines/videogames/synonyms/id/?synonym_set_id=id
|
6
|
-
body:
|
7
|
-
encoding: UTF-8
|
8
|
-
string: "{}"
|
9
|
-
headers:
|
10
|
-
User-Agent:
|
11
|
-
- 'elastic-enteprise-search-ruby/7.11.0.pre (RUBY_VERSION: 2.7.2; linux x86_64;
|
12
|
-
elasticsearch-transport: 7.10.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.12.0
|
34
|
-
Content-Type:
|
35
|
-
- application/json;charset=utf-8
|
36
|
-
Vary:
|
37
|
-
- Accept-Encoding, User-Agent
|
38
|
-
- Origin
|
39
|
-
Etag:
|
40
|
-
- W/"73484e0e55190b38a77a06f0c93dcd27--gzip"
|
41
|
-
Cache-Control:
|
42
|
-
- max-age=0, private, must-revalidate
|
43
|
-
X-Request-Id:
|
44
|
-
- '04997dca-6669-40d8-804b-6dad2d222a94'
|
45
|
-
X-Runtime:
|
46
|
-
- '0.028868'
|
47
|
-
Transfer-Encoding:
|
48
|
-
- chunked
|
49
|
-
Server:
|
50
|
-
- Jetty(9.4.33.v20201020)
|
51
|
-
body:
|
52
|
-
encoding: ASCII-8BIT
|
53
|
-
string: '{"id":"id","synonyms":["joypad","gamepad"]}'
|
54
|
-
http_version:
|
55
|
-
recorded_at: Thu, 14 Jan 2021 11:06:02 GMT
|
56
|
-
recorded_with: VCR 3.0.3
|
@@ -1,253 +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 'spec_helper'
|
21
|
-
|
22
|
-
describe Elastic::EnterpriseSearch::WorkplaceSearch::Client do
|
23
|
-
let(:host) { ENV['ELASTIC_ENTERPRISE_HOST'] || 'http://localhost:3002' }
|
24
|
-
let(:http_auth) do
|
25
|
-
{
|
26
|
-
user: ENV['ELASTIC_ENTERPRISE_USER'] || 'enterprise_search',
|
27
|
-
password: ENV['ELASTIC_ENTERPRISE_PASSWORD'] || 'changeme'
|
28
|
-
}
|
29
|
-
end
|
30
|
-
let(:client) do
|
31
|
-
Elastic::EnterpriseSearch::WorkplaceSearch::Client.new(host: host, http_auth: http_auth)
|
32
|
-
end
|
33
|
-
let(:documents) do
|
34
|
-
[
|
35
|
-
{
|
36
|
-
'id' => '4e696e74656e646f203634',
|
37
|
-
'url' => 'https://www.elastic.co/blog/introducing-quick-start-guides-getting-started-with-elastic-enterprise-search-for-free',
|
38
|
-
'title' => 'Getting started with Elastic Enterprise Search for free',
|
39
|
-
'body' => 'this is a test'
|
40
|
-
},
|
41
|
-
{
|
42
|
-
'id' => '47616d6520426f7920436f6c6f72',
|
43
|
-
'url' => 'https://www.elastic.co/workplace-search',
|
44
|
-
'title' => 'One-stop answer shop for the virtual workplace',
|
45
|
-
'body' => 'this is also a test'
|
46
|
-
}
|
47
|
-
]
|
48
|
-
end
|
49
|
-
|
50
|
-
context 'Content Sources' do
|
51
|
-
it 'creates, retrieves and deletes authenticated with basic auth' do
|
52
|
-
# Create a content source and get its id
|
53
|
-
response = client.create_content_source(name: 'test')
|
54
|
-
expect(response.status).to eq 200
|
55
|
-
expect(response.body['id'])
|
56
|
-
id = response.body['id']
|
57
|
-
|
58
|
-
# Test we get the content source information with get_content_source
|
59
|
-
response = client.content_source(id)
|
60
|
-
expect(response.status).to eq 200
|
61
|
-
|
62
|
-
# List all content sources
|
63
|
-
response = client.list_content_sources
|
64
|
-
expect(response.status).to eq 200
|
65
|
-
expect(response.body['results'].count).to be >= 1
|
66
|
-
|
67
|
-
# Delete content source
|
68
|
-
response = client.delete_content_source(id)
|
69
|
-
expect(response.status).to eq 200
|
70
|
-
end
|
71
|
-
|
72
|
-
it 'creates and updates' do
|
73
|
-
response = client.create_content_source(name: 'ruby_client_app')
|
74
|
-
expect(response.status).to eq 200
|
75
|
-
id = response.body['id']
|
76
|
-
|
77
|
-
documents = [{ title: 'My first Document', body: 'Content', url: 'elastic.co' }]
|
78
|
-
response = client.index_documents(id, documents: documents)
|
79
|
-
expect(response.status).to eq 200
|
80
|
-
|
81
|
-
new_name = 'ruby_client'
|
82
|
-
body = {
|
83
|
-
name: new_name,
|
84
|
-
schema: { title: 'text', body: 'text', url: 'text' },
|
85
|
-
display: { title_field: 'title', url_field: 'url', color: '#f00f00' },
|
86
|
-
is_searchable: true
|
87
|
-
}
|
88
|
-
response = client.put_content_source(id, body: body)
|
89
|
-
expect(response.status).to eq 200
|
90
|
-
|
91
|
-
response = client.content_source(id)
|
92
|
-
expect(response.status).to eq 200
|
93
|
-
expect(response.body['name']) == new_name
|
94
|
-
end
|
95
|
-
end
|
96
|
-
|
97
|
-
context 'Documents' do
|
98
|
-
let(:content_source_id) do
|
99
|
-
client.create_content_source(name: 'test').body['id']
|
100
|
-
end
|
101
|
-
|
102
|
-
it 'indexes' do
|
103
|
-
response = client.index_documents(content_source_id, documents: documents)
|
104
|
-
expect(response.status).to eq 200
|
105
|
-
end
|
106
|
-
|
107
|
-
it 'deletes' do
|
108
|
-
response = client.delete_documents(content_source_id, document_ids: documents.map { |doc| doc['id'] })
|
109
|
-
expect(response.status).to eq 200
|
110
|
-
end
|
111
|
-
end
|
112
|
-
|
113
|
-
context 'Documents in Content Sources' do
|
114
|
-
let(:content_source_id) { client.create_content_source(name: 'books').body['id'] }
|
115
|
-
let(:document_id) { client.index_documents(content_source_id, documents: documents).body['results'].first['id'] }
|
116
|
-
|
117
|
-
it 'Gets a document in a content source' do
|
118
|
-
response = client.document(content_source_id, document_id: document_id)
|
119
|
-
expect(response.status).to eq 200
|
120
|
-
expect(response.body['id']).to eq document_id
|
121
|
-
end
|
122
|
-
|
123
|
-
it 'Deletes all documents in a content source' do
|
124
|
-
response = client.delete_all_documents(content_source_id)
|
125
|
-
expect(response.status).to eq 200
|
126
|
-
end
|
127
|
-
end
|
128
|
-
|
129
|
-
context 'External Identities' do
|
130
|
-
let(:content_source_id) { client.create_content_source(name: 'my_content').body['id'] }
|
131
|
-
let(:user) { 'elastic_user' }
|
132
|
-
let(:source_user_id) { 'example@elastic.co' }
|
133
|
-
let(:body) do
|
134
|
-
{ user: user, source_user_id: source_user_id }
|
135
|
-
end
|
136
|
-
|
137
|
-
context 'Creates' do
|
138
|
-
let(:source_user_id) { 'test@elastic.co' }
|
139
|
-
let(:user) { 'test' }
|
140
|
-
|
141
|
-
it 'creates an external identity' do
|
142
|
-
response = client.create_external_identity(content_source_id, body: body)
|
143
|
-
|
144
|
-
expect(response.status).to eq 200
|
145
|
-
expect(response.body).to eq({ 'source_user_id' => source_user_id, 'user' => user })
|
146
|
-
|
147
|
-
client.delete_external_identity(content_source_id, user: user)
|
148
|
-
end
|
149
|
-
|
150
|
-
it 'creates and retrieves' do
|
151
|
-
client.create_external_identity(content_source_id, body: body)
|
152
|
-
response = client.external_identity(content_source_id, user: user)
|
153
|
-
|
154
|
-
expect(response.status).to eq 200
|
155
|
-
expect(response.body).to eq({ 'source_user_id' => source_user_id, 'user' => user })
|
156
|
-
client.delete_external_identity(content_source_id, user: user)
|
157
|
-
end
|
158
|
-
end
|
159
|
-
|
160
|
-
context 'Lists' do
|
161
|
-
let(:user) { 'lists_test' }
|
162
|
-
|
163
|
-
it 'lists external identities' do
|
164
|
-
client.create_external_identity(content_source_id, body: body)
|
165
|
-
response = client.list_external_identities(content_source_id)
|
166
|
-
|
167
|
-
expect(response.status).to eq 200
|
168
|
-
expect(response.body['results']).to eq([{ 'source_user_id' => source_user_id, 'user' => user }])
|
169
|
-
client.delete_external_identity(content_source_id, user: user)
|
170
|
-
end
|
171
|
-
end
|
172
|
-
|
173
|
-
context 'Updates' do
|
174
|
-
before do
|
175
|
-
client.create_external_identity(content_source_id, body: body)
|
176
|
-
end
|
177
|
-
|
178
|
-
it 'updates an external identity' do
|
179
|
-
body = { source_user_id: 'example2@elastic.co' }
|
180
|
-
response = client.put_external_identity(content_source_id, user: user, body: body)
|
181
|
-
|
182
|
-
expect(response.status).to eq 200
|
183
|
-
expect(response.body).to eq({ 'source_user_id' => 'example2@elastic.co', 'user' => user })
|
184
|
-
end
|
185
|
-
end
|
186
|
-
|
187
|
-
context 'Deletes' do
|
188
|
-
before do
|
189
|
-
client.create_external_identity(content_source_id, body: body)
|
190
|
-
end
|
191
|
-
|
192
|
-
it 'deletes an external identity' do
|
193
|
-
response = client.delete_external_identity(content_source_id, user: user)
|
194
|
-
expect(response.status).to eq 200
|
195
|
-
expect(response.body).to eq 'ok'
|
196
|
-
end
|
197
|
-
end
|
198
|
-
end
|
199
|
-
|
200
|
-
context 'Permissions' do
|
201
|
-
let(:content_source_id) { client.create_content_source(name: 'my_content').body['id'] }
|
202
|
-
let(:user) { 'enterprise_search' }
|
203
|
-
let(:permissions) { ['permission1', 'permission2'] }
|
204
|
-
|
205
|
-
after do
|
206
|
-
client.put_user_permissions(content_source_id, { permissions: [], user: user })
|
207
|
-
end
|
208
|
-
|
209
|
-
it 'adds permissions to a user' do
|
210
|
-
response = client.add_user_permissions(
|
211
|
-
content_source_id,
|
212
|
-
{ permissions: permissions, user: user }
|
213
|
-
)
|
214
|
-
expect(response.status).to eq 200
|
215
|
-
expect(response.body).to eq({ 'user' => 'enterprise_search', 'permissions' => ['permission1', 'permission2'] })
|
216
|
-
end
|
217
|
-
|
218
|
-
it 'removes permissions from a user' do
|
219
|
-
client.add_user_permissions(content_source_id, { permissions: permissions, user: user })
|
220
|
-
|
221
|
-
# Removes Permissions
|
222
|
-
response = client.remove_user_permissions(
|
223
|
-
content_source_id,
|
224
|
-
{ permissions: permissions, user: user }
|
225
|
-
)
|
226
|
-
expect(response.status).to eq 200
|
227
|
-
expect(response.body).to eq({ 'user' => 'enterprise_search', 'permissions' => [] })
|
228
|
-
end
|
229
|
-
|
230
|
-
it 'lists permissions' do
|
231
|
-
response = client.list_permissions(content_source_id)
|
232
|
-
expect(response.status).to eq 200
|
233
|
-
end
|
234
|
-
|
235
|
-
it 'gets a user\'s permissions' do
|
236
|
-
client.add_user_permissions(content_source_id, { permissions: permissions, user: user })
|
237
|
-
response = client.user_permissions(content_source_id, { user: user })
|
238
|
-
expect(response.status).to eq 200
|
239
|
-
expect(response.body).to eq({ 'user' => 'enterprise_search', 'permissions' => permissions })
|
240
|
-
end
|
241
|
-
|
242
|
-
it 'updates a user\'s permissions' do
|
243
|
-
permissions = ['testing', 'more', 'permissions']
|
244
|
-
response = client.add_user_permissions(content_source_id, { permissions: permissions, user: user })
|
245
|
-
expect(response.status).to eq 200
|
246
|
-
expect(response.body).to eq({ 'user' => 'enterprise_search', 'permissions' => permissions })
|
247
|
-
|
248
|
-
response = client.put_user_permissions(content_source_id, { permissions: [], user: user })
|
249
|
-
expect(response.status).to eq 200
|
250
|
-
expect(response.body).to eq({ 'user' => 'enterprise_search', 'permissions' => [] })
|
251
|
-
end
|
252
|
-
end
|
253
|
-
end
|