elasticsearch-model 0.1.9 → 7.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (145) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +3 -2
  3. data/Gemfile +22 -0
  4. data/LICENSE.txt +199 -10
  5. data/README.md +96 -43
  6. data/Rakefile +49 -35
  7. data/elasticsearch-model.gemspec +53 -41
  8. data/examples/activerecord_article.rb +18 -1
  9. data/examples/activerecord_associations.rb +86 -17
  10. data/examples/activerecord_custom_analyzer.rb +152 -0
  11. data/examples/activerecord_mapping_completion.rb +33 -16
  12. data/examples/activerecord_mapping_edge_ngram.rb +118 -0
  13. data/examples/couchbase_article.rb +17 -0
  14. data/examples/datamapper_article.rb +28 -1
  15. data/examples/mongoid_article.rb +17 -0
  16. data/examples/ohm_article.rb +17 -0
  17. data/examples/riak_article.rb +17 -0
  18. data/gemfiles/3.0.gemfile +23 -1
  19. data/gemfiles/4.0.gemfile +25 -1
  20. data/gemfiles/5.0.gemfile +35 -0
  21. data/gemfiles/6.0.gemfile +36 -0
  22. data/lib/elasticsearch/model/adapter.rb +17 -0
  23. data/lib/elasticsearch/model/adapters/active_record.rb +31 -27
  24. data/lib/elasticsearch/model/adapters/default.rb +17 -0
  25. data/lib/elasticsearch/model/adapters/mongoid.rb +27 -3
  26. data/lib/elasticsearch/model/adapters/multiple.rb +29 -4
  27. data/lib/elasticsearch/model/callbacks.rb +17 -0
  28. data/lib/elasticsearch/model/client.rb +17 -0
  29. data/lib/elasticsearch/model/ext/active_record.rb +17 -0
  30. data/lib/elasticsearch/model/hash_wrapper.rb +32 -0
  31. data/lib/elasticsearch/model/importing.rb +61 -17
  32. data/lib/elasticsearch/model/indexing.rb +87 -49
  33. data/lib/elasticsearch/model/multimodel.rb +17 -0
  34. data/lib/elasticsearch/model/naming.rb +33 -2
  35. data/lib/elasticsearch/model/proxy.rb +61 -18
  36. data/lib/elasticsearch/model/response/aggregations.rb +55 -0
  37. data/lib/elasticsearch/model/response/base.rb +25 -3
  38. data/lib/elasticsearch/model/response/pagination/kaminari.rb +126 -0
  39. data/lib/elasticsearch/model/response/pagination/will_paginate.rb +112 -0
  40. data/lib/elasticsearch/model/response/pagination.rb +19 -192
  41. data/lib/elasticsearch/model/response/records.rb +17 -1
  42. data/lib/elasticsearch/model/response/result.rb +19 -2
  43. data/lib/elasticsearch/model/response/results.rb +17 -0
  44. data/lib/elasticsearch/model/response/suggestions.rb +20 -1
  45. data/lib/elasticsearch/model/response.rb +28 -10
  46. data/lib/elasticsearch/model/searching.rb +17 -0
  47. data/lib/elasticsearch/model/serializing.rb +17 -0
  48. data/lib/elasticsearch/model/version.rb +18 -1
  49. data/lib/elasticsearch/model.rb +36 -39
  50. data/spec/elasticsearch/model/adapter_spec.rb +136 -0
  51. data/spec/elasticsearch/model/adapters/active_record/associations_spec.rb +351 -0
  52. data/spec/elasticsearch/model/adapters/active_record/basic_spec.rb +395 -0
  53. data/spec/elasticsearch/model/adapters/active_record/dynamic_index_name_spec.rb +35 -0
  54. data/spec/elasticsearch/model/adapters/active_record/import_spec.rb +193 -0
  55. data/spec/elasticsearch/model/adapters/active_record/multi_model_spec.rb +127 -0
  56. data/spec/elasticsearch/model/adapters/active_record/namespaced_model_spec.rb +55 -0
  57. data/spec/elasticsearch/model/adapters/active_record/pagination_spec.rb +332 -0
  58. data/spec/elasticsearch/model/adapters/active_record/parent_child_spec.rb +92 -0
  59. data/spec/elasticsearch/model/adapters/active_record/serialization_spec.rb +78 -0
  60. data/spec/elasticsearch/model/adapters/active_record_spec.rb +224 -0
  61. data/spec/elasticsearch/model/adapters/default_spec.rb +58 -0
  62. data/spec/elasticsearch/model/adapters/mongoid/basic_spec.rb +284 -0
  63. data/spec/elasticsearch/model/adapters/mongoid/multi_model_spec.rb +83 -0
  64. data/spec/elasticsearch/model/adapters/mongoid_spec.rb +252 -0
  65. data/spec/elasticsearch/model/adapters/multiple_spec.rb +142 -0
  66. data/spec/elasticsearch/model/callbacks_spec.rb +50 -0
  67. data/spec/elasticsearch/model/client_spec.rb +83 -0
  68. data/spec/elasticsearch/model/hash_wrapper_spec.rb +29 -0
  69. data/spec/elasticsearch/model/importing_spec.rb +243 -0
  70. data/spec/elasticsearch/model/indexing_spec.rb +1014 -0
  71. data/spec/elasticsearch/model/module_spec.rb +94 -0
  72. data/spec/elasticsearch/model/multimodel_spec.rb +72 -0
  73. data/spec/elasticsearch/model/naming_spec.rb +203 -0
  74. data/spec/elasticsearch/model/proxy_spec.rb +124 -0
  75. data/spec/elasticsearch/model/response/aggregations_spec.rb +83 -0
  76. data/spec/elasticsearch/model/response/base_spec.rb +107 -0
  77. data/spec/elasticsearch/model/response/pagination/kaminari_spec.rb +472 -0
  78. data/spec/elasticsearch/model/response/pagination/will_paginate_spec.rb +279 -0
  79. data/spec/elasticsearch/model/response/records_spec.rb +135 -0
  80. data/spec/elasticsearch/model/response/response_spec.rb +148 -0
  81. data/spec/elasticsearch/model/response/result_spec.rb +139 -0
  82. data/spec/elasticsearch/model/response/results_spec.rb +73 -0
  83. data/spec/elasticsearch/model/searching_search_request_spec.rb +129 -0
  84. data/spec/elasticsearch/model/searching_spec.rb +66 -0
  85. data/spec/elasticsearch/model/serializing_spec.rb +39 -0
  86. data/spec/spec_helper.rb +193 -0
  87. data/spec/support/app/answer.rb +50 -0
  88. data/spec/support/app/article.rb +39 -0
  89. data/spec/support/app/article_for_pagination.rb +29 -0
  90. data/spec/support/app/article_no_type.rb +37 -0
  91. data/spec/support/app/article_with_custom_serialization.rb +30 -0
  92. data/spec/support/app/article_with_dynamic_index_name.rb +32 -0
  93. data/spec/support/app/author.rb +26 -0
  94. data/spec/support/app/authorship.rb +21 -0
  95. data/spec/support/app/category.rb +20 -0
  96. data/spec/support/app/comment.rb +20 -0
  97. data/spec/support/app/episode.rb +28 -0
  98. data/spec/support/app/image.rb +36 -0
  99. data/spec/support/app/import_article.rb +29 -0
  100. data/spec/support/app/mongoid_article.rb +38 -0
  101. data/spec/support/app/namespaced_book.rb +27 -0
  102. data/spec/support/app/parent_and_child_searchable.rb +41 -0
  103. data/spec/support/app/post.rb +31 -0
  104. data/spec/support/app/question.rb +44 -0
  105. data/spec/support/app/searchable.rb +65 -0
  106. data/spec/support/app/series.rb +28 -0
  107. data/spec/support/app.rb +46 -0
  108. data/spec/support/model.json +1 -0
  109. data/{test → spec}/support/model.yml +0 -0
  110. metadata +175 -121
  111. data/test/integration/active_record_associations_parent_child.rb +0 -139
  112. data/test/integration/active_record_associations_test.rb +0 -326
  113. data/test/integration/active_record_basic_test.rb +0 -234
  114. data/test/integration/active_record_custom_serialization_test.rb +0 -62
  115. data/test/integration/active_record_import_test.rb +0 -109
  116. data/test/integration/active_record_namespaced_model_test.rb +0 -49
  117. data/test/integration/active_record_pagination_test.rb +0 -145
  118. data/test/integration/dynamic_index_name_test.rb +0 -47
  119. data/test/integration/mongoid_basic_test.rb +0 -177
  120. data/test/integration/multiple_models_test.rb +0 -172
  121. data/test/support/model.json +0 -1
  122. data/test/test_helper.rb +0 -93
  123. data/test/unit/adapter_active_record_test.rb +0 -157
  124. data/test/unit/adapter_default_test.rb +0 -41
  125. data/test/unit/adapter_mongoid_test.rb +0 -104
  126. data/test/unit/adapter_multiple_test.rb +0 -106
  127. data/test/unit/adapter_test.rb +0 -69
  128. data/test/unit/callbacks_test.rb +0 -31
  129. data/test/unit/client_test.rb +0 -27
  130. data/test/unit/importing_test.rb +0 -203
  131. data/test/unit/indexing_test.rb +0 -650
  132. data/test/unit/module_test.rb +0 -57
  133. data/test/unit/multimodel_test.rb +0 -38
  134. data/test/unit/naming_test.rb +0 -103
  135. data/test/unit/proxy_test.rb +0 -100
  136. data/test/unit/response_base_test.rb +0 -40
  137. data/test/unit/response_pagination_kaminari_test.rb +0 -433
  138. data/test/unit/response_pagination_will_paginate_test.rb +0 -398
  139. data/test/unit/response_records_test.rb +0 -91
  140. data/test/unit/response_result_test.rb +0 -90
  141. data/test/unit/response_results_test.rb +0 -31
  142. data/test/unit/response_test.rb +0 -104
  143. data/test/unit/searching_search_request_test.rb +0 -78
  144. data/test/unit/searching_test.rb +0 -41
  145. data/test/unit/serializing_test.rb +0 -17
