Sha256: f4104ebcfc06b0a9d833a9c329c07055cbb812602db0a4446dfad732b24e6c0b

Contents?: true

Size: 1.07 KB

Versions: 11

Compression:

Stored size: 1.07 KB

Contents

require 'test_helper'
require 'ndr_import/file/word'

module NdrImport
  module File
    # Word document file handler tests
    class WordTest < ActiveSupport::TestCase
      def setup
        @permanent_test_files = SafePath.new('permanent_test_files')
      end

      test 'should read word file' do
        file_path = @permanent_test_files.join('hello_world.doc')
        handler = NdrImport::File::Word.new(file_path, nil)
        handler.tables.each do |tablename, sheet|
          assert_nil tablename
          assert_instance_of Enumerator, sheet
          assert_equal ['Hello world, this is a word document'], sheet.to_a
        end
      end

      test 'should raise exception on invalid word file' do
        assert_raises RuntimeError do
          file_path = @permanent_test_files.join('not_a_word_file.doc')
          handler = NdrImport::File::Word.new(file_path, nil)
          handler.tables.each do |tablename, sheet|
            assert_nil tablename
            assert_instance_of Enumerator, sheet
            sheet.to_a
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
ndr_import-8.5.0 test/file/word_test.rb
ndr_import-8.4.0 test/file/word_test.rb
ndr_import-8.3.0 test/file/word_test.rb
ndr_import-8.2.0 test/file/word_test.rb
ndr_import-8.1.0 test/file/word_test.rb
ndr_import-8.0.0 test/file/word_test.rb
ndr_import-7.0.0 test/file/word_test.rb
ndr_import-6.4.1 test/file/word_test.rb
ndr_import-6.4.0 test/file/word_test.rb
ndr_import-6.3.0 test/file/word_test.rb
ndr_import-6.2.0 test/file/word_test.rb