gojee-sunspot-rails 2.0.3 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +7 -0
- data/.rspec +1 -0
- data/History.txt +74 -0
- data/LICENSE +18 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +265 -0
- data/Rakefile +17 -0
- data/TODO +8 -0
- data/dev_tasks/rdoc.rake +24 -0
- data/dev_tasks/release.rake +4 -0
- data/dev_tasks/spec.rake +107 -0
- data/dev_tasks/todo.rake +4 -0
- data/gemfiles/rails-2.3.14 +12 -0
- data/gemfiles/rails-3.0.11 +12 -0
- data/gemfiles/rails-3.1.3 +12 -0
- data/gemfiles/rails-3.2.1 +12 -0
- data/generators/sunspot/sunspot_generator.rb +9 -0
- data/generators/sunspot/templates/sunspot.yml +20 -0
- data/install.rb +1 -0
- data/lib/generators/sunspot_rails/install/install_generator.rb +13 -0
- data/lib/generators/sunspot_rails/install/templates/config/sunspot.yml +19 -0
- data/lib/generators/sunspot_rails.rb +9 -0
- data/lib/sunspot/rails/adapters.rb +83 -0
- data/lib/sunspot/rails/configuration.rb +376 -0
- data/lib/sunspot/rails/init.rb +5 -0
- data/lib/sunspot/rails/log_subscriber.rb +33 -0
- data/lib/sunspot/rails/railtie.rb +36 -0
- data/lib/sunspot/rails/railties/controller_runtime.rb +36 -0
- data/lib/sunspot/rails/request_lifecycle.rb +36 -0
- data/lib/sunspot/rails/searchable.rb +491 -0
- data/lib/sunspot/rails/server.rb +114 -0
- data/lib/sunspot/rails/solr_instrumentation.rb +19 -0
- data/lib/sunspot/rails/solr_logging.rb +62 -0
- data/lib/sunspot/rails/spec_helper.rb +26 -0
- data/lib/sunspot/rails/stub_session_proxy.rb +142 -0
- data/lib/sunspot/rails/tasks.rb +84 -0
- data/lib/sunspot/rails.rb +69 -0
- data/lib/sunspot_rails.rb +12 -0
- data/spec/configuration_spec.rb +209 -0
- data/spec/model_lifecycle_spec.rb +63 -0
- data/spec/model_spec.rb +601 -0
- data/spec/rails_template/app/controllers/application_controller.rb +10 -0
- data/spec/rails_template/app/controllers/posts_controller.rb +6 -0
- data/spec/rails_template/app/models/author.rb +8 -0
- data/spec/rails_template/app/models/blog.rb +12 -0
- data/spec/rails_template/app/models/location.rb +2 -0
- data/spec/rails_template/app/models/photo_post.rb +2 -0
- data/spec/rails_template/app/models/post.rb +11 -0
- data/spec/rails_template/app/models/post_with_auto.rb +10 -0
- data/spec/rails_template/app/models/post_with_default_scope.rb +11 -0
- data/spec/rails_template/config/boot.rb +127 -0
- data/spec/rails_template/config/preinitializer.rb +22 -0
- data/spec/rails_template/config/routes.rb +9 -0
- data/spec/rails_template/config/sunspot.yml +24 -0
- data/spec/rails_template/db/schema.rb +27 -0
- data/spec/request_lifecycle_spec.rb +61 -0
- data/spec/schema.rb +27 -0
- data/spec/searchable_spec.rb +12 -0
- data/spec/server_spec.rb +33 -0
- data/spec/session_spec.rb +57 -0
- data/spec/shared_examples/indexed_after_save.rb +8 -0
- data/spec/shared_examples/not_indexed_after_save.rb +8 -0
- data/spec/spec_helper.rb +48 -0
- data/spec/stub_session_proxy_spec.rb +122 -0
- data/sunspot_rails.gemspec +43 -0
- data/tmp/.gitkeep +0 -0
- metadata +97 -5
@@ -0,0 +1,127 @@
|
|
1
|
+
if defined?(RAILS_GEM_VERSION) && RAILS_GEM_VERSION =~ /^2/ # Rails 2 only
|
2
|
+
RAILS_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(RAILS_ROOT)
|
3
|
+
|
4
|
+
module Rails
|
5
|
+
class << self
|
6
|
+
def boot!
|
7
|
+
unless booted?
|
8
|
+
preinitialize
|
9
|
+
pick_boot.run
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def booted?
|
14
|
+
defined? Rails::Initializer
|
15
|
+
end
|
16
|
+
|
17
|
+
def pick_boot
|
18
|
+
(vendor_rails? ? VendorBoot : GemBoot).new
|
19
|
+
end
|
20
|
+
|
21
|
+
def vendor_rails?
|
22
|
+
File.exist?("#{RAILS_ROOT}/vendor/rails")
|
23
|
+
end
|
24
|
+
|
25
|
+
def preinitialize
|
26
|
+
load(preinitializer_path) if File.exist?(preinitializer_path)
|
27
|
+
end
|
28
|
+
|
29
|
+
def preinitializer_path
|
30
|
+
"#{RAILS_ROOT}/config/preinitializer.rb"
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
class Boot
|
35
|
+
def run
|
36
|
+
load_initializer
|
37
|
+
Rails::Initializer.run(:set_load_path)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
class VendorBoot < Boot
|
42
|
+
def load_initializer
|
43
|
+
require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
|
44
|
+
Rails::Initializer.run(:install_gem_spec_stubs)
|
45
|
+
Rails::GemDependency.add_frozen_gem_path
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
class GemBoot < Boot
|
50
|
+
def load_initializer
|
51
|
+
self.class.load_rubygems
|
52
|
+
load_rails_gem
|
53
|
+
require 'initializer'
|
54
|
+
end
|
55
|
+
|
56
|
+
def load_rails_gem
|
57
|
+
if version = self.class.gem_version
|
58
|
+
gem 'rails', version
|
59
|
+
else
|
60
|
+
gem 'rails'
|
61
|
+
end
|
62
|
+
rescue Gem::LoadError => load_error
|
63
|
+
if load_error.message =~ /Could not find RubyGem rails/
|
64
|
+
STDERR.puts %(Missing the Rails #{version} gem. Please `gem install -v=#{version} rails`, update your RAILS_GEM_VERSION setting in config/environment.rb for the Rails version you do have installed, or comment out RAILS_GEM_VERSION to use the latest version installed.)
|
65
|
+
exit 1
|
66
|
+
else
|
67
|
+
raise
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
class << self
|
72
|
+
def rubygems_version
|
73
|
+
Gem::RubyGemsVersion rescue nil
|
74
|
+
end
|
75
|
+
|
76
|
+
def gem_version
|
77
|
+
if defined? RAILS_GEM_VERSION
|
78
|
+
RAILS_GEM_VERSION
|
79
|
+
elsif ENV.include?('RAILS_GEM_VERSION')
|
80
|
+
ENV['RAILS_GEM_VERSION']
|
81
|
+
else
|
82
|
+
parse_gem_version(read_environment_rb)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
def load_rubygems
|
87
|
+
min_version = '1.3.2'
|
88
|
+
require 'rubygems'
|
89
|
+
unless rubygems_version >= min_version
|
90
|
+
$stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.)
|
91
|
+
exit 1
|
92
|
+
end
|
93
|
+
|
94
|
+
rescue LoadError
|
95
|
+
$stderr.puts %Q(Rails requires RubyGems >= #{min_version}. Please install RubyGems and try again: http://rubygems.rubyforge.org)
|
96
|
+
exit 1
|
97
|
+
end
|
98
|
+
|
99
|
+
def parse_gem_version(text)
|
100
|
+
$1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*["']([!~<>=]*\s*[\d.]+)["']/
|
101
|
+
end
|
102
|
+
|
103
|
+
private
|
104
|
+
def read_environment_rb
|
105
|
+
File.read("#{RAILS_ROOT}/config/environment.rb")
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
class Rails::Boot
|
112
|
+
def run
|
113
|
+
load_initializer
|
114
|
+
|
115
|
+
Rails::Initializer.class_eval do
|
116
|
+
def load_gems
|
117
|
+
@bundler_loaded ||= Bundler.require :default, Rails.env
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
Rails::Initializer.run(:set_load_path)
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
# All that for this:
|
126
|
+
Rails.boot!
|
127
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
if defined?(RAILS_GEM_VERSION) && RAILS_GEM_VERSION =~ /^2/ # Rails 2 only
|
2
|
+
begin
|
3
|
+
require "rubygems"
|
4
|
+
require "bundler"
|
5
|
+
rescue LoadError
|
6
|
+
raise "Could not load the bundler gem. Install it with `gem install bundler`."
|
7
|
+
end
|
8
|
+
|
9
|
+
if Gem::Version.new(Bundler::VERSION) <= Gem::Version.new("0.9.24")
|
10
|
+
raise RuntimeError, "Your bundler version is too old for Rails 2.3." +
|
11
|
+
"Run `gem install bundler` to upgrade."
|
12
|
+
end
|
13
|
+
|
14
|
+
begin
|
15
|
+
# Set up load paths for all bundled gems
|
16
|
+
ENV["BUNDLE_GEMFILE"] = File.expand_path("../../Gemfile", __FILE__)
|
17
|
+
Bundler.setup
|
18
|
+
rescue Bundler::GemNotFound
|
19
|
+
raise RuntimeError, "Bundler couldn't find some gems." +
|
20
|
+
"Did you run `bundle install`?"
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
test:
|
2
|
+
solr:
|
3
|
+
hostname: localhost
|
4
|
+
port: 8983
|
5
|
+
development:
|
6
|
+
solr:
|
7
|
+
hostname: localhost
|
8
|
+
port: 8981
|
9
|
+
config_test:
|
10
|
+
solr:
|
11
|
+
hostname: some.host
|
12
|
+
port: 1234
|
13
|
+
path: /solr/idx
|
14
|
+
log_level: WARNING
|
15
|
+
data_path: /my_superior_path/data
|
16
|
+
pid_dir: /my_superior_path/pids
|
17
|
+
solr_home: /my_superior_path
|
18
|
+
bind_address: 127.0.0.1
|
19
|
+
read_timeout: 2
|
20
|
+
open_timeout: 0.5
|
21
|
+
auto_commit_after_request: false
|
22
|
+
auto_commit_after_delete_request: true
|
23
|
+
config_disabled_test:
|
24
|
+
disabled: true
|
@@ -0,0 +1,27 @@
|
|
1
|
+
ActiveRecord::Schema.define(:version => 0) do
|
2
|
+
create_table :posts, :force => true do |t|
|
3
|
+
t.string :title
|
4
|
+
t.string :type
|
5
|
+
t.integer :location_id
|
6
|
+
t.text :body
|
7
|
+
t.references :blog
|
8
|
+
t.timestamps
|
9
|
+
end
|
10
|
+
|
11
|
+
create_table :locations, :force => true do |t|
|
12
|
+
t.float :lat
|
13
|
+
t.float :lng
|
14
|
+
end
|
15
|
+
|
16
|
+
create_table :blogs, :force => true do |t|
|
17
|
+
t.string :name
|
18
|
+
t.string :subdomain
|
19
|
+
t.timestamps
|
20
|
+
end
|
21
|
+
|
22
|
+
create_table :writers, :force => true, :primary_key => :writer_id do |t|
|
23
|
+
t.string :name
|
24
|
+
t.timestamps
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
require File.expand_path('spec_helper', File.dirname(__FILE__))
|
2
|
+
|
3
|
+
describe PostsController, :type => :controller do
|
4
|
+
begin
|
5
|
+
include ::RSpec::Rails::ControllerExampleGroup
|
6
|
+
rescue NameError
|
7
|
+
# Silent -- rspec-rails 1.x catches the :type => :controller
|
8
|
+
end
|
9
|
+
|
10
|
+
before(:each) do
|
11
|
+
Sunspot::Rails.configuration = @configuration = Sunspot::Rails::Configuration.new
|
12
|
+
end
|
13
|
+
|
14
|
+
after(:each) do
|
15
|
+
Sunspot::Rails.configuration = nil
|
16
|
+
end
|
17
|
+
|
18
|
+
unless respond_to?(:describes)
|
19
|
+
controller_name :posts # RSpec 1
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'should automatically commit after each action if specified' do
|
23
|
+
@configuration.user_configuration = { 'auto_commit_after_request' => true }
|
24
|
+
Sunspot.should_receive(:commit_if_dirty)
|
25
|
+
post :create, :post => { :title => 'Test 1' }
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'should not commit, if configuration is set to false' do
|
29
|
+
@configuration.user_configuration = { 'auto_commit_after_request' => false }
|
30
|
+
Sunspot.should_not_receive(:commit_if_dirty)
|
31
|
+
post :create, :post => { :title => 'Test 1' }
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'should commit if configuration is not specified' do
|
35
|
+
@configuration.user_configuration = {}
|
36
|
+
Sunspot.should_receive(:commit_if_dirty)
|
37
|
+
post :create, :post => { :title => 'Test 1' }
|
38
|
+
end
|
39
|
+
|
40
|
+
### auto_commit_if_delete_dirty
|
41
|
+
|
42
|
+
it 'should automatically commit after each delete if specified' do
|
43
|
+
@configuration.user_configuration = { 'auto_commit_after_request' => false,
|
44
|
+
'auto_commit_after_delete_request' => true }
|
45
|
+
Sunspot.should_receive(:commit_if_delete_dirty)
|
46
|
+
post :create, :post => { :title => 'Test 1' }
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'should not automatically commit on delete if configuration is set to false' do
|
50
|
+
@configuration.user_configuration = { 'auto_commit_after_request' => false,
|
51
|
+
'auto_commit_after_delete_request' => false }
|
52
|
+
Sunspot.should_not_receive(:commit_if_delete_dirty)
|
53
|
+
post :create, :post => { :title => 'Test 1' }
|
54
|
+
end
|
55
|
+
|
56
|
+
it 'should not automatically commit on delete if configuration is not specified' do
|
57
|
+
@configuration.user_configuration = { 'auto_commit_after_request' => false }
|
58
|
+
Sunspot.should_not_receive(:commit_if_delete_dirty)
|
59
|
+
post :create, :post => { :title => 'Test 1' }
|
60
|
+
end
|
61
|
+
end
|
data/spec/schema.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
ActiveRecord::Schema.define(:version => 0) do
|
2
|
+
create_table :posts, :force => true do |t|
|
3
|
+
t.string :title
|
4
|
+
t.string :type
|
5
|
+
t.integer :location_id
|
6
|
+
t.text :body
|
7
|
+
t.references :blog
|
8
|
+
t.timestamps
|
9
|
+
end
|
10
|
+
|
11
|
+
create_table :locations, :force => true do |t|
|
12
|
+
t.float :lat
|
13
|
+
t.float :lng
|
14
|
+
end
|
15
|
+
|
16
|
+
create_table :blogs, :force => true do |t|
|
17
|
+
t.string :name
|
18
|
+
t.string :subdomain
|
19
|
+
t.timestamps
|
20
|
+
end
|
21
|
+
|
22
|
+
create_table :writers, :force => true, :primary_key => :writer_id do |t|
|
23
|
+
t.string :name
|
24
|
+
t.timestamps
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require File.expand_path('spec_helper', File.dirname(__FILE__))
|
2
|
+
|
3
|
+
describe Sunspot::Rails::Searchable do
|
4
|
+
describe '#searchable' do
|
5
|
+
it "should register models with Sunspot.searchable (via Sunspot.setup)" do
|
6
|
+
Sunspot.searchable.should_not be_empty
|
7
|
+
Sunspot.searchable.should include(Author)
|
8
|
+
Sunspot.searchable.should include(Blog)
|
9
|
+
Sunspot.searchable.should include(Post)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
data/spec/server_spec.rb
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
require File.expand_path('spec_helper', File.dirname(__FILE__))
|
2
|
+
|
3
|
+
describe Sunspot::Rails::Server do
|
4
|
+
before :each do
|
5
|
+
@server = Sunspot::Rails::Server.new
|
6
|
+
@config = Sunspot::Rails::Configuration.new
|
7
|
+
@solr_home = File.join(@config.solr_home)
|
8
|
+
end
|
9
|
+
|
10
|
+
it "sets the correct Solr home" do
|
11
|
+
@server.solr_home.should == @solr_home
|
12
|
+
end
|
13
|
+
|
14
|
+
it "sets the correct Solr PID path" do
|
15
|
+
@server.pid_path.should == File.join(@server.pid_dir, 'sunspot-solr-test.pid')
|
16
|
+
end
|
17
|
+
|
18
|
+
it "sets the correct Solr data dir" do
|
19
|
+
@server.solr_data_dir.should == File.join(@solr_home, 'data', 'test')
|
20
|
+
end
|
21
|
+
|
22
|
+
it "sets the correct port" do
|
23
|
+
@server.port.should == 8983
|
24
|
+
end
|
25
|
+
|
26
|
+
it "sets the correct log level" do
|
27
|
+
@server.log_level.should == "FINE"
|
28
|
+
end
|
29
|
+
|
30
|
+
it "sets the correct log file" do
|
31
|
+
@server.log_file.should == File.join(Rails.root, 'log', 'sunspot-solr-test.log')
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
require 'thread'
|
2
|
+
require File.expand_path('spec_helper', File.dirname(__FILE__))
|
3
|
+
|
4
|
+
describe 'Sunspot::Rails session' do
|
5
|
+
it 'is a different object for each thread' do
|
6
|
+
# Queue is just a convenient thread-safe container
|
7
|
+
sessions_queue = Queue.new
|
8
|
+
|
9
|
+
# Create some threads which dump their session into the queue
|
10
|
+
Array.new(2) {
|
11
|
+
Thread.new { sessions_queue << Sunspot.session.session }
|
12
|
+
}.each { |thread| thread.join }
|
13
|
+
|
14
|
+
# Collect the items from the queue
|
15
|
+
sessions = []
|
16
|
+
until sessions_queue.empty?
|
17
|
+
sessions << sessions_queue.pop
|
18
|
+
end
|
19
|
+
|
20
|
+
# There should be no items in the queue with the same object_id
|
21
|
+
object_ids = sessions.map(&:object_id)
|
22
|
+
object_ids.uniq.should == object_ids
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'should create a separate master/slave session if configured' do
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'should not create a separate master/slave session if no master configured' do
|
29
|
+
end
|
30
|
+
|
31
|
+
context 'disabled' do
|
32
|
+
before do
|
33
|
+
Sunspot::Rails.reset
|
34
|
+
::Rails.stub!(:env).and_return("config_disabled_test")
|
35
|
+
end
|
36
|
+
|
37
|
+
after do
|
38
|
+
Sunspot::Rails.reset
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'sets the session proxy as a stub' do
|
42
|
+
Sunspot::Rails.build_session.should be_a_kind_of(Sunspot::Rails::StubSessionProxy)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def with_configuration(options)
|
49
|
+
original_configuration = Sunspot::Rails.configuration
|
50
|
+
Sunspot::Rails.reset
|
51
|
+
Sunspot::Rails.configuration = Sunspot::Rails::Configuration.new
|
52
|
+
Sunspot::Rails.configuration.user_configuration = options
|
53
|
+
yield
|
54
|
+
Sunspot::Rails.reset
|
55
|
+
Sunspot::Rails.configuration = original_configuration
|
56
|
+
end
|
57
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
ENV['RAILS_ENV'] = 'test'
|
2
|
+
if rsolr_version = ENV['RSOLR_GEM_VERSION']
|
3
|
+
STDERR.puts("Forcing RSolr version #{rsolr_version}")
|
4
|
+
gem "rsolr", rsolr_version
|
5
|
+
end
|
6
|
+
|
7
|
+
require File.expand_path('config/environment', ENV['RAILS_ROOT'])
|
8
|
+
|
9
|
+
begin
|
10
|
+
require 'rspec'
|
11
|
+
require 'rspec/rails'
|
12
|
+
rescue LoadError => e
|
13
|
+
require 'spec'
|
14
|
+
require 'spec/rails'
|
15
|
+
end
|
16
|
+
require 'rake'
|
17
|
+
require File.join('sunspot', 'rails', 'solr_logging')
|
18
|
+
|
19
|
+
def load_schema
|
20
|
+
stdout = $stdout
|
21
|
+
$stdout = StringIO.new # suppress output while building the schema
|
22
|
+
load File.join(ENV['RAILS_ROOT'], 'db', 'schema.rb')
|
23
|
+
$stdout = stdout
|
24
|
+
end
|
25
|
+
|
26
|
+
def silence_stderr(&block)
|
27
|
+
stderr = $stderr
|
28
|
+
$stderr = StringIO.new
|
29
|
+
yield
|
30
|
+
$stderr = stderr
|
31
|
+
end
|
32
|
+
|
33
|
+
rspec =
|
34
|
+
begin
|
35
|
+
RSpec
|
36
|
+
rescue NameError, ArgumentError
|
37
|
+
Spec::Runner
|
38
|
+
end
|
39
|
+
|
40
|
+
# Load all shared examples
|
41
|
+
Dir[File.expand_path("shared_examples/*.rb", File.dirname(__FILE__))].each {|f| require f}
|
42
|
+
|
43
|
+
rspec.configure do |config|
|
44
|
+
config.before(:each) do
|
45
|
+
load_schema
|
46
|
+
Sunspot.remove_all!
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,122 @@
|
|
1
|
+
require File.expand_path('spec_helper', File.dirname(__FILE__))
|
2
|
+
require File.expand_path('../lib/sunspot/rails/spec_helper', File.dirname(__FILE__))
|
3
|
+
|
4
|
+
describe 'specs with Sunspot stubbed' do
|
5
|
+
disconnect_sunspot
|
6
|
+
|
7
|
+
before :each do
|
8
|
+
@session = Sunspot.session.original_session
|
9
|
+
@post = Post.create!
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'should not send index to session' do
|
13
|
+
@session.should_not_receive(:index)
|
14
|
+
@post.index
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'should not send index! to session' do
|
18
|
+
@session.should_not_receive(:index!)
|
19
|
+
@post.index!
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'should not send commit to session' do
|
23
|
+
@session.should_not_receive(:commit)
|
24
|
+
Sunspot.commit
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'should not send remove to session' do
|
28
|
+
@session.should_not_receive(:remove)
|
29
|
+
@post.remove_from_index
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'should not send remove! to session' do
|
33
|
+
@session.should_not_receive(:remove)
|
34
|
+
@post.remove_from_index!
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'should not send remove_by_id to session' do
|
38
|
+
@session.should_not_receive(:remove_by_id)
|
39
|
+
Sunspot.remove_by_id(Post, 1)
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'should not send remove_by_id! to session' do
|
43
|
+
@session.should_not_receive(:remove_by_id!)
|
44
|
+
Sunspot.remove_by_id!(Post, 1)
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'should not send remove_all to session' do
|
48
|
+
@session.should_not_receive(:remove_all)
|
49
|
+
Post.remove_all_from_index
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'should not send remove_all! to session' do
|
53
|
+
@session.should_not_receive(:remove_all!)
|
54
|
+
Post.remove_all_from_index!
|
55
|
+
end
|
56
|
+
|
57
|
+
it 'should return false for dirty?' do
|
58
|
+
@session.should_not_receive(:dirty?)
|
59
|
+
Sunspot.dirty?.should == false
|
60
|
+
end
|
61
|
+
|
62
|
+
it 'should not send commit_if_dirty to session' do
|
63
|
+
@session.should_not_receive(:commit_if_dirty)
|
64
|
+
Sunspot.commit_if_dirty
|
65
|
+
end
|
66
|
+
|
67
|
+
it 'should return false for delete_dirty?' do
|
68
|
+
@session.should_not_receive(:delete_dirty?)
|
69
|
+
Sunspot.delete_dirty?.should == false
|
70
|
+
end
|
71
|
+
|
72
|
+
it 'should not send commit_if_delete_dirty to session' do
|
73
|
+
@session.should_not_receive(:commit_if_delete_dirty)
|
74
|
+
Sunspot.commit_if_delete_dirty
|
75
|
+
end
|
76
|
+
|
77
|
+
it 'should not execute a search when #search called' do
|
78
|
+
@session.should_not_receive(:search)
|
79
|
+
Post.search
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'should not execute a search when #search called' do
|
83
|
+
@session.should_not_receive(:search)
|
84
|
+
Post.search
|
85
|
+
end
|
86
|
+
|
87
|
+
it 'should not execute a search when #search called with parameters' do
|
88
|
+
@session.should_not_receive(:search)
|
89
|
+
Post.search(:include => :blog, :select => 'id, title')
|
90
|
+
end
|
91
|
+
|
92
|
+
it 'should return a new search' do
|
93
|
+
@session.should_not_receive(:new_search)
|
94
|
+
Sunspot.new_search(Post).should respond_to(:execute)
|
95
|
+
end
|
96
|
+
|
97
|
+
describe 'stub search' do
|
98
|
+
before :each do
|
99
|
+
@search = Post.search
|
100
|
+
end
|
101
|
+
|
102
|
+
it 'should return empty results' do
|
103
|
+
@search.results.should == []
|
104
|
+
end
|
105
|
+
|
106
|
+
it 'should return empty hits' do
|
107
|
+
@search.hits.should == []
|
108
|
+
end
|
109
|
+
|
110
|
+
it 'should return zero total' do
|
111
|
+
@search.total.should == 0
|
112
|
+
end
|
113
|
+
|
114
|
+
it 'should return nil for a given facet' do
|
115
|
+
@search.facet(:category_id).should be_nil
|
116
|
+
end
|
117
|
+
|
118
|
+
it 'should return nil for a given dynamic facet' do
|
119
|
+
@search.dynamic_facet(:custom).should be_nil
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../../sunspot/lib/', __FILE__)
|
3
|
+
|
4
|
+
$:.unshift(lib) unless $:.include?(lib)
|
5
|
+
|
6
|
+
require 'sunspot/version'
|
7
|
+
|
8
|
+
Gem::Specification.new do |s|
|
9
|
+
s.name = "gojee-sunspot-rails"
|
10
|
+
s.version = Sunspot::VERSION
|
11
|
+
s.platform = Gem::Platform::RUBY
|
12
|
+
s.authors = ['Mat Brown', 'Peer Allan', 'Dmitriy Dzema', 'Benjamin Krause', 'Marcel de Graaf', 'Brandon Keepers', 'Peter Berkenbosch',
|
13
|
+
'Brian Atkinson', 'Tom Coleman', 'Matt Mitchell', 'Nathan Beyer', 'Kieran Topping', 'Nicolas Braem', 'Jeremy Ashkenas',
|
14
|
+
'Dylan Vaughn', 'Brian Durand', 'Sam Granieri', 'Nick Zadrozny', 'Jason Ronallo', 'Eric Hummel']
|
15
|
+
s.email = ["mat@patch.com"]
|
16
|
+
s.homepage = 'http://github.com/outoftime/sunspot/tree/master/sunspot_rails'
|
17
|
+
s.summary = 'Rails integration for the Sunspot Solr search library'
|
18
|
+
s.description = <<-TEXT
|
19
|
+
Sunspot::Rails is an extension to the Sunspot library for Solr search.
|
20
|
+
Sunspot::Rails adds integration between Sunspot and ActiveRecord, including
|
21
|
+
defining search and indexing related methods on ActiveRecord models themselves,
|
22
|
+
running a Sunspot-compatible Solr instance for development and test
|
23
|
+
environments, and automatically commit Solr index changes at the end of each
|
24
|
+
Rails request.
|
25
|
+
TEXT
|
26
|
+
|
27
|
+
s.rubyforge_project = "sunspot"
|
28
|
+
|
29
|
+
s.files = `git ls-files`.split("\n")
|
30
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
31
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
32
|
+
s.require_paths = ["lib"]
|
33
|
+
|
34
|
+
s.add_dependency 'gojee-sunspot', Sunspot::VERSION
|
35
|
+
s.add_dependency 'nokogiri'
|
36
|
+
|
37
|
+
s.add_development_dependency 'rspec', '~> 1.2'
|
38
|
+
s.add_development_dependency 'rspec-rails', '~> 1.2'
|
39
|
+
|
40
|
+
s.rdoc_options << '--webcvs=http://github.com/outoftime/sunspot/tree/master/%s' <<
|
41
|
+
'--title' << 'Sunspot-Rails - Rails integration for the Sunspot Solr search library - API Documentation' <<
|
42
|
+
'--main' << 'README.rdoc'
|
43
|
+
end
|
data/tmp/.gitkeep
ADDED
File without changes
|