greglu-solr-ruby 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. data/CHANGES.yml +50 -0
  2. data/LICENSE.txt +201 -0
  3. data/README +56 -0
  4. data/Rakefile +190 -0
  5. data/examples/delicious_library/dl_importer.rb +60 -0
  6. data/examples/delicious_library/sample_export.txt +164 -0
  7. data/examples/marc/marc_importer.rb +106 -0
  8. data/examples/tang/tang_importer.rb +58 -0
  9. data/lib/solr.rb +21 -0
  10. data/lib/solr/connection.rb +179 -0
  11. data/lib/solr/document.rb +73 -0
  12. data/lib/solr/exception.rb +13 -0
  13. data/lib/solr/field.rb +39 -0
  14. data/lib/solr/importer.rb +19 -0
  15. data/lib/solr/importer/array_mapper.rb +26 -0
  16. data/lib/solr/importer/delimited_file_source.rb +38 -0
  17. data/lib/solr/importer/hpricot_mapper.rb +27 -0
  18. data/lib/solr/importer/mapper.rb +51 -0
  19. data/lib/solr/importer/solr_source.rb +43 -0
  20. data/lib/solr/importer/xpath_mapper.rb +35 -0
  21. data/lib/solr/indexer.rb +52 -0
  22. data/lib/solr/request.rb +26 -0
  23. data/lib/solr/request/add_document.rb +63 -0
  24. data/lib/solr/request/base.rb +36 -0
  25. data/lib/solr/request/commit.rb +31 -0
  26. data/lib/solr/request/delete.rb +50 -0
  27. data/lib/solr/request/dismax.rb +46 -0
  28. data/lib/solr/request/index_info.rb +22 -0
  29. data/lib/solr/request/modify_document.rb +51 -0
  30. data/lib/solr/request/optimize.rb +21 -0
  31. data/lib/solr/request/ping.rb +36 -0
  32. data/lib/solr/request/select.rb +56 -0
  33. data/lib/solr/request/spellcheck.rb +30 -0
  34. data/lib/solr/request/standard.rb +374 -0
  35. data/lib/solr/request/update.rb +23 -0
  36. data/lib/solr/response.rb +27 -0
  37. data/lib/solr/response/add_document.rb +17 -0
  38. data/lib/solr/response/base.rb +42 -0
  39. data/lib/solr/response/commit.rb +17 -0
  40. data/lib/solr/response/delete.rb +13 -0
  41. data/lib/solr/response/dismax.rb +20 -0
  42. data/lib/solr/response/index_info.rb +26 -0
  43. data/lib/solr/response/modify_document.rb +17 -0
  44. data/lib/solr/response/optimize.rb +14 -0
  45. data/lib/solr/response/ping.rb +28 -0
  46. data/lib/solr/response/ruby.rb +42 -0
  47. data/lib/solr/response/select.rb +17 -0
  48. data/lib/solr/response/spellcheck.rb +20 -0
  49. data/lib/solr/response/standard.rb +60 -0
  50. data/lib/solr/response/xml.rb +42 -0
  51. data/lib/solr/solrtasks.rb +27 -0
  52. data/lib/solr/util.rb +32 -0
  53. data/lib/solr/xml.rb +47 -0
  54. data/script/setup.rb +14 -0
  55. data/script/solrshell +18 -0
  56. data/solr-ruby.gemspec +26 -0
  57. data/solr/conf/admin-extra.html +31 -0
  58. data/solr/conf/protwords.txt +21 -0
  59. data/solr/conf/schema.xml +221 -0
  60. data/solr/conf/scripts.conf +24 -0
  61. data/solr/conf/solrconfig.xml +394 -0
  62. data/solr/conf/stopwords.txt +58 -0
  63. data/solr/conf/synonyms.txt +31 -0
  64. data/solr/conf/xslt/example.xsl +132 -0
  65. data/test/conf/admin-extra.html +31 -0
  66. data/test/conf/protwords.txt +21 -0
  67. data/test/conf/schema.xml +237 -0
  68. data/test/conf/scripts.conf +24 -0
  69. data/test/conf/solrconfig.xml +376 -0
  70. data/test/conf/stopwords.txt +58 -0
  71. data/test/conf/synonyms.txt +31 -0
  72. data/test/functional/server_test.rb +218 -0
  73. data/test/functional/test_solr_server.rb +104 -0
  74. data/test/unit/add_document_test.rb +40 -0
  75. data/test/unit/array_mapper_test.rb +37 -0
  76. data/test/unit/changes_yaml_test.rb +21 -0
  77. data/test/unit/commit_test.rb +41 -0
  78. data/test/unit/connection_test.rb +55 -0
  79. data/test/unit/data_mapper_test.rb +75 -0
  80. data/test/unit/delete_test.rb +56 -0
  81. data/test/unit/delimited_file_source_test.rb +29 -0
  82. data/test/unit/dismax_request_test.rb +26 -0
  83. data/test/unit/document_test.rb +69 -0
  84. data/test/unit/field_test.rb +48 -0
  85. data/test/unit/hpricot_mapper_test.rb +44 -0
  86. data/test/unit/hpricot_test_file.xml +26 -0
  87. data/test/unit/indexer_test.rb +57 -0
  88. data/test/unit/modify_document_test.rb +24 -0
  89. data/test/unit/ping_test.rb +51 -0
  90. data/test/unit/request_test.rb +61 -0
  91. data/test/unit/response_test.rb +43 -0
  92. data/test/unit/select_test.rb +25 -0
  93. data/test/unit/solr_mock_base.rb +40 -0
  94. data/test/unit/spellcheck_response_test.rb +26 -0
  95. data/test/unit/spellchecker_request_test.rb +27 -0
  96. data/test/unit/standard_request_test.rb +324 -0
  97. data/test/unit/standard_response_test.rb +174 -0
  98. data/test/unit/suite.rb +16 -0
  99. data/test/unit/tab_delimited.txt +2 -0
  100. data/test/unit/util_test.rb +24 -0
  101. data/test/unit/xpath_mapper_test.rb +38 -0
  102. data/test/unit/xpath_test_file.xml +25 -0
  103. metadata +173 -0
