sunspot_solr-xaop 1.2.1
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/Gemfile +3 -0
- data/README.rdoc +24 -0
- data/bin/sunspot-solr +74 -0
- data/lib/sunspot/solr/server.rb +171 -0
- data/lib/sunspot_solr.rb +1 -0
- data/solr/README.txt +42 -0
- data/solr/etc/jetty.xml +218 -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/.gitignore +1 -0
- data/solr/solr/README.txt +54 -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/solr/conf/xslt/example.xsl +132 -0
- data/solr/solr/conf/xslt/example_atom.xsl +67 -0
- data/solr/solr/conf/xslt/example_rss.xsl +66 -0
- data/solr/solr/conf/xslt/luke.xsl +337 -0
- data/solr/start.jar +0 -0
- data/solr/webapps/solr.war +0 -0
- data/spec/server_spec.rb +98 -0
- data/spec/spec_helper.rb +18 -0
- data/sunspot_solr.gemspec +37 -0
- metadata +133 -0
data/solr/start.jar
ADDED
Binary file
|
Binary file
|
data/spec/server_spec.rb
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
require File.expand_path('spec_helper', File.dirname(__FILE__))
|
2
|
+
require 'tempfile'
|
3
|
+
|
4
|
+
describe Sunspot::Solr::Server do
|
5
|
+
SUNSPOT_START_JAR = File.expand_path(
|
6
|
+
File.join(File.dirname(__FILE__), '..', '..', 'solr', 'start.jar')
|
7
|
+
)
|
8
|
+
|
9
|
+
before :each do
|
10
|
+
@server = Sunspot::Solr::Server.new
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'runs server in current process' do
|
14
|
+
@server.should_not_receive(:fork)
|
15
|
+
@server.should_receive(:exec).with(/java .*-jar start.jar/)
|
16
|
+
@server.run
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'runs Java with min memory' do
|
20
|
+
@server.min_memory = 1024
|
21
|
+
@server.should_receive(:exec).with(/-Xms1024/)
|
22
|
+
@server.run
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'runs Java with max memory' do
|
26
|
+
@server.max_memory = 2048
|
27
|
+
@server.should_receive(:exec).with(/-Xmx2048/)
|
28
|
+
@server.run
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'runs Jetty with specified port' do
|
32
|
+
@server.port = 8981
|
33
|
+
@server.should_receive(:exec).with(/-Djetty\.port=8981/)
|
34
|
+
@server.run
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'runs Solr with specified data dir' do
|
38
|
+
@server.solr_data_dir = '/var/solr/data'
|
39
|
+
@server.should_receive(:exec).with(%r(-Dsolr\.data\.dir=/var/solr/data))
|
40
|
+
@server.run
|
41
|
+
end
|
42
|
+
|
43
|
+
it 'runs Solr with specified Solr home' do
|
44
|
+
@server.solr_home = '/var/solr'
|
45
|
+
@server.should_receive(:exec).with(%r(-Dsolr\.solr\.home=/var/solr))
|
46
|
+
@server.run
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'runs Solr with specified Solr jar' do
|
50
|
+
@server.solr_jar = SUNSPOT_START_JAR
|
51
|
+
FileUtils.should_receive(:cd).with(File.dirname(SUNSPOT_START_JAR))
|
52
|
+
@server.run
|
53
|
+
end
|
54
|
+
|
55
|
+
it 'raises an error if java is missing' do
|
56
|
+
Sunspot::Java.stub(:installed? => false)
|
57
|
+
expect {
|
58
|
+
Sunspot::Solr::Server.new
|
59
|
+
}.to raise_error(Sunspot::Solr::Server::JavaMissing)
|
60
|
+
end
|
61
|
+
|
62
|
+
describe 'with logging' do
|
63
|
+
before :each do
|
64
|
+
@server.log_level = 'info'
|
65
|
+
@server.log_file = 'log/sunspot-development.log'
|
66
|
+
Tempfile.should_receive(:new).with('logging.properties').and_return(@tempfile = StringIO.new)
|
67
|
+
@tempfile.should_receive(:flush)
|
68
|
+
@tempfile.should_receive(:close)
|
69
|
+
@tempfile.stub!(:path).and_return('/tmp/logging.properties.12345')
|
70
|
+
@server.stub!(:exec)
|
71
|
+
end
|
72
|
+
|
73
|
+
it 'runs Solr with logging properties file' do
|
74
|
+
@server.should_receive(:exec).with(%r(-Djava\.util\.logging\.config\.file=/tmp/logging\.properties\.12345))
|
75
|
+
@server.run
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'sets logging level' do
|
79
|
+
@server.run
|
80
|
+
@tempfile.string.should =~ /^java\.util\.logging\.FileHandler\.level *= *INFO$/
|
81
|
+
end
|
82
|
+
|
83
|
+
it 'sets handler' do
|
84
|
+
@server.run
|
85
|
+
@tempfile.string.should =~ /^handlers *= *java.util.logging.FileHandler$/
|
86
|
+
end
|
87
|
+
|
88
|
+
it 'sets formatter' do
|
89
|
+
@server.run
|
90
|
+
@tempfile.string.should =~ /^java\.util\.logging\.FileHandler\.formatter *= *java\.util\.logging\.SimpleFormatter$/
|
91
|
+
end
|
92
|
+
|
93
|
+
it 'sets log file' do
|
94
|
+
@server.run
|
95
|
+
@tempfile.string.should =~ /^java\.util\.logging\.FileHandler\.pattern *= *log\/sunspot-development\.log$/
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
begin
|
2
|
+
require 'rspec'
|
3
|
+
rescue LoadError => e
|
4
|
+
require 'spec'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'sunspot_solr'
|
8
|
+
|
9
|
+
rspec =
|
10
|
+
begin
|
11
|
+
RSpec
|
12
|
+
rescue NameError, ArgumentError
|
13
|
+
Spec::Runner
|
14
|
+
end
|
15
|
+
|
16
|
+
rspec.configure do |config|
|
17
|
+
# Maybe later...
|
18
|
+
end
|
@@ -0,0 +1,37 @@
|
|
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 = "sunspot_solr-xaop"
|
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']
|
15
|
+
s.email = ["mat@patch.com"]
|
16
|
+
s.homepage = 'https://github.com/outoftime/sunspot/tree/master/sunspot_solr'
|
17
|
+
s.summary = 'Bundled Solr distribution for Sunspot'
|
18
|
+
s.description = <<-TEXT
|
19
|
+
Sunspot::Solr provides a bundled Solr distribution for use with Sunspot.
|
20
|
+
Typical deployment environments will require more configuration, but this
|
21
|
+
distribution is well suited to development and testing.
|
22
|
+
TEXT
|
23
|
+
|
24
|
+
s.rubyforge_project = "sunspot"
|
25
|
+
|
26
|
+
s.files = `git ls-files`.split("\n")
|
27
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
28
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
29
|
+
s.require_paths = ["lib"]
|
30
|
+
|
31
|
+
s.add_development_dependency 'rspec', '~> 1.1'
|
32
|
+
s.add_development_dependency 'hanna'
|
33
|
+
|
34
|
+
s.rdoc_options << '--webcvs=http://github.com/outoftime/sunspot/tree/master/%s' <<
|
35
|
+
'--title' << 'Sunspot-Solr - Bundled Solr distribution for Sunspot - API Documentation' <<
|
36
|
+
'--main' << 'README.rdoc'
|
37
|
+
end
|
metadata
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sunspot_solr-xaop
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mat Brown
|
8
|
+
- Peer Allan
|
9
|
+
- Dmitriy Dzema
|
10
|
+
- Benjamin Krause
|
11
|
+
- Marcel de Graaf
|
12
|
+
- Brandon Keepers
|
13
|
+
- Peter Berkenbosch
|
14
|
+
- Brian Atkinson
|
15
|
+
- Tom Coleman
|
16
|
+
- Matt Mitchell
|
17
|
+
- Nathan Beyer
|
18
|
+
- Kieran Topping
|
19
|
+
- Nicolas Braem
|
20
|
+
- Jeremy Ashkenas
|
21
|
+
- Dylan Vaughn
|
22
|
+
- Brian Durand
|
23
|
+
- Sam Granieri
|
24
|
+
- Nick Zadrozny
|
25
|
+
- Jason Ronallo
|
26
|
+
autorequire:
|
27
|
+
bindir: bin
|
28
|
+
cert_chain: []
|
29
|
+
|
30
|
+
date: 2011-09-27 00:00:00 +02:00
|
31
|
+
default_executable:
|
32
|
+
dependencies:
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: rspec
|
35
|
+
type: :development
|
36
|
+
version_requirement:
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ~>
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: "1.1"
|
42
|
+
version:
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: hanna
|
45
|
+
type: :development
|
46
|
+
version_requirement:
|
47
|
+
version_requirements: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: "0"
|
52
|
+
version:
|
53
|
+
description: " Sunspot::Solr provides a bundled Solr distribution for use with Sunspot.\n Typical deployment environments will require more configuration, but this\n distribution is well suited to development and testing.\n"
|
54
|
+
email:
|
55
|
+
- mat@patch.com
|
56
|
+
executables:
|
57
|
+
- sunspot-solr
|
58
|
+
extensions: []
|
59
|
+
|
60
|
+
extra_rdoc_files: []
|
61
|
+
|
62
|
+
files:
|
63
|
+
- Gemfile
|
64
|
+
- README.rdoc
|
65
|
+
- bin/sunspot-solr
|
66
|
+
- lib/sunspot/solr/server.rb
|
67
|
+
- lib/sunspot_solr.rb
|
68
|
+
- solr/README.txt
|
69
|
+
- solr/etc/jetty.xml
|
70
|
+
- solr/etc/webdefault.xml
|
71
|
+
- solr/lib/jetty-6.1.3.jar
|
72
|
+
- solr/lib/jetty-util-6.1.3.jar
|
73
|
+
- solr/lib/jsp-2.1/ant-1.6.5.jar
|
74
|
+
- solr/lib/jsp-2.1/core-3.1.1.jar
|
75
|
+
- solr/lib/jsp-2.1/jsp-2.1.jar
|
76
|
+
- solr/lib/jsp-2.1/jsp-api-2.1.jar
|
77
|
+
- solr/lib/servlet-api-2.5-6.1.3.jar
|
78
|
+
- solr/solr/.gitignore
|
79
|
+
- solr/solr/README.txt
|
80
|
+
- solr/solr/conf/admin-extra.html
|
81
|
+
- solr/solr/conf/elevate.xml
|
82
|
+
- solr/solr/conf/mapping-ISOLatin1Accent.txt
|
83
|
+
- solr/solr/conf/protwords.txt
|
84
|
+
- solr/solr/conf/schema.xml
|
85
|
+
- solr/solr/conf/scripts.conf
|
86
|
+
- solr/solr/conf/solrconfig.xml
|
87
|
+
- solr/solr/conf/spellings.txt
|
88
|
+
- solr/solr/conf/stopwords.txt
|
89
|
+
- solr/solr/conf/synonyms.txt
|
90
|
+
- solr/solr/conf/xslt/example.xsl
|
91
|
+
- solr/solr/conf/xslt/example_atom.xsl
|
92
|
+
- solr/solr/conf/xslt/example_rss.xsl
|
93
|
+
- solr/solr/conf/xslt/luke.xsl
|
94
|
+
- solr/start.jar
|
95
|
+
- solr/webapps/solr.war
|
96
|
+
- spec/server_spec.rb
|
97
|
+
- spec/spec_helper.rb
|
98
|
+
- sunspot_solr.gemspec
|
99
|
+
has_rdoc: true
|
100
|
+
homepage: https://github.com/outoftime/sunspot/tree/master/sunspot_solr
|
101
|
+
licenses: []
|
102
|
+
|
103
|
+
post_install_message:
|
104
|
+
rdoc_options:
|
105
|
+
- --webcvs=http://github.com/outoftime/sunspot/tree/master/%s
|
106
|
+
- --title
|
107
|
+
- Sunspot-Solr - Bundled Solr distribution for Sunspot - API Documentation
|
108
|
+
- --main
|
109
|
+
- README.rdoc
|
110
|
+
require_paths:
|
111
|
+
- lib
|
112
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: "0"
|
117
|
+
version:
|
118
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: "0"
|
123
|
+
version:
|
124
|
+
requirements: []
|
125
|
+
|
126
|
+
rubyforge_project: sunspot
|
127
|
+
rubygems_version: 1.3.5
|
128
|
+
signing_key:
|
129
|
+
specification_version: 3
|
130
|
+
summary: Bundled Solr distribution for Sunspot
|
131
|
+
test_files:
|
132
|
+
- spec/server_spec.rb
|
133
|
+
- spec/spec_helper.rb
|