Sha256: b55719eb9d44a8ce351acddf714678194e7641d158824811dda7b075f46a397e

Contents?: true

Size: 1.85 KB

Versions: 13

Compression:

Stored size: 1.85 KB

Contents

# -*- coding: utf-8 -*-
require 'helper'
require 'write_xlsx/package/content_types'

class TestContentTypes < Test::Unit::TestCase
  def test_assemble_xml_file
    @obj = Writexlsx::Package::ContentTypes.new(nil)
    @obj.add_worksheet_name('sheet1')
    @obj.add_default('jpeg', 'image/jpeg')
    @obj.add_shared_strings
    @obj.add_calc_chain
    @obj.assemble_xml_file
    result = got_to_array(@obj.xml_str)
    expected = expected_to_array(<<EOS
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">

  <Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/>
  <Default Extension="xml" ContentType="application/xml"/>
  <Default Extension="jpeg" ContentType="image/jpeg"/>

  <Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/>
  <Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/>
  <Override PartName="/xl/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"/>
  <Override PartName="/xl/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/>
  <Override PartName="/xl/workbook.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"/>
  <Override PartName="/xl/worksheets/sheet1.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/>
  <Override PartName="/xl/sharedStrings.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"/>
  <Override PartName="/xl/calcChain.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml"/>
</Types>
EOS
    )
    assert_equal(expected, result)
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
write_xlsx-0.86.0 test/package/content_types/test_content_types.rb
write_xlsx-0.85.11 test/package/content_types/test_content_types.rb
write_xlsx-0.85.10 test/package/content_types/test_content_types.rb
write_xlsx-0.85.9 test/package/content_types/test_content_types.rb
write_xlsx-0.85.8 test/package/content_types/test_content_types.rb
write_xlsx-0.85.7 test/package/content_types/test_content_types.rb
write_xlsx-0.85.6 test/package/content_types/test_content_types.rb
write_xlsx-0.85.5 test/package/content_types/test_content_types.rb
write_xlsx-0.85.4 test/package/content_types/test_content_types.rb
write_xlsx-0.85.3 test/package/content_types/test_content_types.rb
write_xlsx-0.85.2 test/package/content_types/test_content_types.rb
write_xlsx-0.85.1 test/package/content_types/test_content_types.rb
write_xlsx-0.83.0 test/package/content_types/test_content_types.rb