@@ -1,104 +0,0 @@
1
- require 'test_helper'
2
-
3
- class Elasticsearch::Model::ResponseTest < Test::Unit::TestCase
4
- context "Response" do
5
- class OriginClass
6
- def self.index_name; 'foo'; end
7
- def self.document_type; 'bar'; end
8
- end
9
-
10
- RESPONSE = { 'took' => '5', 'timed_out' => false, '_shards' => {'one' => 'OK'}, 'hits' => { 'hits' => [] },
11
- 'aggregations' => {'foo' => {'bar' => 10}},
12
- 'suggest' => {'my_suggest' => [ { 'text' => 'foo', 'options' => [ { 'text' => 'Foo', 'score' => 2.0 }, { 'text' => 'Bar', 'score' => 1.0 } ] } ]}}
13
-
14
- setup do
15
- @search = Elasticsearch::Model::Searching::SearchRequest.new OriginClass, '*'
16
- @search.stubs(:execute!).returns(RESPONSE)
17
- end
18
-
19
- should "access klass, response, took, timed_out, shards" do
20
- response = Elasticsearch::Model::Response::Response.new OriginClass, @search
21
-
22
- assert_equal OriginClass, response.klass
23
- assert_equal @search, response.search
24
- assert_equal RESPONSE, response.response
25
- assert_equal '5', response.took
26
- assert_equal false, response.timed_out
27
- assert_equal 'OK', response.shards.one
28
- end
29
-
30
- should "wrap the raw Hash response in Hashie::Mash" do
31
- @search = Elasticsearch::Model::Searching::SearchRequest.new OriginClass, '*'
32
- @search.stubs(:execute!).returns({'hits' => { 'hits' => [] }, 'aggregations' => { 'dates' => 'FOO' }})
33
-
34
- response = Elasticsearch::Model::Response::Response.new OriginClass, @search
35
-
36
- assert_respond_to response.response, :aggregations
37
- assert_equal 'FOO', response.response.aggregations.dates
38
- end
39
-
40
- should "load and access the results" do
41
- @search.expects(:execute!).returns(RESPONSE)
42
-
43
- response = Elasticsearch::Model::Response::Response.new OriginClass, @search
44
- assert_instance_of Elasticsearch::Model::Response::Results, response.results
45
- assert_equal 0, response.size
46
- end
47
-
48
- should "load and access the records" do
49
- @search.expects(:execute!).returns(RESPONSE)
50
-
51
- response = Elasticsearch::Model::Response::Response.new OriginClass, @search
52
- assert_instance_of Elasticsearch::Model::Response::Records, response.records
53
- assert_equal 0, response.size
54
- end
55
-
56
- should "delegate Enumerable methods to results" do
57
- @search.expects(:execute!).returns(RESPONSE)
58
-
59
- response = Elasticsearch::Model::Response::Response.new OriginClass, @search
60
- assert response.empty?
61
- end
62
-
63
- should "be initialized lazily" do
64
- @search.expects(:execute!).never
65
-
66
- Elasticsearch::Model::Response::Response.new OriginClass, @search
67
- end
68
-
69
- should "access the aggregations" do
70
- @search.expects(:execute!).returns(RESPONSE)
71
-
72
- response = Elasticsearch::Model::Response::Response.new OriginClass, @search
73
- assert_respond_to response, :aggregations
74
- assert_kind_of Hashie::Mash, response.aggregations.foo
75
- assert_equal 10, response.aggregations.foo.bar
76
- end
77
-
78
- should "access the suggest" do
79
- @search.expects(:execute!).returns(RESPONSE)
80
-
81
- response = Elasticsearch::Model::Response::Response.new OriginClass, @search
82
-
83
- assert_respond_to response, :suggestions
84
- assert_kind_of Hashie::Mash, response.suggestions
85
- assert_equal 'Foo', response.suggestions.my_suggest.first.options.first.text
86
- end
87
-
88
- should "return array of terms from the suggestions" do
89
- @search.expects(:execute!).returns(RESPONSE)
90
- response = Elasticsearch::Model::Response::Response.new OriginClass, @search
91
-
92
- assert_not_empty response.suggestions
93
- assert_equal [ 'Foo', 'Bar' ], response.suggestions.terms
94
- end
95
-
96
- should "return empty array as suggest terms when there are no suggestions" do
97
- @search.expects(:execute!).returns({})
98
- response = Elasticsearch::Model::Response::Response.new OriginClass, @search
99
-
100
- assert_empty response.suggestions
101
- assert_equal [], response.suggestions.terms
102
- end
103
- end
104
- end
@@ -1,78 +0,0 @@
1
- require 'test_helper'
2
-
3
- class Elasticsearch::Model::SearchRequestTest < Test::Unit::TestCase
4
- context "SearchRequest class" do
5
- class ::DummySearchingModel
6
- extend Elasticsearch::Model::Searching::ClassMethods
7
-
8
- def self.index_name; 'foo'; end
9
- def self.document_type; 'bar'; end
10
-
11
- end
12
-
13
- setup do
14
- @client = mock('client')
15
- DummySearchingModel.stubs(:client).returns(@client)
16
- end
17
-
18
- should "pass the search definition as a simple query" do
19
- @client.expects(:search).with do |params|
20
- assert_equal 'foo', params[:q]
21
- true
22
- end
23
- .returns({})
24
-
25
- s = Elasticsearch::Model::Searching::SearchRequest.new ::DummySearchingModel, 'foo'
26
- s.execute!
27
- end
28
-
29
- should "pass the search definition as a Hash" do
30
- @client.expects(:search).with do |params|
31
- assert_equal( {foo: 'bar'}, params[:body] )
32
- true
33
- end
34
- .returns({})
35
-
36
- s = Elasticsearch::Model::Searching::SearchRequest.new ::DummySearchingModel, foo: 'bar'
37
- s.execute!
38
- end
39
-
40
- should "pass the search definition as a JSON string" do
41
- @client.expects(:search).with do |params|
42
- assert_equal( '{"foo":"bar"}', params[:body] )
43
- true
44
- end
45
- .returns({})
46
-
47
- s = Elasticsearch::Model::Searching::SearchRequest.new ::DummySearchingModel, '{"foo":"bar"}'
48
- s.execute!
49
- end
50
-
51
- should "pass the search definition as an object which responds to to_hash" do
52
- class MySpecialQueryBuilder
53
- def to_hash; {foo: 'bar'}; end
54
- end
55
-
56
- @client.expects(:search).with do |params|
57
- assert_equal( {foo: 'bar'}, params[:body] )
58
- true
59
- end
60
- .returns({})
61
-
62
- s = Elasticsearch::Model::Searching::SearchRequest.new ::DummySearchingModel, MySpecialQueryBuilder.new
63
- s.execute!
64
- end
65
-
66
- should "pass the options to the client" do
67
- @client.expects(:search).with do |params|
68
- assert_equal 'foo', params[:q]
69
- assert_equal 15, params[:size]
70
- true
71
- end
72
- .returns({})
73
-
74
- s = Elasticsearch::Model::Searching::SearchRequest.new ::DummySearchingModel, 'foo', size: 15
75
- s.execute!
76
- end
77
- end
78
- end
@@ -1,41 +0,0 @@
1
- require 'test_helper'
2
-
3
- class Elasticsearch::Model::SearchingTest < Test::Unit::TestCase
4
- context "Searching module" do
5
- class ::DummySearchingModel
6
- extend Elasticsearch::Model::Searching::ClassMethods
7
-
8
- def self.index_name; 'foo'; end
9
- def self.document_type; 'bar'; end
10
- end
11
-
12
- setup do
13
- @client = mock('client')
14
- DummySearchingModel.stubs(:client).returns(@client)
15
- end
16
-
17
- should "have the search method" do
18
- assert_respond_to DummySearchingModel, :search
19
- end
20
-
21
- should "initialize the search object" do
22
- Elasticsearch::Model::Searching::SearchRequest
23
- .expects(:new).with do |klass, query, options|
24
- assert_equal DummySearchingModel, klass
25
- assert_equal 'foo', query
26
- assert_equal({default_operator: 'AND'}, options)
27
- true
28
- end
29
- .returns( stub('search') )
30
-
31
- DummySearchingModel.search 'foo', default_operator: 'AND'
32
- end
33
-
34
- should "not execute the search" do
35
- Elasticsearch::Model::Searching::SearchRequest
36
- .expects(:new).returns( mock('search').expects(:execute!).never )
37
-
38
- DummySearchingModel.search 'foo'
39
- end
40
- end
41
- end
@@ -1,17 +0,0 @@
1
- require 'test_helper'
2
-
3
- class Elasticsearch::Model::SerializingTest < Test::Unit::TestCase
4
- context "Serializing module" do
5
- class DummyClass
6
- include Elasticsearch::Model::Serializing::InstanceMethods
7
-
8
- def as_json(options={})
9
- 'HASH'
10
- end
11
- end
12
-
13
- should "delegate to as_json by default" do
14
- assert_equal 'HASH', DummyClass.new.as_indexed_json
15
- end
16
- end
17
- end