-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
300 lines (247 loc) · 10.6 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
# frozen_string_literal: false
require 'active_support/core_ext/object/try.rb'
require 'active_support/inflector'
require 'benchmark/ips'
require 'bundler/gem_tasks'
require 'pry'
require 'rubocop/rake_task'
require_relative 'lib/LittleWeasel'
require_relative 'spec/support/file_helpers'
require_relative 'spec/support/general_helpers'
DictionaryResultsHelpers = Support::GeneralHelpers::DictionaryResultsHelpers
def file_from(dictionary_key)
Support::FileHelpers.dictionary_path_for(file_name: dictionary_key.key)
end
begin
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
rescue LoadError => e
task 'spec' do
puts "RSpec not loaded - make sure it's installed and you're using bundle exec"
exit 1
end
end
#
# Tasks related to the #word_results API
namespace 'word_results' do
desc 'Creates a dictionary from a file on disk - perform basic word search results operations'
task :basic do
LittleWeasel.configure do |config|
# TODO: Configure as needed here.
end
# Create a Dictionary Manager.
dictionary_manager = LittleWeasel::DictionaryManager.new
# Create our unique key for the dictionary.
en_us_key = LittleWeasel::DictionaryKey.new(language: :en, region: :us)
file = Support::FileHelpers.dictionary_path_for file_name: en_us_key.key
# Create a dictionary of names from memory.
en_us_names_dictionary = dictionary_manager.create_dictionary_from_file(
dictionary_key: en_us_key,
file: file)
# Get some word results...
# Get results for a word we know exists.
word = 'apple'
word_results = en_us_names_dictionary.word_results word
DictionaryResultsHelpers.print_word_results word, word_results, "found (#{word} is in the dictionary)"
# Get results for a word we know DOES NOT exist.
word = 'dapple'
word_results = en_us_names_dictionary.word_results word
DictionaryResultsHelpers.print_word_results word, word_results, "not found (#{word} is not in the dictionary)"
rescue StandardError => e
task 'word_results:basic' do
puts "LittleWeasel task word_results:basic not loaded: #{e.message}"
exit 1
end
end
desc 'Creates a dictionary from memory - perform basic word search results operations'
task :from_memory do
LittleWeasel.configure do |config|
# TODO: Configure as needed here.
end
# Create a Dictionary Manager.
dictionary_manager = LittleWeasel::DictionaryManager.new
# Create our unique key for the dictionary.
en_us_names_key = LittleWeasel::DictionaryKey.new(language: :en, region: :us, tag: :names)
# Create a dictionary of names from memory.
en_us_names_dictionary = dictionary_manager.create_dictionary_from_memory(
dictionary_key: en_us_names_key, dictionary_words: %w(Abel Bartholomew Cain Deborah Elijah))
# Get some word results...
# Get results for a name we know exists.
word = 'Abel'
word_results = en_us_names_dictionary.word_results word
DictionaryResultsHelpers.print_word_results word, word_results, "found (#{word} is in the dictionary)"
# Get results for a name we know DOES NOT exist.
word = 'Henry'
word_results = en_us_names_dictionary.word_results word
DictionaryResultsHelpers.print_word_results word, word_results, "not found (#{word} is not in the dictionary)"
rescue StandardError => e
task 'word_results:from_memory' do
puts "LittleWeasel task word_results:from_memory not loaded: #{e.message}"
exit 1
end
end
desc 'Creates a dictionary from memory - perform advanced word search results operations using word filters and preprocessors'
task :advanced do
LittleWeasel.configure do |config|
# TODO: Configure as needed here.
end
# Create a Dictionary Manager.
dictionary_manager = LittleWeasel::DictionaryManager.new
# Create our unique key for the dictionary.
en_us_names_key = LittleWeasel::DictionaryKey.new(language: :en, region: :us, tag: :names)
# Create a Henry word filter.
class HenryFilter < LittleWeasel::Filters::WordFilter
class << self
def filter_match?(word)
word== 'Henry'
end
end
end
word_filters = [HenryFilter.new]
# Add a word preprocessor.
word_preprocessors = [LittleWeasel::Preprocessors::EnUs::CapitalizePreprocessor.new]
# Create a dictionary of names from memory.
en_us_names_dictionary = dictionary_manager.create_dictionary_from_memory(
dictionary_key: en_us_names_key,
dictionary_words: %w(Abel Bartholomew Cain Deborah Elijah),
word_filters: word_filters,
word_preprocessors: word_preprocessors)
puts '# Turning off our word filters and word preprocessors to start...'
puts
en_us_names_dictionary.filters_on = false
en_us_names_dictionary.preprocessors_on = false
# Get results for a name we know DOES NOT exist.
word = 'Henry'
word_results = en_us_names_dictionary.word_results word
DictionaryResultsHelpers.print_word_results word, word_results, "not found, #success? == false, word_valid? == false (#{word} is not in the dictionary)"
puts '# Turning word filters on...'
puts
en_us_names_dictionary.filters_on = true
# Get results for Henry again - it should be found due to the filter.
word = 'Henry'
word_results = en_us_names_dictionary.word_results word
DictionaryResultsHelpers.print_word_results word, word_results, '#success? == true due to the HenryFilter'
# Get results for a name we know DOES NOT exist.
word = 'henry'
word_results = en_us_names_dictionary.word_results word
DictionaryResultsHelpers.print_word_results word, word_results, "not found, #success? == false (#{word} is not in the dictionary and henry is lower case, no filter match)"
puts '# Turning preprocessors on so that henry is converted to Henry '
puts "# and consequently, the filter will match..."
puts
en_us_names_dictionary.preprocessors_on = true
word = 'henry'
word_results = en_us_names_dictionary.word_results word
DictionaryResultsHelpers.print_word_results word, word_results, "#success? == true, #filter_match? == true (#{word} is not in the dictionary but the word preprocessor and word filter work together to get a filter match and consider the name valid)"
rescue StandardError => e
task 'word_results:advanced' do
puts "LittleWeasel task word_results:advanced not loaded: #{e.message}"
exit 1
end
end
desc 'Creates a dictionary from memory - perform advanced word search results operations using word filters and preprocessors'
task :word_filters do
LittleWeasel.configure do |config|
# TODO: Configure as needed here.
end
dictionary_manager = LittleWeasel::DictionaryManager.new
dictionary_key = LittleWeasel::DictionaryKey.new(language: :en, region: :us)
file = Support::FileHelpers.dictionary_path_for file_name: dictionary_key.key
word_filters = [
LittleWeasel::Filters::EnUs::NumericFilter.new,
LittleWeasel::Filters::EnUs::CurrencyFilter.new,
LittleWeasel::Filters::EnUs::SingleCharacterWordFilter.new
]
word_preprocessors = nil
dictionary_words = Support::FileHelpers.dictionary_words_for dictionary_file_path: file
dictionary = dictionary_manager.create_dictionary_from_memory(dictionary_key: dictionary_key, dictionary_words: dictionary_words, word_filters: word_filters, word_preprocessors: word_preprocessors)
dictionary_words << 'A'.dup
dictionary_words << 'I'.dup
dictionary_words << '1000'.dup
dictionary_words << '1,000'.dup
dictionary_words << '10,000.00'.dup
dictionary_words << '+100.00'.dup
dictionary_words << '-200,000.00'.dup
dictionary_words << '$100,000'.dup
dictionary_words << '+$100,000,000.10'.dup
dictionary_words << '-$999,000,000.10'.dup
dictionary_words.each do |word|
word.strip!
word_results = dictionary.word_results word
DictionaryResultsHelpers.print_word_results word, word_results
end
rescue StandardError => e
task 'word_results:word_filters' do
puts "LittleWeasel task word_results:word_filters not loaded: #{e.message}"
exit 1
end
end
end
#
# Tasks related to the #block_results API
namespace 'block_results' do
desc 'Perform basic #block_results API operations'
task :basic do
LittleWeasel.configure do |config|
# TODO: Configure as needed here.
end
# Create a Dictionary Manager.
dictionary_manager = LittleWeasel::DictionaryManager.new
# Create our unique key for the dictionary.
en_us_key = LittleWeasel::DictionaryKey.new(language: :en, region: :us, tag: :big)
# Create a dictionary from a file on disk. The below assumes the
# dictionary file name matches the dictionary key (e.g. en-US-big).
en_us_dictionary = dictionary_manager.create_dictionary_from_file(
dictionary_key: en_us_key, file: file_from(en_us_key))
word_block = "This is a word-block of 8 words and 2 numbers."
# Add a word filter so that numbers are considered valid.
en_us_dictionary.add_filters word_filters: [
LittleWeasel::Filters::EnUs::NumericFilter.new
]
block_results = en_us_dictionary.block_results word_block
# Returns a LittleWeasel::BlockResults object.
DictionaryResultsHelpers.print_block_results word_block, block_results
rescue StandardError => e
task 'block_results:basic' do
puts "LittleWeasel task block_results:basic not loaded: #{e.message}"
exit 1
end
end
end
namespace :bm do
desc 'Performs benchmarking on Hash lookups performance.'
task :hash do
STRING_LOCALE = { 'en-US' => 'en-us' }
SYMBOL_LOCALE = { enUS: 'en-US' }
puts "Benchmark Hash lookups using different Hash key data types."
Benchmark.ips do |x|
string_variable = 'en-US'
x.report('hard-coded string') { STRING_LOCALE['en-US'] }
x.report('hard-coded frozen string') { STRING_LOCALE['en-US'.freeze] }
x.report('string variable') { STRING_LOCALE[string_variable] }
x.report('symbol') { SYMBOL_LOCALE[:enUS] }
end
rescue StandardError => e
task 'hash' do
puts "LittleWeasel task bm:hash not loaded: #{e.message}"
exit 1
end
end
desc 'Performs benchmarking on the DictionaryKey class.'
task :dictionary_key do
puts 'DictionaryKey test'
Benchmark.ips do |x|
x.report('DictionaryKey') do
DictionaryKey.key(language: :en, region: :us, tag: :tag)
end
end
rescue StandardError => e
task 'locale' do
puts "LittleWeasel task bm:dictionary_key not loaded: #{e.message}"
exit 1
end
end
end
desc 'Run LittleWeasel benchmark tests.'
task benchmarking: %w[bm:hash bm:dictionary_key]
RuboCop::RakeTask.new
task default: %i[spec rubocop]