data/CHANGES.yml ADDED
@@ -0,0 +1,50 @@
1
+ v0.0.8:
2
+ release_date: TBD
3
+ changes:
4
+ - Updated Solr::Request::Standard to use modern style sort parameter rather
5
+
6
+ v0.0.7:
7
+ release_date: 2009-03-06
8
+ changes:
9
+ - Fixed string parameters with carriage returns in Solr::Request::Select (due to String.each pain)
10
+ - SOLR-1047 - added support for facet.method
11
+
12
+ v0.0.6:
13
+ release_date: 2008-07-14
14
+ changes:
15
+ - Added Solr::Request::Spellcheck
16
+ - Enabled Solr::Request::Select to work as a general pass through to any registered request handler
17
+ - Fixed modify_document_test.rb so as to not be brittle with Hash ordering
18
+ - Added support for alternate field highlighting to Solr::Request::Standard (and thus DisMax)
19
+ - Added facet.offset support to Solr::Request::Standard/Dismax
20
+ - Added shards parameter to Solr::Request::Standard/Dismax
21
+
22
+ v0.0.5:
23
+ release_date: 2007-08-27
24
+ changes:
25
+ - Added support for highlighter fragment size to Solr::Request::Standard
26
+ - Added support for MoreLikeThese to Solr::Request::Standard
27
+ - Added Solr::Request::ModifyDocument (requires SOLR-139 patch)
28
+ - Added Solr::Util.query_parser_escape()
29
+
30
+ v0.0.4:
31
+ release_date: 2007-08-16
32
+ changes:
33
+ - Solr::Indexer#solr added to gain access to the Solr::Connection instance
34
+ - Fixed issue with multi-line String field values when field set multiValued="false"
35
+ - Fixed tests to work without either Hpricot or libxml2
36
+
37
+ v0.0.3:
38
+ release_date: 2007-05-22
39
+ changes:
40
+ - Adjusted HpricotMapper and XPathMapper, and tests, to load only if their dependencies are available.
41
+
42
+ v0.0.2:
43
+ release_date: 2007-05-15
44
+ changes:
45
+ - mappers, etc
46
+
47
+ v0.0.1:
48
+ release_date: 2007-02-15
49
+ changes:
50
+ - initial release
data/LICENSE.txt ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
data/README ADDED
@@ -0,0 +1,56 @@
1
+ solr-ruby exposes the power of Solr as a Ruby DSL (domain specific language).
2
+
3
+ Visit the solr-ruby wiki for more information: http://wiki.apache.org/solr/solr-ruby
4
+
5
+ USAGE
6
+
7
+ First launch Solr:
8
+
9
+ cd solr
10
+ java -jar start.jar
11
+
12
+ In a separate shell, launch {{{irb -Ilib}}}:
13
+
14
+ require 'solr' # load the library
15
+ include Solr # Allow Solr:: to be omitted from class/module references
16
+
17
+ # connect to the solr instance
18
+ conn = Connection.new('http://localhost:8983/solr', :autocommit => :on)
19
+
20
+ # add a document to the index
21
+ conn.add(:id => 123, :title_text => 'Lucene in Action')
22
+
23
+ # update the document
24
+ conn.update(:id => 123, :title_text => 'Solr in Action')
25
+
26
+ # print out the first hit in a query for 'action'
27
+ response = conn.query('action')
28
+ print response.hits[0]
29
+
30
+ # iterate through all the hits for 'action'
31
+ conn.query('action') do |hit|
32
+ puts hit.inspect
33
+ end
34
+
35
+ # delete document by id
36
+ conn.delete(123)
37
+
38
+ INSTALLATION
39
+
40
+ First run the tests:
41
+
42
+ rake
43
+
44
+ then build the gem:
45
+
46
+ rake package
47
+
48
+ and install the versioned gem:
49
+
50
+ gem install pkg/solr-x.x.x.gem
51
+
52
+ LICENSE
53
+
54
+ This package is licensed using the Apache Software License 2.0.
55
+
56
+ <http://www.apache.org/licenses/LICENSE-2.0>
data/Rakefile ADDED
@@ -0,0 +1,190 @@
1
+ # The ASF licenses this file to You under the Apache License, Version 2.0
2
+ # (the "License"); you may not use this file except in compliance with
3
+ # the License. You may obtain a copy of the License at
4
+ #
5
+ # http://www.apache.org/licenses/LICENSE-2.0
6
+ #
7
+ # Unless required by applicable law or agreed to in writing, software
8
+ # distributed under the License is distributed on an "AS IS" BASIS,
9
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ # See the License for the specific language governing permissions and
11
+ # limitations under the License.
12
+
13
+
14
+ # the default task is to run both the unit and functional tests
15
+ # functional tests require that a solr test server is running
16
+ # but this Rakefil should take care of starting and stopping it
17
+ # for you
18
+ #
19
+ # if you just want to run unit tests:
20
+ #
21
+ # rake test_units
22
+ #
23
+ # and if you just want to run functional tests
24
+ #
25
+ # rake test_functionals
26
+ #
27
+ # if you would like to see solr startup messages on STDERR
28
+ # when starting solr test server during functional tests use:
29
+ #
30
+ # rake SOLR_CONSOLE=true
31
+
32
+ SOLR_RUBY_VERSION = '0.0.7'
33
+
34
+ require 'rubygems'
35
+ require 'rake'
36
+ require 'rake/testtask'
37
+ require 'rake/rdoctask'
38
+ require 'rake/packagetask'
39
+ require 'rake/gempackagetask'
40
+ require 'test/functional/test_solr_server'
41
+
42
+ task :default => [:test_units]
43
+
44
+ SOLR_PARAMS = {
45
+ :quiet => ENV['SOLR_CONSOLE'] ? false : true,
46
+ :jetty_home => ENV['SOLR_JETTY_HOME'] || File.expand_path('../../../example'),
47
+ :jetty_port => ENV['SOLR_JETTY_PORT'] || 8888,
48
+ :solr_home => ENV['SOLR_HOME'] || File.expand_path('test')
49
+ }
50
+
51
+
52
+ spec = Gem::Specification.new do |s|
53
+ s.name = 'solr-ruby'
54
+ s.version = SOLR_RUBY_VERSION
55
+ s.author = 'Apache Solr'
56
+ s.email = 'ruby-dev@lucene.apache.org'
57
+ s.homepage = 'http://wiki.apache.org/solr/solr-ruby'
58
+ s.platform = Gem::Platform::RUBY
59
+ s.summary = 'Ruby library for working with Apache Solr'
60
+
61
+ # Omit functional tests from gem for now, as that requires a Solr instance
62
+ s.files = Dir.glob("lib/**/*").concat(Dir.glob("test/unit/**/*"))
63
+ s.require_path = 'lib'
64
+ s.autorequire = 'solr'
65
+ s.has_rdoc = true
66
+ end
67
+
68
+ namespace :gem do
69
+ Rake::GemPackageTask.new(spec) do |pkg|
70
+ pkg.need_zip = true
71
+ pkg.need_tar = true
72
+ pkg.package_dir = "pkg/gem"
73
+ end
74
+ end
75
+
76
+ namespace :rails do
77
+ desc "Creates rails plugin structure and distributable packages. init.rb is created and removed on the fly."
78
+ task :package => "init.rb" do
79
+ File.rm_f("init.rb")
80
+ end
81
+ Rake::PackageTask.new("solr-ruby-rails", SOLR_RUBY_VERSION) do |pkg|
82
+ pkg.need_zip = true
83
+ pkg.need_tar = true
84
+ pkg.package_dir = "pkg/rails"
85
+ pkg.package_files.include("lib/**/*.rb", "test/unit/**/*.rb", "init.rb", "LICENSE.txt", "README")
86
+ end
87
+
88
+ file "init.rb" do
89
+ open("init.rb", "w") do |file|
90
+ file.puts LICENSE
91
+ file.puts "require 'solr.rb'"
92
+ end
93
+ end
94
+
95
+ desc "Install the Rails plugin version into the vendor/plugins dir. Need to set PLUGINS_DIR environment variable."
96
+ task :install_solr_ruby => :package do
97
+ plugins_dir = ENV["PLUGINS_DIR"] or raise "You must set PLUGINS_DIR"
98
+ mkdir File.join(plugins_dir, "solr-ruby-rails-#{SOLR_RUBY_VERSION}/") rescue nil
99
+ File.cp_r(File.join("pkg","rails", "solr-ruby-rails-#{SOLR_RUBY_VERSION}/"), plugins_dir)
100
+ end
101
+ end
102
+
103
+ task :package => ["rails:package", "gem:package"]
104
+ task :repackage => [:clobber_package, :package]
105
+ task :clobber_package => ["rails:clobber_package", "gem:clobber_package"] do rm_r "pkg" rescue nil end
106
+ task :clobber => [:clobber_package]
107
+
108
+ desc "Generate rdoc documentation"
109
+ Rake::RDocTask.new('doc') do |rd|
110
+ rd.rdoc_files.include("lib/**/*.rb")
111
+ rd.rdoc_files.include('README', 'CHANGES.yml', 'LICENSE.txt')
112
+ rd.main = 'README'
113
+ rd.rdoc_dir = 'doc'
114
+ end
115
+
116
+ desc "Run unit tests"
117
+ Rake::TestTask.new(:test_units) do |t|
118
+ t.pattern = 'test/unit/*_test.rb'
119
+ t.verbose = true
120
+ t.ruby_opts = ['-r solr', '-r test/unit', '-Itest/unit']
121
+ end
122
+
123
+ # NOTE: test_functionals does not work standalone currently. It needs the TestSolrServer wrapper in the :test task
124
+ Rake::TestTask.new(:test_functionals) do |t|
125
+ t.pattern = 'test/functional/*_test.rb'
126
+ t.verbose = true
127
+ t.ruby_opts = ['-r solr', '-r test/unit', '-Itest/functional']
128
+ end
129
+
130
+ desc "Run unit and functional tests"
131
+ task :test => [:test_units] do
132
+ rm_rf "test/data" # remove functional test temp data directory
133
+
134
+ # wrap functional tests with a test-specific Solr server
135
+ got_error = TestSolrServer.wrap(SOLR_PARAMS) do
136
+ Rake::Task[:test_functionals].invoke
137
+ end
138
+
139
+ raise "test failures" if got_error
140
+ end
141
+
142
+ # TODO: consider replacing system() to rcov with the included
143
+ # Rake task: http://eigenclass.org/hiki.rb?cmd=view&p=rcov+FAQ&key=rake
144
+ namespace :test do
145
+ desc 'Measures test coverage'
146
+ # borrowed from here: http://clarkware.com/cgi/blosxom/2007/01/05#RcovRakeTask
147
+ task :coverage do
148
+ rm_rf "coverage"
149
+ rm_rf "coverage.data"
150
+ TestSolrServer.wrap(SOLR_PARAMS) do
151
+ system("rcov --aggregate coverage.data --text-summary -Ilib:test/functional test/functional/*_test.rb")
152
+ end
153
+ system("rcov --aggregate coverage.data --text-summary -Ilib:test/unit test/unit/*_test.rb")
154
+ system("open coverage/index.html") if PLATFORM['darwin']
155
+ end
156
+ end
157
+
158
+
159
+ def egrep(pattern)
160
+ Dir['**/*.rb'].each do |fn|
161
+ count = 0
162
+ open(fn) do |f|
163
+ while line = f.gets
164
+ count += 1
165
+ if line =~ pattern
166
+ puts "#{fn}:#{count}:#{line}"
167
+ end
168
+ end
169
+ end
170
+ end
171
+ end
172
+
173
+ desc "Report TODO/FIXME/TBD tags in the code"
174
+ task :todo do
175
+ egrep /#.*(FIXME|TODO|TBD)/
176
+ end
177
+
178
+ LICENSE = <<STR
179
+ # The ASF licenses this file to You under the Apache License, Version 2.0
180
+ # (the "License"); you may not use this file except in compliance with
181
+ # the License. You may obtain a copy of the License at
182
+ #
183
+ # http://www.apache.org/licenses/LICENSE-2.0
184
+ #
185
+ # Unless required by applicable law or agreed to in writing, software
186
+ # distributed under the License is distributed on an "AS IS" BASIS,
187
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
188
+ # See the License for the specific language governing permissions and
189
+ # limitations under the License.
190
+ STR