-
Notifications
You must be signed in to change notification settings - Fork 610
/
Copy pathtest_tasks.rake
99 lines (86 loc) · 3.28 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
# 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-api',
'elasticsearch-xpack'
].freeze
INTEGRATION_TESTED_PROJECTS = (UNIT_TESTED_PROJECTS - ['elasticsearch-api']).freeze
namespace :test do
require 'open-uri'
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
suite = ENV['TEST_SUITE'] == 'platinum' ? 'xpack' : 'api'
project = CURRENT_PATH.join("elasticsearch-#{suite}")
puts '-' * 80
sh "cd #{project} && unset BUNDLE_GEMFILE && bundle exec rake test:rest_api"
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
namespace :cluster do
desc 'Start Elasticsearch nodes for tests'
task :start do
require 'elasticsearch/extensions/test/cluster'
Elasticsearch::Extensions::Test::Cluster.start
end
desc 'Stop Elasticsearch nodes for tests'
task :stop do
require 'elasticsearch/extensions/test/cluster'
Elasticsearch::Extensions::Test::Cluster.stop
end
task :status do
require 'elasticsearch/extensions/test/cluster'
(puts "\e[31m[!] Test cluster not running\e[0m"; exit(1)) unless Elasticsearch::Extensions::Test::Cluster.running?
Elasticsearch::Extensions::Test::Cluster.__print_cluster_info(ENV['TEST_CLUSTER_PORT'] || 9250)
end
end
# Returns: version_number, build_hash
def cluster_info
require 'elasticsearch'
version_info = admin_client.info['version']
abort('[!] Cannot determine cluster version information -- Is the server running?') unless version_info
version_info
rescue Faraday::ConnectionFailed => e
STDERR.puts "[!] Test cluster not running?"
abort e
end
end