Sha256: fa53733c953f59babfef2d15d4d37f3b69b8ff0022ee74230251babfca9c9245

Contents?: true

Size: 1.28 KB

Versions: 7

Compression:

Stored size: 1.28 KB

Contents

# Encoding: UTF-8

require 'test_helper'
require 'traject/marc_reader'
require 'marc'

describe "Traject::MarcReader" do


  it "reads XML" do
    file = File.new(support_file_path "test_data.utf8.marc.xml")
    settings = Traject::Indexer::Settings.new("marc_source.type" => "xml")
    reader = Traject::MarcReader.new(file, settings)

    array = reader.to_a

    assert_equal 30, array.length
  end

  it "reads Marc binary" do
    file = File.new(support_file_path "test_data.utf8.mrc")
    settings = Traject::Indexer::Settings.new() # binary type is default
    reader = Traject::MarcReader.new(file, settings)

    array = reader.to_a

    assert_equal 30, array.length

    first = array.first

    assert_kind_of MARC::Record, first

    assert first['245']['a'].encoding.name, "UTF-8"
    assert_equal "Fikr-i Ayāz /", first['245']['a']
  end

  it "reads JSON" do
    file = File.new(support_file_path "test_data.utf8.json")
    settings = Traject::Indexer::Settings.new("marc_source.type" => "json")
    reader = Traject::MarcReader.new(file, settings)
    array = reader.to_a

    assert_equal 30, array.length

    first = array.first

    assert_kind_of MARC::Record, first

    assert first['245']['a'].encoding.name, "UTF-8"
    assert_equal "Fikr-i Ayāz /", first['245']['a']
  end



end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
traject-1.0.0.beta.7 test/marc_reader_test.rb
traject-1.0.0.beta.5 test/marc_reader_test.rb
traject-1.0.0.beta.4 test/marc_reader_test.rb
traject-1.0.0.beta.3 test/marc_reader_test.rb
traject-1.0.0.beta.2 test/marc_reader_test.rb
traject-1.0.0.beta.1 test/marc_reader_test.rb
traject-0.17.0 test/marc_reader_test.rb