elastic-enterprise-search 7.12.1 → 7.15.0
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+7.10.0.beta.1.yml +12 -0
- data/.ci/jobs/{elastic+enterprise-search-ruby+7.11.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/{spec/app-search/api_logs_spec.rb → .github/check_license_headers.rb} +13 -16
- data/.github/license-header.txt +16 -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/connecting.asciidoc +47 -1
- data/docs/guide/overview.asciidoc +3 -3
- data/docs/guide/release_notes/712.asciidoc +0 -10
- data/docs/guide/release_notes/713.asciidoc +21 -0
- data/docs/guide/release_notes/714.asciidoc +21 -0
- data/docs/guide/release_notes/715.asciidoc +36 -0
- data/docs/guide/release_notes/index.asciidoc +6 -0
- data/docs/guide/workplace-search-api.asciidoc +115 -2
- 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 -0
- 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 +0 -16
- data/lib/elastic/enterprise-search/request.rb +14 -3
- data/lib/elastic/enterprise-search/version.rb +1 -1
- data/lib/elastic/enterprise_search.rb +11 -0
- 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/content_source.rb +49 -0
- data/lib/elastic/workplace-search/api/create_analytics_event.rb +8 -8
- data/lib/elastic/workplace-search/api/create_batch_synonym_sets.rb +50 -0
- data/lib/elastic/workplace-search/api/create_content_source.rb +55 -0
- data/lib/elastic/workplace-search/api/create_external_identity.rb +3 -1
- data/lib/elastic/workplace-search/api/current_user.rb +47 -0
- data/lib/elastic/workplace-search/api/delete_all_documents.rb +49 -0
- data/lib/elastic/workplace-search/api/delete_content_source.rb +49 -0
- data/lib/elastic/workplace-search/api/delete_documents.rb +1 -1
- 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 +53 -0
- data/lib/elastic/workplace-search/api/list_content_sources.rb +48 -0
- data/lib/elastic/workplace-search/api/list_synonym_sets.rb +51 -0
- data/lib/elastic/workplace-search/api/put_content_source.rb +58 -0
- data/lib/elastic/workplace-search/api/put_content_source_icons.rb +53 -0
- data/lib/elastic/workplace-search/api/put_external_identity.rb +3 -1
- 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 -10
- data/rake_tasks/unified_release_tasks.rake +46 -0
- data/spec/enterprise-search/client_spec.rb +0 -1
- data/spec/enterprise-search/request_spec.rb +26 -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 +39 -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 +89 -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 +81 -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 +77 -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/enterprise_search_api_spec.rb +4 -0
- data/spec/integration/workplace-search/content_sources_spec.rb +106 -0
- data/spec/integration/workplace-search/documents_spec.rb +95 -0
- data/spec/{workplace-search → integration/workplace-search}/external_identities_spec.rb +37 -24
- 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
- data/spec/workplace-search/client_spec.rb +24 -2
- metadata +112 -83
- data/.ci/jobs/elastic+enterprise-search-ruby+master.yml +0 -12
- 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/fixtures/vcr/workplace_search/add_user_permissions.yml +0 -53
- data/spec/fixtures/vcr/workplace_search/clear_user_permissions.yml +0 -53
- data/spec/fixtures/vcr/workplace_search/create_external_identity.yml +0 -53
- data/spec/fixtures/vcr/workplace_search/delete_documents.yml +0 -53
- data/spec/fixtures/vcr/workplace_search/delete_external_identity.yml +0 -53
- data/spec/fixtures/vcr/workplace_search/index_documents.yml +0 -55
- data/spec/fixtures/vcr/workplace_search/list_external_identities.yml +0 -53
- data/spec/fixtures/vcr/workplace_search/list_permissions.yml +0 -53
- data/spec/fixtures/vcr/workplace_search/put_external_identity.yml +0 -53
- data/spec/fixtures/vcr/workplace_search/put_user_permissions.yml +0 -103
- data/spec/fixtures/vcr/workplace_search/remove_user_permissions.yml +0 -53
- data/spec/fixtures/vcr/workplace_search/retrieve_external_identity.yml +0 -53
- data/spec/fixtures/vcr/workplace_search/user_permissions_empty.yml +0 -53
- data/spec/workplace-search/documents_spec.rb +0 -80
- data/spec/workplace-search/permissions_spec.rb +0 -136
@@ -0,0 +1,39 @@
|
|
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
|
+
# App Search Integration tests Client Configuration
|
23
|
+
def client
|
24
|
+
@client ||= Elastic::EnterpriseSearch::AppSearch::Client.new(
|
25
|
+
host: ENV['ELASTIC_ENTERPRISE_HOST'] || 'http://localhost:3002',
|
26
|
+
http_auth: {
|
27
|
+
user: ENV['ELASTIC_ENTERPRISE_USER'] || 'enterprise_search',
|
28
|
+
password: ENV['ELASTIC_ENTERPRISE_PASSWORD'] || 'changeme'
|
29
|
+
}
|
30
|
+
)
|
31
|
+
end
|
32
|
+
|
33
|
+
def delete_engines
|
34
|
+
engines = client.list_engines.body['results']
|
35
|
+
engines.each do |engine|
|
36
|
+
client.delete_engine(engine['name'])
|
37
|
+
end
|
38
|
+
sleep 1
|
39
|
+
end
|
@@ -0,0 +1,47 @@
|
|
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 "#{__dir__}/app_search_helper.rb"
|
21
|
+
describe Elastic::EnterpriseSearch::AppSearch::Client do
|
22
|
+
context 'Count Analytics' do
|
23
|
+
let(:engine_name) { 'count-analytics' }
|
24
|
+
|
25
|
+
before do
|
26
|
+
client.create_engine(name: engine_name)
|
27
|
+
sleep 1
|
28
|
+
end
|
29
|
+
|
30
|
+
after do
|
31
|
+
delete_engines
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'returns count analytics' do
|
35
|
+
response = client.count_analytics(engine_name)
|
36
|
+
|
37
|
+
expect(response.status).to eq 200
|
38
|
+
expect(response.body['results'].count).to be > 1
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'returns count analytics with filters' do
|
42
|
+
response = client.count_analytics(engine_name, body: { filters: { tag: 'web' } })
|
43
|
+
expect(response.status).to eq 200
|
44
|
+
expect(response.body['results'].count).to be > 1
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,86 @@
|
|
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 "#{__dir__}/app_search_helper.rb"
|
21
|
+
|
22
|
+
describe Elastic::EnterpriseSearch::AppSearch::Client do
|
23
|
+
context 'Crawler crawl requests' do
|
24
|
+
let(:engine_name) { 'crawler-requests' }
|
25
|
+
let(:name) { 'https://www.elastic.co' }
|
26
|
+
|
27
|
+
before do
|
28
|
+
client.create_engine(name: engine_name)
|
29
|
+
body = { name: name }
|
30
|
+
response = client.create_crawler_domain(engine_name, body: body)
|
31
|
+
@domain = response.body
|
32
|
+
end
|
33
|
+
|
34
|
+
after do
|
35
|
+
client.delete_crawler_active_crawl_request(engine_name)
|
36
|
+
delete_engines
|
37
|
+
end
|
38
|
+
|
39
|
+
it 'creates, gets, lists and deletes a crawl request' do
|
40
|
+
response = client.create_crawler_crawl_request(engine_name)
|
41
|
+
|
42
|
+
expect(response.status).to eq 200
|
43
|
+
expect(response.body.keys).to include('status')
|
44
|
+
expect(response.body.keys).to include('id')
|
45
|
+
request_id = response.body['id']
|
46
|
+
|
47
|
+
# get crawl request
|
48
|
+
response = client.crawler_crawl_request(engine_name, crawl_request_id: request_id)
|
49
|
+
expect(response.status).to eq 200
|
50
|
+
expect(response.body.keys).to include('status')
|
51
|
+
expect(response.body.keys).to include('id')
|
52
|
+
|
53
|
+
# get active crawl request details
|
54
|
+
response = client.crawler_active_crawl_request(engine_name)
|
55
|
+
expect(response.status).to eq 200
|
56
|
+
expect(response.body.keys).to include('status')
|
57
|
+
expect(response.body.keys).to include('id')
|
58
|
+
|
59
|
+
attempts = 0
|
60
|
+
while response.body['status'] != 'running' && attempts < 20
|
61
|
+
sleep 1
|
62
|
+
attempts += 1
|
63
|
+
response = client.crawler_active_crawl_request(engine_name)
|
64
|
+
end
|
65
|
+
expect(response.body['status']).to eq 'running'
|
66
|
+
|
67
|
+
# list crawl requests
|
68
|
+
response = client.list_crawler_crawl_requests(engine_name)
|
69
|
+
expect(response.status).to eq 200
|
70
|
+
|
71
|
+
# delete active crawl request
|
72
|
+
response = client.delete_active_crawl_request(engine_name)
|
73
|
+
expect(response.status).to eq 200
|
74
|
+
end
|
75
|
+
|
76
|
+
it 'creates, starts and stops a crawl request' do
|
77
|
+
response = client.create_crawler_crawl_request(engine_name)
|
78
|
+
request_id = response.body['id']
|
79
|
+
|
80
|
+
response = client.delete_crawler_active_crawl_request(engine_name)
|
81
|
+
expect(response.status).to eq 200
|
82
|
+
expect(response.body['id']).to eq request_id
|
83
|
+
expect(response.body['status']).to eq('canceling')
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
@@ -0,0 +1,73 @@
|
|
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 "#{__dir__}/app_search_helper.rb"
|
21
|
+
|
22
|
+
describe Elastic::EnterpriseSearch::AppSearch::Client do
|
23
|
+
context 'Crawler crawl rules' do
|
24
|
+
let(:engine_name) { 'crawler-crawl-rule' }
|
25
|
+
let(:name) { 'https://www.elastic.co' }
|
26
|
+
|
27
|
+
before do
|
28
|
+
client.create_engine(name: engine_name)
|
29
|
+
body = { name: name }
|
30
|
+
response = client.create_crawler_domain(engine_name, body: body)
|
31
|
+
@domain = response.body
|
32
|
+
end
|
33
|
+
|
34
|
+
after do
|
35
|
+
client.delete_engine(engine_name)
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'creates, updates and deletes a rule' do
|
39
|
+
# Create a crawler crawl rule
|
40
|
+
body = { order: 1, policy: 'allow', rule: 'contains', pattern: '/stack' }
|
41
|
+
response = client.create_crawler_crawl_rule(engine_name, domain_id: @domain['id'], body: body)
|
42
|
+
expect(response.status).to eq 200
|
43
|
+
rule_id = response.body['id']
|
44
|
+
expect(response.body['order']).to eq 1
|
45
|
+
expect(response.body['policy']).to eq 'allow'
|
46
|
+
expect(response.body['rule']).to eq 'contains'
|
47
|
+
expect(response.body['pattern']).to eq '/stack'
|
48
|
+
|
49
|
+
# Update a crawler crawl rule
|
50
|
+
body = { order: 2, policy: 'allow', rule: 'begins', pattern: '/stack' }
|
51
|
+
response = client.put_crawler_crawl_rule(
|
52
|
+
engine_name,
|
53
|
+
domain_id: @domain['id'],
|
54
|
+
crawl_rule_id: rule_id,
|
55
|
+
body: body
|
56
|
+
)
|
57
|
+
expect(response.status).to eq 200
|
58
|
+
expect(response.body['order']).to eq 2
|
59
|
+
expect(response.body['policy']).to eq 'allow'
|
60
|
+
expect(response.body['rule']).to eq 'begins'
|
61
|
+
expect(response.body['pattern']).to eq '/stack'
|
62
|
+
|
63
|
+
# Delete a crawler crawl rule
|
64
|
+
response = client.delete_crawler_crawl_rule(
|
65
|
+
engine_name,
|
66
|
+
domain_id: @domain['id'],
|
67
|
+
crawl_rule_id: rule_id
|
68
|
+
)
|
69
|
+
expect(response.status).to eq 200
|
70
|
+
expect(response.body).to eq({ 'deleted' => true })
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
@@ -0,0 +1,82 @@
|
|
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 "#{__dir__}/app_search_helper.rb"
|
21
|
+
|
22
|
+
describe Elastic::EnterpriseSearch::AppSearch::Client do
|
23
|
+
context 'Crawler Domain' do
|
24
|
+
let(:engine_name) { 'crawler' }
|
25
|
+
let(:name) { 'https://www.elastic.co' }
|
26
|
+
|
27
|
+
before do
|
28
|
+
client.create_engine(name: engine_name)
|
29
|
+
end
|
30
|
+
|
31
|
+
after do
|
32
|
+
client.delete_crawler_domain(engine_name, domain_id: @domain['id'])
|
33
|
+
client.delete_engine(engine_name)
|
34
|
+
sleep 1
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'creates and gets a crawler domain' do
|
38
|
+
body = { name: name }
|
39
|
+
response = client.create_crawler_domain(engine_name, body: body)
|
40
|
+
@domain = response.body
|
41
|
+
|
42
|
+
expect(response.status).to eq 200
|
43
|
+
expect(response.body['id']).to eq @domain['id']
|
44
|
+
expect(response.body).to include('name' => name)
|
45
|
+
|
46
|
+
# client.crawler_domain
|
47
|
+
response = client.crawler_domain(engine_name, domain_id: @domain['id'])
|
48
|
+
expect(response.status).to eq 200
|
49
|
+
expect(response.body['id']).to eq @domain['id']
|
50
|
+
expect(response.body).to include('name' => name)
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'creates and updates a crawler domain' do
|
54
|
+
body = { name: name }
|
55
|
+
response = client.create_crawler_domain(engine_name, body: body)
|
56
|
+
@domain = response.body
|
57
|
+
|
58
|
+
expect(response.status).to eq 200
|
59
|
+
expect(response.body['id']).to eq @domain['id']
|
60
|
+
expect(response.body).to include('name' => name)
|
61
|
+
|
62
|
+
new_name = 'https://www.wikipedia.org'
|
63
|
+
body = { name: new_name }
|
64
|
+
response = client.put_crawler_domain(engine_name, domain_id: @domain['id'], domain: body)
|
65
|
+
|
66
|
+
expect(response.status).to eq 200
|
67
|
+
expect(response.body['id']).to eq @domain['id']
|
68
|
+
expect(response.body).to include('name' => new_name)
|
69
|
+
end
|
70
|
+
|
71
|
+
it 'validates a domain' do
|
72
|
+
body = { name: name }
|
73
|
+
@domain = client.create_crawler_domain(engine_name, body: body).body
|
74
|
+
body = { url: name }
|
75
|
+
response = client.crawler_domain_validation_result(body: body)
|
76
|
+
|
77
|
+
expect(response.status).to eq 200
|
78
|
+
expect(response.body['url']).to eq name
|
79
|
+
expect(response.body['valid']).to eq true
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
@@ -0,0 +1,89 @@
|
|
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 "#{__dir__}/app_search_helper.rb"
|
21
|
+
|
22
|
+
describe Elastic::EnterpriseSearch::AppSearch::Client do
|
23
|
+
context 'Crawler entry point' do
|
24
|
+
let(:engine_name) { 'crawler-entry-point' }
|
25
|
+
let(:name) { 'https://www.elastic.co' }
|
26
|
+
|
27
|
+
before do
|
28
|
+
attempts = 0
|
29
|
+
loop do
|
30
|
+
attempts += 1
|
31
|
+
client.create_engine(name: engine_name)
|
32
|
+
break if attempts > 9
|
33
|
+
rescue Elasticsearch::Transport::Transport::Errors::BadRequest => e
|
34
|
+
if e.message.match?(/Name is already taken/)
|
35
|
+
sleep 1
|
36
|
+
next
|
37
|
+
end
|
38
|
+
else
|
39
|
+
break
|
40
|
+
end
|
41
|
+
body = { name: name }
|
42
|
+
response = client.create_crawler_domain(engine_name, body: body)
|
43
|
+
@domain = response.body
|
44
|
+
end
|
45
|
+
|
46
|
+
after do
|
47
|
+
client.delete_engine(engine_name)
|
48
|
+
end
|
49
|
+
|
50
|
+
it 'creates an entry point' do
|
51
|
+
value = '/enterprise-search'
|
52
|
+
body = { value: value }
|
53
|
+
response = client.create_crawler_entry_point(engine_name, domain_id: @domain['id'], body: body)
|
54
|
+
expect(response.status).to eq 200
|
55
|
+
expect(response.body.keys).to eq(['id', 'value', 'created_at'])
|
56
|
+
expect(response.body['value']).to eq value
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'updates an entry point' do
|
60
|
+
value = '/elastic-stack'
|
61
|
+
body = { value: value }
|
62
|
+
@entry_point = client.create_crawler_entry_point(engine_name, domain_id: @domain['id'], body: body).body
|
63
|
+
|
64
|
+
response = client.put_crawler_entry_point(
|
65
|
+
engine_name,
|
66
|
+
domain_id: @domain['id'],
|
67
|
+
entry_point_id: @entry_point['id'],
|
68
|
+
body: body
|
69
|
+
)
|
70
|
+
expect(response.status).to eq 200
|
71
|
+
expect(response.body.keys).to eq(['id', 'value', 'created_at'])
|
72
|
+
expect(response.body['value']).to eq value
|
73
|
+
end
|
74
|
+
|
75
|
+
it 'deletes an entry point' do
|
76
|
+
value = '/security'
|
77
|
+
body = { value: value }
|
78
|
+
@entry_point = client.create_crawler_entry_point(engine_name, domain_id: @domain['id'], body: body).body
|
79
|
+
|
80
|
+
response = client.delete_crawler_entry_point(
|
81
|
+
engine_name,
|
82
|
+
domain_id: @domain['id'],
|
83
|
+
entry_point_id: @entry_point['id']
|
84
|
+
)
|
85
|
+
expect(response.status).to eq 200
|
86
|
+
expect(response.body).to eq({ 'deleted' => true })
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
@@ -0,0 +1,46 @@
|
|
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 "#{__dir__}/app_search_helper.rb"
|
21
|
+
|
22
|
+
describe Elastic::EnterpriseSearch::AppSearch::Client do
|
23
|
+
context 'Crawler metrics' do
|
24
|
+
let(:engine_name) { 'crawler-metrics' }
|
25
|
+
let(:name) { 'https://www.elastic.co' }
|
26
|
+
|
27
|
+
before do
|
28
|
+
client.create_engine(name: engine_name)
|
29
|
+
body = { name: name }
|
30
|
+
response = client.create_crawler_domain(engine_name, body: body)
|
31
|
+
@domain = response.body
|
32
|
+
end
|
33
|
+
|
34
|
+
after do
|
35
|
+
client.delete_engine(engine_name)
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'retrieves crawler metrics' do
|
39
|
+
response = client.crawler_metrics
|
40
|
+
expect(response.status).to eq 200
|
41
|
+
expect(response.body.keys).to eq(['global', 'node'])
|
42
|
+
expect(response.body.dig('global', 'crawl_requests'))
|
43
|
+
expect(response.body.dig('node', 'workers'))
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,45 @@
|
|
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 "#{__dir__}/app_search_helper.rb"
|
21
|
+
|
22
|
+
describe Elastic::EnterpriseSearch::AppSearch::Client do
|
23
|
+
context 'Crawler overview' do
|
24
|
+
let(:engine_name) { 'crawler-overview' }
|
25
|
+
let(:name) { 'https://www.elastic.co' }
|
26
|
+
|
27
|
+
before do
|
28
|
+
client.create_engine(name: engine_name)
|
29
|
+
body = { name: name }
|
30
|
+
response = client.create_crawler_domain(engine_name, body: body)
|
31
|
+
@domain = response.body
|
32
|
+
end
|
33
|
+
|
34
|
+
after do
|
35
|
+
client.delete_engine(engine_name)
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'retrieves crawler configuration overview' do
|
39
|
+
response = client.crawler_overview(engine_name)
|
40
|
+
expect(response.status).to eq 200
|
41
|
+
expect(response.body['domains'].count).to eq 1
|
42
|
+
expect(response.body['domains'].first['name']).to eq name
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,50 @@
|
|
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 "#{__dir__}/app_search_helper.rb"
|
21
|
+
|
22
|
+
describe Elastic::EnterpriseSearch::AppSearch::Client do
|
23
|
+
context 'Crawler process crawl denied URLs' do
|
24
|
+
let(:engine_name) { 'crawler-process-crawl-denied-urls' }
|
25
|
+
let(:name) { 'https://www.elastic.co' }
|
26
|
+
|
27
|
+
before do
|
28
|
+
client.create_engine(name: engine_name)
|
29
|
+
body = { name: name }
|
30
|
+
response = client.create_crawler_domain(engine_name, body: body)
|
31
|
+
@domain = response.body
|
32
|
+
end
|
33
|
+
|
34
|
+
after do
|
35
|
+
client.delete_engine(engine_name)
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'retrieves denied urls for process crawl' do
|
39
|
+
response = client.create_crawler_process_crawl(engine_name, body: { dry_run: true })
|
40
|
+
id = response.body['id']
|
41
|
+
|
42
|
+
response = client.crawler_process_crawl_denied_urls(engine_name, process_crawl_id: id)
|
43
|
+
expect(response.status).to eq 200
|
44
|
+
expect(
|
45
|
+
response.body.keys &
|
46
|
+
['total_url_count', 'denied_url_count', 'sample_size', 'denied_urls_sample']
|
47
|
+
).to eq response.body.keys
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,66 @@
|
|
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 "#{__dir__}/app_search_helper.rb"
|
21
|
+
|
22
|
+
describe Elastic::EnterpriseSearch::AppSearch::Client do
|
23
|
+
context 'Crawler Process Crawl' do
|
24
|
+
let(:engine_name) { 'crawler-urls' }
|
25
|
+
let(:name) { 'https://www.elastic.co' }
|
26
|
+
|
27
|
+
before do
|
28
|
+
client.create_engine(name: engine_name)
|
29
|
+
body = { name: name }
|
30
|
+
response = client.create_crawler_domain(engine_name, body: body)
|
31
|
+
@domain = response.body
|
32
|
+
end
|
33
|
+
|
34
|
+
after do
|
35
|
+
client.delete_engine(engine_name)
|
36
|
+
sleep 1
|
37
|
+
end
|
38
|
+
|
39
|
+
it 'creates, retrieves and shows denied for a process crawl' do
|
40
|
+
response = client.create_crawler_process_crawl(engine_name, body: { dry_run: true })
|
41
|
+
expect(response.status).to eq 200
|
42
|
+
|
43
|
+
id = response.body['id']
|
44
|
+
expect(response.body['dry_run']).to eq true
|
45
|
+
expect(response.body['domains']).to eq(['https://www.elastic.co'])
|
46
|
+
|
47
|
+
response = client.crawler_process_crawl(engine_name, process_crawl_id: id)
|
48
|
+
expect(response.status).to eq 200
|
49
|
+
expect(response.body['dry_run']).to eq true
|
50
|
+
expect(response.body['domains']).to eq(['https://www.elastic.co'])
|
51
|
+
|
52
|
+
response = client.denied_urls(engine_name, process_crawl_id: id)
|
53
|
+
expect(response.status).to eq 200
|
54
|
+
expect(response.body.keys).to eq(['total_url_count', 'denied_url_count', 'sample_size', 'denied_urls_sample'])
|
55
|
+
end
|
56
|
+
|
57
|
+
it 'lists process crawls' do
|
58
|
+
client.create_crawler_process_crawl(engine_name, body: { dry_run: true })
|
59
|
+
client.create_crawler_process_crawl(engine_name, body: { dry_run: true })
|
60
|
+
|
61
|
+
response = client.list_crawler_process_crawls(engine_name)
|
62
|
+
expect(response.status).to eq 200
|
63
|
+
expect(response.body.count).to be 2
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|