Sha256: 2fc9fe47dd4d8f21fcf5278438ec5a23843a1d40fc134118e497c5abf1b37ce7

Contents?: true

Size: 1.27 KB

Versions: 7

Compression:

Stored size: 1.27 KB

Contents

# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License.  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

begin
  require 'solr'
  require 'test/unit'
  require 'xml/libxml'

  class XPathMapperTest < Test::Unit::TestCase
  
    def setup
      @doc = XML::Document.file(File.expand_path(File.dirname(__FILE__)) + "/xpath_test_file.xml")
    end

    def test_simple_xpath
      mapping = {:solr_field1 => :'/root/parent/child',
                 :solr_field2 => :'/root/parent/child/@attribute'}    
    
      mapper = Solr::Importer::XPathMapper.new(mapping)    
      mapped_data = mapper.map(@doc)
        
      assert_equal ['text1', 'text2'], mapped_data[:solr_field1]
      assert_equal ['attribute1', 'attribute2'], mapped_data[:solr_field2]
    end

  end
rescue LoadError => e
  puts "XPathMapperTest not run because #{e}"
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
greglu-solr-ruby-0.0.7 test/unit/xpath_mapper_test.rb
solr-ruby-0.0.8 test/unit/xpath_mapper_test.rb
solr-ruby-0.0.3 test/unit/xpath_mapper_test.rb
solr-ruby-0.0.5 test/unit/xpath_mapper_test.rb
solr-ruby-0.0.7 test/unit/xpath_mapper_test.rb
solr-ruby-0.0.4 test/unit/xpath_mapper_test.rb
solr-ruby-0.0.6 test/unit/xpath_mapper_test.rb