erichummel-sunspot 1.2.1a
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +10 -0
- data/Gemfile.lock +32 -0
- data/History.txt +222 -0
- data/LICENSE +18 -0
- data/Rakefile +11 -0
- data/TODO +13 -0
- data/VERSION.yml +4 -0
- data/bin/sunspot-installer +19 -0
- data/bin/sunspot-solr +74 -0
- data/installer/config/schema.yml +95 -0
- data/lib/light_config.rb +40 -0
- data/lib/sunspot/adapters.rb +265 -0
- data/lib/sunspot/composite_setup.rb +202 -0
- data/lib/sunspot/configuration.rb +46 -0
- data/lib/sunspot/data_extractor.rb +50 -0
- data/lib/sunspot/dsl/adjustable.rb +47 -0
- data/lib/sunspot/dsl/field_query.rb +266 -0
- data/lib/sunspot/dsl/fields.rb +103 -0
- data/lib/sunspot/dsl/fulltext.rb +243 -0
- data/lib/sunspot/dsl/function.rb +14 -0
- data/lib/sunspot/dsl/functional.rb +41 -0
- data/lib/sunspot/dsl/more_like_this_query.rb +56 -0
- data/lib/sunspot/dsl/paginatable.rb +28 -0
- data/lib/sunspot/dsl/query_facet.rb +36 -0
- data/lib/sunspot/dsl/restriction.rb +25 -0
- data/lib/sunspot/dsl/restriction_with_near.rb +121 -0
- data/lib/sunspot/dsl/scope.rb +217 -0
- data/lib/sunspot/dsl/search.rb +30 -0
- data/lib/sunspot/dsl/standard_query.rb +121 -0
- data/lib/sunspot/dsl.rb +5 -0
- data/lib/sunspot/field.rb +193 -0
- data/lib/sunspot/field_factory.rb +129 -0
- data/lib/sunspot/indexer.rb +131 -0
- data/lib/sunspot/installer/library_installer.rb +45 -0
- data/lib/sunspot/installer/schema_builder.rb +219 -0
- data/lib/sunspot/installer/solrconfig_updater.rb +76 -0
- data/lib/sunspot/installer/task_helper.rb +18 -0
- data/lib/sunspot/installer.rb +31 -0
- data/lib/sunspot/query/abstract_field_facet.rb +52 -0
- data/lib/sunspot/query/boost_query.rb +24 -0
- data/lib/sunspot/query/common_query.rb +85 -0
- data/lib/sunspot/query/composite_fulltext.rb +36 -0
- data/lib/sunspot/query/connective.rb +206 -0
- data/lib/sunspot/query/date_field_facet.rb +14 -0
- data/lib/sunspot/query/dismax.rb +128 -0
- data/lib/sunspot/query/field_facet.rb +41 -0
- data/lib/sunspot/query/filter.rb +38 -0
- data/lib/sunspot/query/function_query.rb +52 -0
- data/lib/sunspot/query/geo.rb +53 -0
- data/lib/sunspot/query/highlighting.rb +55 -0
- data/lib/sunspot/query/more_like_this.rb +61 -0
- data/lib/sunspot/query/more_like_this_query.rb +12 -0
- data/lib/sunspot/query/pagination.rb +38 -0
- data/lib/sunspot/query/query_facet.rb +16 -0
- data/lib/sunspot/query/restriction.rb +262 -0
- data/lib/sunspot/query/scope.rb +9 -0
- data/lib/sunspot/query/sort.rb +95 -0
- data/lib/sunspot/query/sort_composite.rb +33 -0
- data/lib/sunspot/query/standard_query.rb +16 -0
- data/lib/sunspot/query/text_field_boost.rb +17 -0
- data/lib/sunspot/query.rb +11 -0
- data/lib/sunspot/schema.rb +151 -0
- data/lib/sunspot/search/abstract_search.rb +296 -0
- data/lib/sunspot/search/date_facet.rb +35 -0
- data/lib/sunspot/search/facet_row.rb +27 -0
- data/lib/sunspot/search/field_facet.rb +88 -0
- data/lib/sunspot/search/highlight.rb +38 -0
- data/lib/sunspot/search/hit.rb +136 -0
- data/lib/sunspot/search/more_like_this_search.rb +31 -0
- data/lib/sunspot/search/query_facet.rb +67 -0
- data/lib/sunspot/search/standard_search.rb +21 -0
- data/lib/sunspot/search.rb +9 -0
- data/lib/sunspot/server.rb +152 -0
- data/lib/sunspot/session.rb +260 -0
- data/lib/sunspot/session_proxy/abstract_session_proxy.rb +29 -0
- data/lib/sunspot/session_proxy/class_sharding_session_proxy.rb +66 -0
- data/lib/sunspot/session_proxy/id_sharding_session_proxy.rb +89 -0
- data/lib/sunspot/session_proxy/master_slave_session_proxy.rb +43 -0
- data/lib/sunspot/session_proxy/sharding_session_proxy.rb +222 -0
- data/lib/sunspot/session_proxy/silent_fail_session_proxy.rb +42 -0
- data/lib/sunspot/session_proxy/thread_local_session_proxy.rb +37 -0
- data/lib/sunspot/session_proxy.rb +87 -0
- data/lib/sunspot/setup.rb +350 -0
- data/lib/sunspot/text_field_setup.rb +29 -0
- data/lib/sunspot/type.rb +372 -0
- data/lib/sunspot/util.rb +243 -0
- data/lib/sunspot/version.rb +3 -0
- data/lib/sunspot.rb +569 -0
- data/solr/etc/jetty.xml +214 -0
- data/solr/etc/webdefault.xml +379 -0
- data/solr/lib/jetty-6.1.3.jar +0 -0
- data/solr/lib/jetty-util-6.1.3.jar +0 -0
- data/solr/lib/jsp-2.1/ant-1.6.5.jar +0 -0
- data/solr/lib/jsp-2.1/core-3.1.1.jar +0 -0
- data/solr/lib/jsp-2.1/jsp-2.1.jar +0 -0
- data/solr/lib/jsp-2.1/jsp-api-2.1.jar +0 -0
- data/solr/lib/servlet-api-2.5-6.1.3.jar +0 -0
- data/solr/solr/conf/admin-extra.html +31 -0
- data/solr/solr/conf/elevate.xml +36 -0
- data/solr/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/solr/solr/conf/protwords.txt +21 -0
- data/solr/solr/conf/schema.xml +238 -0
- data/solr/solr/conf/scripts.conf +24 -0
- data/solr/solr/conf/solrconfig.xml +934 -0
- data/solr/solr/conf/spellings.txt +2 -0
- data/solr/solr/conf/stopwords.txt +58 -0
- data/solr/solr/conf/synonyms.txt +31 -0
- data/solr/start.jar +0 -0
- data/solr/webapps/solr.war +0 -0
- data/spec/api/adapters_spec.rb +33 -0
- data/spec/api/binding_spec.rb +50 -0
- data/spec/api/indexer/attributes_spec.rb +149 -0
- data/spec/api/indexer/batch_spec.rb +46 -0
- data/spec/api/indexer/dynamic_fields_spec.rb +42 -0
- data/spec/api/indexer/fixed_fields_spec.rb +57 -0
- data/spec/api/indexer/fulltext_spec.rb +43 -0
- data/spec/api/indexer/removal_spec.rb +53 -0
- data/spec/api/indexer/spec_helper.rb +1 -0
- data/spec/api/indexer_spec.rb +14 -0
- data/spec/api/query/advanced_manipulation_examples.rb +35 -0
- data/spec/api/query/connectives_examples.rb +189 -0
- data/spec/api/query/dsl_spec.rb +18 -0
- data/spec/api/query/dynamic_fields_examples.rb +165 -0
- data/spec/api/query/faceting_examples.rb +399 -0
- data/spec/api/query/fulltext_examples.rb +315 -0
- data/spec/api/query/function_spec.rb +70 -0
- data/spec/api/query/geo_examples.rb +69 -0
- data/spec/api/query/highlighting_examples.rb +225 -0
- data/spec/api/query/more_like_this_spec.rb +140 -0
- data/spec/api/query/ordering_pagination_examples.rb +97 -0
- data/spec/api/query/scope_examples.rb +275 -0
- data/spec/api/query/spec_helper.rb +1 -0
- data/spec/api/query/standard_spec.rb +28 -0
- data/spec/api/query/text_field_scoping_examples.rb +30 -0
- data/spec/api/query/types_spec.rb +20 -0
- data/spec/api/search/dynamic_fields_spec.rb +33 -0
- data/spec/api/search/faceting_spec.rb +360 -0
- data/spec/api/search/highlighting_spec.rb +69 -0
- data/spec/api/search/hits_spec.rb +140 -0
- data/spec/api/search/results_spec.rb +79 -0
- data/spec/api/search/search_spec.rb +23 -0
- data/spec/api/search/spec_helper.rb +1 -0
- data/spec/api/server_spec.rb +91 -0
- data/spec/api/session_proxy/class_sharding_session_proxy_spec.rb +85 -0
- data/spec/api/session_proxy/id_sharding_session_proxy_spec.rb +30 -0
- data/spec/api/session_proxy/master_slave_session_proxy_spec.rb +41 -0
- data/spec/api/session_proxy/sharding_session_proxy_spec.rb +77 -0
- data/spec/api/session_proxy/silent_fail_session_proxy_spec.rb +24 -0
- data/spec/api/session_proxy/spec_helper.rb +9 -0
- data/spec/api/session_proxy/thread_local_session_proxy_spec.rb +50 -0
- data/spec/api/session_spec.rb +220 -0
- data/spec/api/spec_helper.rb +3 -0
- data/spec/api/sunspot_spec.rb +18 -0
- data/spec/ext.rb +11 -0
- data/spec/helpers/indexer_helper.rb +29 -0
- data/spec/helpers/query_helper.rb +38 -0
- data/spec/helpers/search_helper.rb +80 -0
- data/spec/integration/dynamic_fields_spec.rb +55 -0
- data/spec/integration/faceting_spec.rb +238 -0
- data/spec/integration/highlighting_spec.rb +22 -0
- data/spec/integration/indexing_spec.rb +33 -0
- data/spec/integration/keyword_search_spec.rb +317 -0
- data/spec/integration/local_search_spec.rb +64 -0
- data/spec/integration/more_like_this_spec.rb +43 -0
- data/spec/integration/scoped_search_spec.rb +354 -0
- data/spec/integration/spec_helper.rb +7 -0
- data/spec/integration/stored_fields_spec.rb +10 -0
- data/spec/integration/test_pagination.rb +32 -0
- data/spec/mocks/adapters.rb +32 -0
- data/spec/mocks/blog.rb +3 -0
- data/spec/mocks/comment.rb +21 -0
- data/spec/mocks/connection.rb +126 -0
- data/spec/mocks/mock_adapter.rb +30 -0
- data/spec/mocks/mock_class_sharding_session_proxy.rb +24 -0
- data/spec/mocks/mock_record.rb +52 -0
- data/spec/mocks/mock_sharding_session_proxy.rb +15 -0
- data/spec/mocks/photo.rb +11 -0
- data/spec/mocks/post.rb +85 -0
- data/spec/mocks/super_class.rb +2 -0
- data/spec/mocks/user.rb +13 -0
- data/spec/spec_helper.rb +42 -0
- data/tasks/rdoc.rake +27 -0
- data/tasks/schema.rake +19 -0
- data/tasks/todo.rake +4 -0
- metadata +342 -0
@@ -0,0 +1,70 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
|
3
|
+
describe 'function query' do
|
4
|
+
it "should send query to solr with boost function" do
|
5
|
+
session.search Post do
|
6
|
+
keywords('pizza') do
|
7
|
+
boost(function { :average_rating })
|
8
|
+
end
|
9
|
+
end
|
10
|
+
connection.should have_last_search_including(:bf, 'average_rating_ft')
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should handle boost function with constant float" do
|
14
|
+
session.search Post do
|
15
|
+
keywords('pizza') do
|
16
|
+
boost(function { 10.5 })
|
17
|
+
end
|
18
|
+
end
|
19
|
+
connection.should have_last_search_including(:bf, '10.5')
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should handle boost function with time literal" do
|
23
|
+
session.search Post do
|
24
|
+
keywords('pizza') do
|
25
|
+
boost(function { Time.parse('2010-03-25 14:13:00 EDT') })
|
26
|
+
end
|
27
|
+
end
|
28
|
+
connection.should have_last_search_including(:bf, '2010-03-25T18:13:00Z')
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should handle arbitrary functions in a function query block" do
|
32
|
+
session.search Post do
|
33
|
+
keywords('pizza') do
|
34
|
+
boost(function { product(:average_rating, 10) })
|
35
|
+
end
|
36
|
+
end
|
37
|
+
connection.should have_last_search_including(:bf, 'product(average_rating_ft,10)')
|
38
|
+
end
|
39
|
+
|
40
|
+
it "should handle nested functions in a function query block" do
|
41
|
+
session.search Post do
|
42
|
+
keywords('pizza') do
|
43
|
+
boost(function { product(:average_rating, sum(:average_rating, 20)) })
|
44
|
+
end
|
45
|
+
end
|
46
|
+
connection.should have_last_search_including(:bf, 'product(average_rating_ft,sum(average_rating_ft,20))')
|
47
|
+
end
|
48
|
+
|
49
|
+
# TODO SOLR 1.5
|
50
|
+
it "should raise ArgumentError if string literal passed" do
|
51
|
+
lambda do
|
52
|
+
session.search Post do
|
53
|
+
keywords('pizza') do
|
54
|
+
boost(function { "hello world" })
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end.should raise_error(ArgumentError)
|
58
|
+
end
|
59
|
+
|
60
|
+
it "should raise UnrecognizedFieldError if bogus field name passed" do
|
61
|
+
lambda do
|
62
|
+
session.search Post do
|
63
|
+
keywords('pizza') do
|
64
|
+
boost(function { :bogus })
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end.should raise_error(Sunspot::UnrecognizedFieldError)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
@@ -0,0 +1,69 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
require 'bigdecimal'
|
3
|
+
|
4
|
+
shared_examples_for 'geohash query' do
|
5
|
+
it 'searches for nearby points with defaults' do
|
6
|
+
search do
|
7
|
+
with(:coordinates).near(40.7, -73.5)
|
8
|
+
end
|
9
|
+
connection.should have_last_search_including(:q, build_geo_query)
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'searches for nearby points with non-Float arguments' do
|
13
|
+
search do
|
14
|
+
with(:coordinates).near(BigDecimal.new('40.7'), BigDecimal.new('-73.5'))
|
15
|
+
end
|
16
|
+
connection.should have_last_search_including(:q, build_geo_query)
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'searches for nearby points with given precision' do
|
20
|
+
search do
|
21
|
+
with(:coordinates).near(40.7, -73.5, :precision => 10)
|
22
|
+
end
|
23
|
+
connection.should have_last_search_including(:q, build_geo_query(:precision => 10))
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'searches for nearby points with given precision factor' do
|
27
|
+
search do
|
28
|
+
with(:coordinates).near(40.7, -73.5, :precision_factor => 1.5)
|
29
|
+
end
|
30
|
+
connection.should have_last_search_including(:q, build_geo_query(:precision_factor => 1.5))
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'searches for nearby points with given boost' do
|
34
|
+
search do
|
35
|
+
with(:coordinates).near(40.7, -73.5, :boost => 2.0)
|
36
|
+
end
|
37
|
+
connection.should have_last_search_including(:q, build_geo_query(:boost => 2.0))
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'performs both dismax search and location search' do
|
41
|
+
search do
|
42
|
+
fulltext 'pizza', :fields => :title
|
43
|
+
with(:coordinates).near(40.7, -73.5)
|
44
|
+
end
|
45
|
+
expected =
|
46
|
+
"{!dismax fl='* score' qf='title_text'}pizza (#{build_geo_query})"
|
47
|
+
connection.should have_last_search_including(
|
48
|
+
:q,
|
49
|
+
%Q(_query_:"{!dismax qf='title_text'}pizza" (#{build_geo_query}))
|
50
|
+
)
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def build_geo_query(options = {})
|
56
|
+
precision = options[:precision] || 7
|
57
|
+
precision_factor = options[:precision_factor] || 16.0
|
58
|
+
boost = options[:boost] || 1.0
|
59
|
+
hash = 'dr5xx3nytvgs'
|
60
|
+
(precision..12).map do |i|
|
61
|
+
phrase =
|
62
|
+
if i == 12 then hash
|
63
|
+
else "#{hash[0, i]}*"
|
64
|
+
end
|
65
|
+
precision_boost = Sunspot::Util.format_float(boost*precision_factor**(i-12.0), 3)
|
66
|
+
"coordinates_s:#{phrase}^#{precision_boost}"
|
67
|
+
end.reverse.join(' OR ')
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,225 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
|
3
|
+
shared_examples_for "query with highlighting support" do
|
4
|
+
it 'should not send highlight parameter when highlight not requested' do
|
5
|
+
search do
|
6
|
+
keywords 'test'
|
7
|
+
end
|
8
|
+
connection.should_not have_last_search_with(:hl)
|
9
|
+
end
|
10
|
+
|
11
|
+
it 'should enable highlighting when highlighting requested as keywords argument' do
|
12
|
+
search do
|
13
|
+
keywords 'test', :highlight => true
|
14
|
+
end
|
15
|
+
connection.should have_last_search_with(:hl => 'on')
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'should not set highlight fields parameter if highlight fields are not passed' do
|
19
|
+
search do
|
20
|
+
keywords 'test', :highlight => true, :fields => [:title]
|
21
|
+
end
|
22
|
+
connection.should_not have_last_search_with(:'hl.fl')
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'should enable highlighting on multiple fields when highlighting requested as array of fields via keywords argument' do
|
26
|
+
search do
|
27
|
+
keywords 'test', :highlight => [:title, :body]
|
28
|
+
end
|
29
|
+
|
30
|
+
connection.should have_last_search_with(:hl => 'on', :'hl.fl' => %w(title_text body_textsv))
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'should raise UnrecognizedFieldError if try to highlight unexisting field via keywords argument' do
|
34
|
+
lambda {
|
35
|
+
search do
|
36
|
+
keywords 'test', :highlight => [:unknown_field]
|
37
|
+
end
|
38
|
+
}.should raise_error(Sunspot::UnrecognizedFieldError)
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'should enable highlighting on multiple fields when highlighting requested as list of fields via block call' do
|
42
|
+
search do
|
43
|
+
keywords 'test' do
|
44
|
+
highlight :title, :body
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
connection.should have_last_search_with(:hl => 'on', :'hl.fl' => %w(title_text body_textsv))
|
49
|
+
end
|
50
|
+
|
51
|
+
it 'should enable highlighting on multiple fields for multiple search types' do
|
52
|
+
session.search(Post, Namespaced::Comment) do
|
53
|
+
keywords 'test' do
|
54
|
+
highlight :body
|
55
|
+
end
|
56
|
+
end
|
57
|
+
connection.searches.last[:'hl.fl'].to_set.should == Set['body_text', 'body_textsv']
|
58
|
+
end
|
59
|
+
|
60
|
+
it 'should raise UnrecognizedFieldError if try to highlight unexisting field via block call' do
|
61
|
+
lambda {
|
62
|
+
search do
|
63
|
+
keywords 'test' do
|
64
|
+
highlight :unknown_field
|
65
|
+
end
|
66
|
+
end
|
67
|
+
}.should raise_error(Sunspot::UnrecognizedFieldError)
|
68
|
+
end
|
69
|
+
|
70
|
+
it 'should set internal formatting' do
|
71
|
+
search do
|
72
|
+
keywords 'test', :highlight => true
|
73
|
+
end
|
74
|
+
connection.should have_last_search_with(
|
75
|
+
:"hl.simple.pre" => '@@@hl@@@',
|
76
|
+
:"hl.simple.post" => '@@@endhl@@@'
|
77
|
+
)
|
78
|
+
end
|
79
|
+
|
80
|
+
it 'should set highlight fields from DSL' do
|
81
|
+
search do
|
82
|
+
keywords 'test' do
|
83
|
+
highlight :title
|
84
|
+
end
|
85
|
+
end
|
86
|
+
connection.should have_last_search_with(
|
87
|
+
:"hl.fl" => %w(title_text)
|
88
|
+
)
|
89
|
+
end
|
90
|
+
|
91
|
+
it 'should not set formatting params specific to fields if fields specified' do
|
92
|
+
search do
|
93
|
+
keywords 'test', :highlight => :body
|
94
|
+
end
|
95
|
+
connection.should have_last_search_with(
|
96
|
+
:"hl.simple.pre" => '@@@hl@@@',
|
97
|
+
:"hl.simple.post" => '@@@endhl@@@'
|
98
|
+
)
|
99
|
+
end
|
100
|
+
|
101
|
+
it 'should set maximum highlights per field' do
|
102
|
+
search do
|
103
|
+
keywords 'test' do
|
104
|
+
highlight :max_snippets => 3
|
105
|
+
end
|
106
|
+
end
|
107
|
+
connection.should have_last_search_with(
|
108
|
+
:"hl.snippets" => 3
|
109
|
+
)
|
110
|
+
end
|
111
|
+
|
112
|
+
it 'should set max snippets specific to highlight fields' do
|
113
|
+
search do
|
114
|
+
keywords 'test' do
|
115
|
+
highlight :title, :max_snippets => 3
|
116
|
+
end
|
117
|
+
end
|
118
|
+
connection.should have_last_search_with(
|
119
|
+
:"hl.fl" => %w(title_text),
|
120
|
+
:"f.title_text.hl.snippets" => 3
|
121
|
+
)
|
122
|
+
end
|
123
|
+
|
124
|
+
it 'should set the maximum size' do
|
125
|
+
search do
|
126
|
+
keywords 'text' do
|
127
|
+
highlight :fragment_size => 200
|
128
|
+
end
|
129
|
+
end
|
130
|
+
connection.should have_last_search_with(
|
131
|
+
:"hl.fragsize" => 200
|
132
|
+
)
|
133
|
+
end
|
134
|
+
|
135
|
+
it 'should set the maximum size for specific fields' do
|
136
|
+
search do
|
137
|
+
keywords 'text' do
|
138
|
+
highlight :title, :fragment_size => 200
|
139
|
+
end
|
140
|
+
end
|
141
|
+
connection.should have_last_search_with(
|
142
|
+
:"f.title_text.hl.fragsize" => 200
|
143
|
+
)
|
144
|
+
end
|
145
|
+
|
146
|
+
it 'enables merging of contiguous fragments' do
|
147
|
+
search do
|
148
|
+
keywords 'test' do
|
149
|
+
highlight :merge_contiguous_fragments => true
|
150
|
+
end
|
151
|
+
end
|
152
|
+
connection.should have_last_search_with(
|
153
|
+
:"hl.mergeContiguous" => 'true'
|
154
|
+
)
|
155
|
+
end
|
156
|
+
|
157
|
+
it 'enables merging of contiguous fragments for specific fields' do
|
158
|
+
search do
|
159
|
+
keywords 'test' do
|
160
|
+
highlight :title, :merge_contiguous_fragments => true
|
161
|
+
end
|
162
|
+
end
|
163
|
+
connection.should have_last_search_with(
|
164
|
+
:"f.title_text.hl.mergeContiguous" => 'true'
|
165
|
+
)
|
166
|
+
end
|
167
|
+
|
168
|
+
it 'enables use of phrase highlighter' do
|
169
|
+
search do
|
170
|
+
keywords 'test' do
|
171
|
+
highlight :phrase_highlighter => true
|
172
|
+
end
|
173
|
+
end
|
174
|
+
connection.should have_last_search_with(
|
175
|
+
:"hl.usePhraseHighlighter" => 'true'
|
176
|
+
)
|
177
|
+
end
|
178
|
+
|
179
|
+
it 'enables use of phrase highlighter for specific fields' do
|
180
|
+
search do
|
181
|
+
keywords 'test' do
|
182
|
+
highlight :title, :phrase_highlighter => true
|
183
|
+
end
|
184
|
+
end
|
185
|
+
connection.should have_last_search_with(
|
186
|
+
:"f.title_text.hl.usePhraseHighlighter" => 'true'
|
187
|
+
)
|
188
|
+
end
|
189
|
+
|
190
|
+
it 'requires field match if requested' do
|
191
|
+
search do
|
192
|
+
keywords 'test' do
|
193
|
+
highlight :phrase_highlighter => true, :require_field_match => true
|
194
|
+
end
|
195
|
+
end
|
196
|
+
connection.should have_last_search_with(
|
197
|
+
:"hl.requireFieldMatch" => 'true'
|
198
|
+
)
|
199
|
+
end
|
200
|
+
|
201
|
+
it 'requires field match for specified field if requested' do
|
202
|
+
search do
|
203
|
+
keywords 'test' do
|
204
|
+
highlight :title, :phrase_highlighter => true, :require_field_match => true
|
205
|
+
end
|
206
|
+
end
|
207
|
+
connection.should have_last_search_with(
|
208
|
+
:"f.title_text.hl.requireFieldMatch" => 'true'
|
209
|
+
)
|
210
|
+
end
|
211
|
+
|
212
|
+
it 'sets field specific params for different fields if different params given' do
|
213
|
+
search do
|
214
|
+
keywords 'test' do
|
215
|
+
highlight :title, :max_snippets => 2
|
216
|
+
highlight :body, :max_snippets => 1
|
217
|
+
end
|
218
|
+
end
|
219
|
+
connection.should have_last_search_with(
|
220
|
+
:"hl.fl" => %w(title_text body_textsv),
|
221
|
+
:"f.title_text.hl.snippets" => 2,
|
222
|
+
:"f.body_textsv.hl.snippets" => 1
|
223
|
+
)
|
224
|
+
end
|
225
|
+
end
|
@@ -0,0 +1,140 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
|
3
|
+
describe 'more_like_this' do
|
4
|
+
before :each do
|
5
|
+
connection.expected_handler = :mlt
|
6
|
+
end
|
7
|
+
|
8
|
+
it_should_behave_like "scoped query"
|
9
|
+
it_should_behave_like "facetable query"
|
10
|
+
it_should_behave_like "query with advanced manipulation"
|
11
|
+
it_should_behave_like "query with connective scope"
|
12
|
+
it_should_behave_like "query with dynamic field support"
|
13
|
+
it_should_behave_like "sortable query"
|
14
|
+
it_should_behave_like "query with text field scoping"
|
15
|
+
|
16
|
+
it 'should query passed in object' do
|
17
|
+
p = Post.new
|
18
|
+
session.more_like_this(p)
|
19
|
+
connection.should have_last_search_with(:q => "id:Post\\ #{p.id}")
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'should use more_like_this fields if no fields specified' do
|
23
|
+
session.more_like_this(Post.new)
|
24
|
+
connection.searches.last[:"mlt.fl"].split(',').sort.should == %w(body_textsv tags_textv)
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'should use more_like_this fields if specified' do
|
28
|
+
session.more_like_this(Post.new) do
|
29
|
+
fields :body
|
30
|
+
end
|
31
|
+
connection.should have_last_search_with(:"mlt.fl" => "body_textsv")
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'assigns boosts to fields when specified' do
|
35
|
+
session.more_like_this(Post.new) do
|
36
|
+
fields :body, :tags => 8
|
37
|
+
end
|
38
|
+
connection.searches.last[:"mlt.fl"].split(',').sort.should == %w(body_textsv tags_textv)
|
39
|
+
connection.should have_last_search_with(:qf => "tags_textv^8")
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'doesn\'t assign boosts to fields when not specified' do
|
43
|
+
session.more_like_this(Post.new) do
|
44
|
+
fields :body
|
45
|
+
end
|
46
|
+
connection.should_not have_last_search_with(:qf)
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'should raise ArgumentError if a field is not setup for more_like_this' do
|
50
|
+
lambda do
|
51
|
+
session.more_like_this(Post.new) do
|
52
|
+
fields :title
|
53
|
+
end
|
54
|
+
end.should raise_error(ArgumentError)
|
55
|
+
end
|
56
|
+
|
57
|
+
it 'should accept options' do
|
58
|
+
session.more_like_this(Post.new) do
|
59
|
+
minimum_term_frequency 1
|
60
|
+
minimum_document_frequency 2
|
61
|
+
minimum_word_length 3
|
62
|
+
maximum_word_length 4
|
63
|
+
maximum_query_terms 5
|
64
|
+
boost_by_relevance false
|
65
|
+
end
|
66
|
+
connection.should have_last_search_with(:"mlt.mintf" => 1)
|
67
|
+
connection.should have_last_search_with(:"mlt.mindf" => 2)
|
68
|
+
connection.should have_last_search_with(:"mlt.minwl" => 3)
|
69
|
+
connection.should have_last_search_with(:"mlt.maxwl" => 4)
|
70
|
+
connection.should have_last_search_with(:"mlt.maxqt" => 5)
|
71
|
+
connection.should have_last_search_with(:"mlt.boost" => false)
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'should accept short options' do
|
75
|
+
session.more_like_this(Post.new) do
|
76
|
+
mintf 1
|
77
|
+
mindf 2
|
78
|
+
minwl 3
|
79
|
+
maxwl 4
|
80
|
+
maxqt 5
|
81
|
+
boost true
|
82
|
+
end
|
83
|
+
connection.should have_last_search_with(:"mlt.mintf" => 1)
|
84
|
+
connection.should have_last_search_with(:"mlt.mindf" => 2)
|
85
|
+
connection.should have_last_search_with(:"mlt.minwl" => 3)
|
86
|
+
connection.should have_last_search_with(:"mlt.maxwl" => 4)
|
87
|
+
connection.should have_last_search_with(:"mlt.maxqt" => 5)
|
88
|
+
connection.should have_last_search_with(:"mlt.boost" => true)
|
89
|
+
end
|
90
|
+
|
91
|
+
it 'paginates using default per_page when page not provided' do
|
92
|
+
session.more_like_this(Post.new)
|
93
|
+
connection.should have_last_search_with(:rows => 30)
|
94
|
+
end
|
95
|
+
|
96
|
+
it 'paginates using default per_page when page provided' do
|
97
|
+
session.more_like_this(Post.new) do
|
98
|
+
paginate :page => 2
|
99
|
+
end
|
100
|
+
connection.should have_last_search_with(:rows => 30, :start => 30)
|
101
|
+
end
|
102
|
+
|
103
|
+
it 'paginates using provided per_page' do
|
104
|
+
session.more_like_this(Post.new) do
|
105
|
+
paginate :page => 4, :per_page => 15
|
106
|
+
end
|
107
|
+
connection.should have_last_search_with(:rows => 15, :start => 45)
|
108
|
+
end
|
109
|
+
|
110
|
+
it 'defaults to page 1 if no :page argument given' do
|
111
|
+
session.more_like_this(Post.new) do
|
112
|
+
paginate :per_page => 15
|
113
|
+
end
|
114
|
+
connection.should have_last_search_with(:rows => 15, :start => 0)
|
115
|
+
end
|
116
|
+
|
117
|
+
it 'paginates from string argument' do
|
118
|
+
session.more_like_this(Post.new) do
|
119
|
+
paginate :page => '3', :per_page => '15'
|
120
|
+
end
|
121
|
+
connection.should have_last_search_with(:rows => 15, :start => 30)
|
122
|
+
end
|
123
|
+
|
124
|
+
it "should send query to solr with adjusted parameters (keyword example)" do
|
125
|
+
session.more_like_this(Post.new) do
|
126
|
+
adjust_solr_params do |params|
|
127
|
+
params[:q] = 'new search'
|
128
|
+
params[:some] = 'param'
|
129
|
+
end
|
130
|
+
end
|
131
|
+
connection.should have_last_search_with(:q => 'new search')
|
132
|
+
connection.should have_last_search_with(:some => 'param')
|
133
|
+
end
|
134
|
+
|
135
|
+
private
|
136
|
+
|
137
|
+
def search(*args, &block)
|
138
|
+
session.more_like_this(Post.new, *args, &block)
|
139
|
+
end
|
140
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
|
3
|
+
shared_examples_for 'sortable query' do
|
4
|
+
it 'paginates using default per_page when page not provided' do
|
5
|
+
search
|
6
|
+
connection.should have_last_search_with(:rows => 30)
|
7
|
+
end
|
8
|
+
|
9
|
+
it 'paginates using default per_page when page provided' do
|
10
|
+
search do
|
11
|
+
paginate :page => 2
|
12
|
+
end
|
13
|
+
connection.should have_last_search_with(:rows => 30, :start => 30)
|
14
|
+
end
|
15
|
+
|
16
|
+
it 'paginates using provided per_page' do
|
17
|
+
search do
|
18
|
+
paginate :page => 4, :per_page => 15
|
19
|
+
end
|
20
|
+
connection.should have_last_search_with(:rows => 15, :start => 45)
|
21
|
+
end
|
22
|
+
|
23
|
+
it 'defaults to page 1 if no :page argument given' do
|
24
|
+
search do
|
25
|
+
paginate :per_page => 15
|
26
|
+
end
|
27
|
+
connection.should have_last_search_with(:rows => 15, :start => 0)
|
28
|
+
end
|
29
|
+
|
30
|
+
it 'paginates from string argument' do
|
31
|
+
search do
|
32
|
+
paginate :page => '3', :per_page => '15'
|
33
|
+
end
|
34
|
+
connection.should have_last_search_with(:rows => 15, :start => 30)
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'orders by a single field' do
|
38
|
+
search do
|
39
|
+
order_by :average_rating, :desc
|
40
|
+
end
|
41
|
+
connection.should have_last_search_with(:sort => 'average_rating_ft desc')
|
42
|
+
end
|
43
|
+
|
44
|
+
it 'orders by multiple fields' do
|
45
|
+
search do
|
46
|
+
order_by :average_rating, :desc
|
47
|
+
order_by :sort_title, :asc
|
48
|
+
end
|
49
|
+
connection.should have_last_search_with(:sort => 'average_rating_ft desc, sort_title_s asc')
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'orders by random' do
|
53
|
+
search do
|
54
|
+
order_by :random
|
55
|
+
end
|
56
|
+
connection.searches.last[:sort].should =~ /^random_\d+ asc$/
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'orders by score' do
|
60
|
+
search do
|
61
|
+
order_by :score, :desc
|
62
|
+
end
|
63
|
+
connection.should have_last_search_with(:sort => 'score desc')
|
64
|
+
end
|
65
|
+
|
66
|
+
it 'throws an ArgumentError if a bogus order direction is given' do
|
67
|
+
lambda do
|
68
|
+
search do
|
69
|
+
order_by :sort_title, :sideways
|
70
|
+
end
|
71
|
+
end.should raise_error(ArgumentError)
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'throws an UnrecognizedFieldError if :distance is given for sort' do
|
75
|
+
lambda do
|
76
|
+
search do
|
77
|
+
order_by :distance, :asc
|
78
|
+
end
|
79
|
+
end.should raise_error(Sunspot::UnrecognizedFieldError)
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'does not allow ordering by multiple-value fields' do
|
83
|
+
lambda do
|
84
|
+
search do
|
85
|
+
order_by :category_ids
|
86
|
+
end
|
87
|
+
end.should raise_error(ArgumentError)
|
88
|
+
end
|
89
|
+
|
90
|
+
it 'raises ArgumentError if bogus argument given to paginate' do
|
91
|
+
lambda do
|
92
|
+
search do
|
93
|
+
paginate :page => 4, :ugly => :puppy
|
94
|
+
end
|
95
|
+
end.should raise_error(ArgumentError)
|
96
|
+
end
|
97
|
+
end
|