forked from opensearch-project/opensearch-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
320 lines (270 loc) · 10 KB
/
Rakefile
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
# SPDX-License-Identifier: Apache-2.0
#
# The OpenSearch Contributors require contributions made to
# this file be licensed under the Apache-2.0 license or a
# compatible open source license.
#
# Modifications Copyright OpenSearch Contributors. See
# GitHub history for details.
#
# 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.
require 'rspec/core/rake_task'
require 'rake/testtask'
require 'mkmf'
desc 'Generate documentation for preview'
task :gh_pages do
yard_cmd = 'yard doc --embed-mixins --markup=rdoc --output-dir docs ./docs lib/**/*.rb'
Kernel.system yard_cmd
%w[OpenSearch.svg].each do |file|
cp file, './docs'
end
end
namespace :test do
desc 'Run all tests'
task :all do
Rake::Task['test:unit'].invoke
Rake::Task['test:integration'].invoke
end
desc 'Run all integration tests'
task :integration do
Rake::Task['test:api:integration'].invoke
Rake::Task['test:dsl:integration'].invoke
Rake::Task['test:transport:integration'].invoke
Rake::Task['test:client:integration'].invoke
end
desc 'Run all unit tests'
task :unit do
Rake::Task['test:api:unit'].invoke
Rake::Task['test:dsl:unit'].invoke
Rake::Task['test:transport:unit'].invoke
Rake::Task['test:client:unit'].invoke
end
namespace :api do
desc 'Run all API unit tests'
task unit: :unit_spec
RSpec::Core::RakeTask.new(:unit_spec) do |t|
t.pattern = 'spec/opensearch/api/**/*_spec.rb'
end
# TODO: Implement and Incorporate this task into github actions
desc 'Run API integration tests'
task integration: :integration_spec
RSpec::Core::RakeTask.new(:integration_spec) do |t|
t.pattern = 'spec/opensearch/api/**/*_integration_spec.rb' # Placeholder
end
desc 'Run API tests'
task :all do
Rake::Task['test:api:unit'].invoke
Rake::Task['test:api:integration'].invoke
end
end
namespace :dsl do
RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = 'spec/opensearch/dsl/**/*_spec.rb'
end
Rake::TestTask.new(:unit) do |test|
test.libs << 'lib' << 'test'
test.test_files = FileList['test/dsl/unit/**/*_test.rb']
test.deps = [:spec]
test.verbose = false
test.warning = false
end
Rake::TestTask.new(:integration) do |test|
test.libs << 'lib' << 'test'
test.test_files = FileList['test/dsl/integration/**/*_test.rb']
test.verbose = false
test.warning = false
end
desc 'Run all DSL tests'
task :all do
Rake::Task['test:dsl:unit'].invoke
Rake::Task['test:dsl:integration'].invoke
end
end
namespace :transport do
RSpec::Core::RakeTask.new(:transport_spec) do |t|
t.pattern = 'spec/opensearch/transport/**/*_spec.rb'
end
RSpec::Core::RakeTask.new(:connections_spec) do |t|
t.pattern = 'spec/opensearch/transport/**/*_spec.rb'
end
Rake::TestTask.new(:unit) do |test|
test.libs << 'lib' << 'test'
test.test_files = FileList['test/transport/unit/**/*_test.rb']
test.verbose = false
test.warning = false
end
Rake::TestTask.new(:integration) do |test|
test.libs << 'lib' << 'test'
test.test_files = FileList['test/transport/integration/**/*_test.rb']
test.deps = %w[test:transport:transport_spec test:transport:connections_spec]
test.verbose = false
test.warning = false
end
desc 'Run all transport tests'
task :all do
Rake::Task['test:transport:unit'].invoke
Rake::Task['test:transport:integration'].invoke
end
Rake::TestTask.new(:profile) do |test|
test.libs << 'lib' << 'test'
test.test_files = FileList['test/profile/**/*_test.rb']
end
end
namespace :client do
RSpec::Core::RakeTask.new(:integration) do |t|
t.pattern = 'spec/opensearch/client/integration/security_disabled/**/*_spec.rb'
end
RSpec::Core::RakeTask.new(:unit) do |t|
t.pattern = 'spec/opensearch/client/unit/**/*_spec.rb'
end
desc 'Run all client tests'
task :all do
Rake::Task['test:client:unit'].invoke
Rake::Task['test:client:integration'].invoke
end
RSpec::Core::RakeTask.new(:security) do |t|
t.pattern = 'spec/opensearch/client/integration/security_enabled/**/*_spec.rb'
end
end
end
require 'net/http'
require 'json'
require 'coderay'
namespace :generate do
# TODO: This legacy task is currently not working because we don't have a search.opensearch.org site to crawl for docs
desc <<-DESC.gsub(/^ /, '')
Generate Ruby source and tests for query/filter/aggregation
Pass the type of the component, the name, and any option methods as Rake task arguments.
Example:
$ rake generate:source[query,boosting]
Source: /.../opensearch-ruby/opensearch-dsl/lib/opensearch/dsl/search/queries/boosting.rb
...
Test: /.../opensearch-ruby/opensearch-dsl/test/unit/queries/boosting_test.rb
...
$ rake generate:source[query,common,query/cutoff_frequency/low_freq_operator/...]
Source: /.../opensearch-ruby/opensearch-dsl/lib/opensearch/dsl/search/queries/common.rb
...
Test: /.../opensearch-ruby/opensearch-dsl/test/unit/queries/common_test.rb
...
DESC
task :dsl_source, [:type, :name, :option_methods] do |_tasks, options|
unless ENV['NOCRAWL']
begin
query = CGI.escape("#{options[:name]} #{options[:type]}")
response = Net::HTTP.get('search.opensearch.org', "/search/?q=#{query}")
hits = JSON.parse(response)['hits']['hits']
if (hit = hits.first) && (hit['_score'] > 0.2)
doc_url = "http://opensearch.org#{hit['fields']['url']}".gsub(/#.+$/, '')
end
rescue StandardError => e
puts "[!] ERROR: #{e.inspect}"
end
end
case options[:type]
when /query/
module_name = 'Queries'
path_name = 'queries'
include_module = 'BaseComponent'
when /filter/
module_name = 'Filters'
path_name = 'filters'
include_module = 'BaseComponent'
when /agg/
module_name = 'Aggregations'
path_name = 'aggregations'
include_module = 'BaseAggregationComponent'
else raise ArgumentError, "Unknown DSL type [#{options[:type]}]"
end
name = options[:name].downcase
class_name = options[:name].split('_').map(&:capitalize).join
option_methods = options[:option_methods].to_s.split('/').reduce('') do |sum, item|
sum << ' '
sum << "option_method :#{item}"
sum << "\n" unless item == options[:option_methods].to_s.split('/').last
sum
end
option_methods = "\n\n#{option_methods}" unless option_methods.empty?
source = <<-RUBY.gsub(/^ /, '')
module OpenSearch
module DSL
module Search
module #{module_name}
# #{class_name} #{options[:type]}
#
# @example
#
# @see #{doc_url}
#
class #{class_name}
include #{include_module}#{option_methods}
end
end
end
end
end
RUBY
if options[:option_methods].to_s.empty?
test_option_methods = ''
else
setup = options[:option_methods].to_s.split('/').reduce('') do |sum, item|
sum << " subject.#{item} 'bar'\n"
sum
end
setup = "\n#{setup}"
asserts = "\n assert_equal %w[ #{options[:option_methods].to_s.split('/').sort.join(' ')} ],\n subject.to_hash[:#{name}][:foo].keys.map(&:to_s).sort"
asserts << "\n assert_equal 'bar', subject.to_hash[:#{name}][:foo][:#{options[:option_methods].to_s.split('/').first}]"
test_option_methods = <<-RUBY.gsub(/^ /, '')
should "have option methods" do
subject = #{class_name}.new :foo
#{setup}#{asserts}
end
should "take a block" do
subject = #{class_name}.new :foo do
#{options[:option_methods].to_s.split('/').first} 'bar'
end
assert_equal({#{name}: { foo: { #{options[:option_methods].to_s.split('/').first}: 'bar' } }}, subject.to_hash)
end
RUBY
end
test = <<-RUBY.gsub(/^ /, '')
require 'test_helper'
module OpenSearch
module Test
module #{module_name}
class #{class_name}Test < ::OpenSearch::Test::UnitTestCase
include OpenSearch::DSL::Search::#{module_name}
context "#{class_name} #{options[:type]}" do
subject { #{class_name}.new }
should "be converted to a Hash" do
assert_equal({ #{name}: {} }, subject.to_hash)
end
#{test_option_methods.empty? ? '' : test_option_methods.split("\n").map { |l| " #{l}" }.join("\n")}
end
end
end
end
end
RUBY
source_full_path = File.expand_path("../lib/opensearch/dsl/search/#{path_name}/#{name}.rb", __FILE__)
test_full_path = File.expand_path("../test/unit/#{path_name}/#{name}_test.rb", __FILE__)
puts '-' * 80, "Source: #{source_full_path}", '-' * 80, "\n", CodeRay.scan(source, :ruby).terminal, "\n\n"
puts '-' * 80, "Test: #{test_full_path}", '-' * 80, "\n", CodeRay.scan(test, :ruby).terminal, "\n"
File.open(source_full_path, 'w') { |file| file << source }
File.open(test_full_path, 'w') { |file| file << test }
end
end