-
Notifications
You must be signed in to change notification settings - Fork 15
/
Rakefile
217 lines (176 loc) · 7.06 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
# 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 "bundler/gem_tasks"
task(:default) { system "rake --tasks" }
task :test => 'test:unit'
# ----- Test tasks ------------------------------------------------------------
require 'rake/testtask'
require 'rspec/core/rake_task'
namespace :test do
RSpec::Core::RakeTask.new(:spec)
Rake::TestTask.new(:unit) do |test|
test.libs << 'lib' << 'test'
test.test_files = FileList['test/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/integration/**/*_test.rb']
test.verbose = false
test.warning = false
end
desc "Run unit and integration tests"
task :all do
Rake::Task['test:unit'].invoke
Rake::Task['test:integration'].invoke
end
end
# ----- Documentation tasks ---------------------------------------------------
require 'yard'
YARD::Rake::YardocTask.new(:doc) do |t|
t.options = %w| --embed-mixins --markup=markdown |
end
# ----- Code analysis tasks ---------------------------------------------------
require 'cane/rake_task'
Cane::RakeTask.new(:quality) do |cane|
cane.abc_max = 15
cane.no_style = true
end
# ----- Generating the source code --------------------------------------------
require 'net/http'
require 'json'
require 'coderay'
namespace :generate do
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: /.../elasticsearch-ruby/elasticsearch-dsl/lib/elasticsearch/dsl/search/queries/boosting.rb
...
Test: /.../elasticsearch-ruby/elasticsearch-dsl/test/unit/queries/boosting_test.rb
...
$ rake generate:source[query,common,query/cutoff_frequency/low_freq_operator/...]
Source: /.../elasticsearch-ruby/elasticsearch-dsl/lib/elasticsearch/dsl/search/queries/common.rb
...
Test: /.../elasticsearch-ruby/elasticsearch-dsl/test/unit/queries/common_test.rb
...
DESC
task :source, [:type, :name, :option_methods] do |task, options|
begin
query = URI.escape("#{options[:name]} #{options[:type]}")
response = Net::HTTP.get('search.elasticsearch.org', "/search/?q=#{query}")
hits = JSON.load(response)['hits']['hits']
if hit = hits.first
doc_url = ("https://www.elastic.co" + hit['fields']['url']).gsub(/#.+$/, '') if hit['_score'] > 0.2
end
rescue Exception => e
puts "[!] ERROR: #{e.inspect}"
end unless ENV['NOCRAWL']
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 Elasticsearch
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 = "\n" + options[:option_methods].to_s.split('/').reduce('') do |sum,item|
sum << " subject.#{item} 'bar'\n"; sum
end
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 Elasticsearch
module Test
module #{module_name}
class #{class_name}Test < ::Elasticsearch::Test::UnitTestCase
include Elasticsearch::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/elasticsearch/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