-
Notifications
You must be signed in to change notification settings - Fork 611
/
Copy pathtest_tasks.rake
117 lines (100 loc) · 3.96 KB
/
test_tasks.rake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
UNIT_TESTED_PROJECTS = [
'elasticsearch',
'elasticsearch-transport',
'elasticsearch-dsl',
'elasticsearch-api',
'elasticsearch-xpack'
].freeze
INTEGRATION_TESTED_PROJECTS = (UNIT_TESTED_PROJECTS - ['elasticsearch-api']).freeze
namespace :test do
task bundle: 'bundle:install'
desc 'Run all tests in all subprojects'
task client: [:unit, :integration]
desc 'Run unit tests in all subprojects'
task :unit do
UNIT_TESTED_PROJECTS.each do |project|
puts '-' * 80
sh "cd #{CURRENT_PATH.join(project)} && unset BUNDLE_GEMFILE && unset BUNDLE_PATH && unset BUNDLE_BIN && bundle exec rake test:unit"
puts "\n"
end
end
desc 'Run integration tests in all subprojects'
task :integration do
INTEGRATION_TESTED_PROJECTS.each do |project|
puts '-' * 80
sh "cd #{CURRENT_PATH.join(project)} && unset BUNDLE_GEMFILE && bundle exec rake test:integration"
puts "\n"
end
end
desc 'Run rest api tests'
task rest_api: ['elasticsearch:wait_for_green'] do
puts '-' * 80
sh "cd #{CURRENT_PATH.join('elasticsearch-api')} && unset BUNDLE_GEMFILE && bundle exec rake test:rest_api[true]"
puts "\n"
end
desc 'Run security (Platinum) rest api yaml tests'
task security: 'elasticsearch:wait_for_green' do
puts '-' * 80
sh "cd #{CURRENT_PATH.join('elasticsearch-xpack')} && unset BUNDLE_GEMFILE && bundle exec rake test:rest_api"
puts "\n"
end
desc 'Download test artifacts for running cluster'
task :download_artifacts do
require 'elasticsearch'
begin
url = ENV['TEST_CLUSTER_URL'] || ENV['TEST_ES_SERVER'] ||
"http://localhost:#{ENV['TEST_CLUSTER_PORT'] || 9200}"
client = Elasticsearch::Client.new(url: url)
es_version_info = client.info['version']
version_number = es_version_info['number']
build_hash = es_version_info['build_hash']
rescue Faraday::ConnectionFailed
STDERR.puts "[!] Test cluster not running?"
exit 1
end
unless build_hash
STDERR.puts "[!] Cannot determine checkout build hash -- server not running"
exit(1)
end
puts 'Downloading artifacts file.'
filename = CURRENT_PATH.join('tmp/artifacts.json')
`curl -s https://artifacts-api.elastic.co/v1/versions/#{version_number} -o #{filename}`
unless File.exists?(filename)
STDERR.puts '[!] Couldn\'t download artifacts file'
exit 1
end
artifacts = JSON.parse(File.read(filename))
build_hash_artifact = artifacts['version']['builds'].select do |a|
a.dig('projects', 'elasticsearch', 'commit_hash') == build_hash
end.first
# Dig into the elasticsearch packages, search for the rest-resources-zip package and catch the URL:
zip_url = build_hash_artifact.dig('projects', 'elasticsearch', 'packages').select { |k,v| k =~ /rest-resources-zip/ }.map { | _, v| v['url'] }.first
filename = zip_url.split('/').last
puts 'Downloading zip file.'
`curl -s #{zip_url} -o tmp/#{filename}`
unless File.exists?("./tmp/#{filename}")
STDERR.puts '[!] Couldn\'t download artifact'
exit 1
end
puts "Unzipping file #{filename}"
`unzip -o tmp/#{filename} -d tmp/`
`rm tmp/#{filename}`
puts 'Artifacts downloaded in ./tmp'
end
end