require 'test_helper' require 'review/configure' require 'review/epubmaker' class EPUB3MakerTest < Test::Unit::TestCase def setup config = ReVIEW::Configure.values config.merge!( 'bookname' => 'sample', 'title' => 'Sample Book', 'epubversion' => 3, 'urnid' => 'http://example.jp/', 'date' => '2011-01-01', 'language' => 'en', 'modified' => '2014-12-13T14:15:16Z', 'titlepage' => nil ) @producer = ReVIEW::EPUBMaker::Producer.new(config) end def test_initialize assert ReVIEW::EPUBMaker::Producer.new(ReVIEW::Configure.values) end def test_resource_en @producer.config['language'] = 'en' @producer.modify_config assert_equal 'Table of Contents', ReVIEW::I18n.t('toctitle') end def test_resource_ja @producer.config['language'] = 'ja' @producer.modify_config assert_equal '目次', ReVIEW::I18n.t('toctitle') end def test_mimetype output = @producer.instance_eval { @epub.mimetype } assert_equal 'application/epub+zip', output end def test_container output = @producer.instance_eval { @epub.container } expect = < EOT assert_equal expect, output end def test_stage1_opf output = @producer.instance_eval { @epub.opf } expect = < Sample Book en 2011-01-01 2014-12-13T14:15:16Z http://example.jp/ EOT assert_equal expect, output end def test_stage1_opf_ebpaj @producer.config.merge!( 'opf_prefix' => { 'ebpaj' => 'http://www.ebpaj.jp/' }, 'opf_meta' => { 'ebpaj:guide-version' => '1.1.2' } ) @producer.modify_config output = @producer.instance_eval { @epub.opf } expect = < Sample Book en 2011-01-01 2014-12-13T14:15:16Z http://example.jp/ 1.1.2 EOT assert_equal expect, output end def test_stage1_opf_fileas @producer.config.merge!('title' => { 'name' => 'これは書籍です', 'file-as' => 'コレハショセキデス' }, 'aut' => [{ 'name' => '著者A', 'file-as' => 'チョシャA' }, { 'name' => '著者B', 'file-as' => 'チョシャB' }], 'pbl' => [{ 'name' => '出版社', 'file-as' => 'シュッパンシャ' }]) @producer.modify_config output = @producer.instance_eval { @epub.opf } expect = < これは書籍です コレハショセキデス en 2011-01-01 2014-12-13T14:15:16Z http://example.jp/ 著者A aut チョシャA 著者B aut チョシャB 出版社 pbl シュッパンシャ 出版社 pbl シュッパンシャ EOT assert_equal expect, output end def test_stage1_ncx output = @producer.instance_eval { @epub.ncx([]) } expect = < Table of Contents EOT assert_equal expect, output end def stage2 # add one item @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch01.html', title: 'CH01', level: 1) end def test_stage2_add_l1item stage2 expect = ReVIEW::EPUBMaker::Content.new(file: 'ch01.html', id: 'ch01-html', media: 'application/xhtml+xml', title: 'CH01', level: 1) assert_equal expect, @producer.contents[0] end def test_stage2_opf stage2 output = @producer.instance_eval { @epub.opf } expect = < Sample Book en 2011-01-01 2014-12-13T14:15:16Z http://example.jp/ EOT assert_equal expect, output end def test_stage2_ncx stage2 output = @producer.instance_eval { @epub.ncx([]) } expect = < Table of Contents EOT assert_equal expect, output end def stage3 # add more items @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch01.html', title: %Q(CH01<>&"), level: 1) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch02.html', title: 'CH02', level: 1) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S1', title: 'CH02.1', level: 2) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S1.1', title: 'CH02.1.1', level: 3) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S1.1.1', title: 'CH02.1.1.1', level: 4) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S1.1.1.1', title: 'CH02.1.1.1.1', level: 5) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S1.1.2', title: 'CH02.1.1.2', level: 4) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S2', title: 'CH02.2', level: 2) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S2.1', title: 'CH02.2.1', level: 3) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch03.html', title: 'CH03', level: 1, properties: ['mathml']) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch03.html#S1', title: 'CH03.1', level: 2) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch03.html#S1.1', title: 'CH03.1.1', level: 3) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'ch04.html', title: 'CH04', level: 1) @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'sample.png') @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'sample.jpg') @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'sample.JPEG') @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'sample.SvG') @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'sample.GIF') @producer.contents << ReVIEW::EPUBMaker::Content.new(file: 'sample.css') end def test_stage3_add_various_items stage3 expect = [ ReVIEW::EPUBMaker::Content.new(file: 'ch01.html', id: 'ch01-html', media: 'application/xhtml+xml', title: %Q(CH01<>&"), level: 1), ReVIEW::EPUBMaker::Content.new(file: 'ch02.html', id: 'ch02-html', media: 'application/xhtml+xml', title: 'CH02', level: 1), ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S1', id: 'ch02-html#S1', media: 'html#s1', title: 'CH02.1', level: 2), ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S1.1', id: 'ch02-html#S1-1', media: '1', title: 'CH02.1.1', level: 3), ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S1.1.1', id: 'ch02-html#S1-1-1', media: '1', title: 'CH02.1.1.1', level: 4), ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S1.1.1.1', id: 'ch02-html#S1-1-1-1', media: '1', title: 'CH02.1.1.1.1', level: 5), ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S1.1.2', id: 'ch02-html#S1-1-2', media: '2', title: 'CH02.1.1.2', level: 4), ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S2', id: 'ch02-html#S2', media: 'html#s2', title: 'CH02.2', level: 2), ReVIEW::EPUBMaker::Content.new(file: 'ch02.html#S2.1', id: 'ch02-html#S2-1', media: '1', title: 'CH02.2.1', level: 3), ReVIEW::EPUBMaker::Content.new(file: 'ch03.html', id: 'ch03-html', media: 'application/xhtml+xml', title: 'CH03', level: 1, properties: ['mathml']), ReVIEW::EPUBMaker::Content.new(file: 'ch03.html#S1', id: 'ch03-html#S1', media: 'html#s1', title: 'CH03.1', level: 2), ReVIEW::EPUBMaker::Content.new(file: 'ch03.html#S1.1', id: 'ch03-html#S1-1', media: '1', title: 'CH03.1.1', level: 3), ReVIEW::EPUBMaker::Content.new(file: 'ch04.html', id: 'ch04-html', media: 'application/xhtml+xml', title: 'CH04', level: 1), ReVIEW::EPUBMaker::Content.new(file: 'sample.png', id: 'sample-png', media: 'image/png'), ReVIEW::EPUBMaker::Content.new(file: 'sample.jpg', id: 'sample-jpg', media: 'image/jpeg'), ReVIEW::EPUBMaker::Content.new(file: 'sample.JPEG', id: 'sample-JPEG', media: 'image/jpeg'), ReVIEW::EPUBMaker::Content.new(file: 'sample.SvG', id: 'sample-SvG', media: 'image/svg+xml'), ReVIEW::EPUBMaker::Content.new(file: 'sample.GIF', id: 'sample-GIF', media: 'image/gif'), ReVIEW::EPUBMaker::Content.new(file: 'sample.css', id: 'sample-css', media: 'text/css') ] assert_equal expect, @producer.contents end def test_stage3_opf stage3 output = @producer.instance_eval { @epub.opf } expect = < Sample Book en 2011-01-01 2014-12-13T14:15:16Z http://example.jp/ EOT assert_equal expect, output end def test_stage3_ncx stage3 @producer.config['toclevel'] = 2 output = @producer.instance_eval { @epub.ncx([]) } expect = < Table of Contents EOT assert_equal expect, output end def test_stage3_mytoc stage3 @producer.config['toclevel'] = 2 output = @producer.instance_eval { @epub.mytoc } expect = < Table of Contents

Table of Contents

EOT assert_equal expect, output end def test_stage3_flat @producer.config.deep_merge!( 'toclevel' => 2, 'epubmaker' => { 'flattoc' => true, 'flattocindent' => false } ) @producer.modify_config stage3 output = @producer.instance_eval { @epub.mytoc } expect = < Table of Contents

Table of Contents

EOT assert_equal expect, output end def test_stage3_cover stage3 output = @producer.instance_eval { @epub.cover } expect = < Sample Book

Sample Book

EOT assert_equal expect, output end def test_stage3_cover_with_image stage3 @producer.config['coverimage'] = 'sample.png' @producer.modify_config output = @producer.instance_eval { @epub.cover } expect = < Sample Book
Sample Book
EOT assert_equal expect, output end def test_colophon_default @producer.config.merge!('aut' => ['Mr.Smith'], 'pbl' => ['BLUEPRINT']) @producer.modify_config output = @producer.instance_eval { @epub.colophon } expect = < Colophon

Sample Book

published by Jan. 1, 2011

AuthorMr.Smith
PublisherBLUEPRINT
EOT assert_equal expect, output end def test_colophon_pht @producer.config.merge!('aut' => ['Mr.Smith'], 'pbl' => ['BLUEPRINT'], 'pht' => ['Mrs.Smith']) @producer.modify_config output = @producer.instance_eval { @epub.colophon } expect = < Colophon

Sample Book

published by Jan. 1, 2011

AuthorMr.Smith
PublisherBLUEPRINT
Director of PhotographyMrs.Smith
EOT assert_equal expect, output end def test_colophon_history @producer.config.merge!('aut' => 'Mr.Smith', 'pbl' => 'BLUEPRINT', 'pht' => 'Mrs.Smith', 'language' => 'ja') @producer.modify_config history = @producer.instance_eval { @epub.colophon_history } expect = <

2011年1月1日 発行

EOT assert_equal expect, history end def test_colophon_history_2 @producer.config.merge!('aut' => ['Mr.Smith'], 'pbl' => ['BLUEPRINT'], 'pht' => ['Mrs.Smith'], 'language' => 'ja', 'history' => [['2011-08-03 v1.0.0版発行', '2012-02-15 v1.1.0版発行']]) @producer.modify_config history = @producer.instance_eval { @epub.colophon_history } expect = <

2011年8月3日 v1.0.0版発行

2012年2月15日 v1.1.0版発行

EOT assert_equal expect, history end def test_colophon_history_date @producer.config.merge!('aut' => ['Mr.Smith'], 'pbl' => ['BLUEPRINT'], 'pht' => ['Mrs.Smith'], 'language' => 'ja', 'history' => [['2011-08-03', '2012-02-15']]) @producer.modify_config history = @producer.instance_eval { @epub.colophon_history } expect = <

2011年8月3日 初版第1刷 発行

2012年2月15日 初版第2刷 発行

EOT assert_equal expect, history end def test_colophon_history_date2 @producer.config.merge!('aut' => ['Mr.Smith'], 'pbl' => ['BLUEPRINT'], 'pht' => ['Mrs.Smith'], 'language' => 'ja', 'history' => [['2011-08-03', '2012-02-15'], ['2012-10-01'], ['2013-03-01']]) @producer.modify_config history = @producer.instance_eval { @epub.colophon_history } expect = <

2011年8月3日 初版第1刷 発行

2012年2月15日 初版第2刷 発行

2012年10月1日 第2版第1刷 発行

2013年3月1日 第3版第1刷 発行

EOT assert_equal expect, history end def test_detect_mathml Dir.mktmpdir do |dir| epubmaker = ReVIEW::EPUBMaker.new path = File.join(dir, 'test.html') html = < Colophon

-b±b2-4ac2a

EOT File.write(path, html) assert_equal ['mathml'], epubmaker.detect_properties(path) end end def test_detect_mathml_ns Dir.mktmpdir do |dir| epubmaker = ReVIEW::EPUBMaker.new path = File.join(dir, 'test.html') html = < Colophon

-b±b2-4ac2a

EOT File.write(path, html) assert_equal ['mathml'], epubmaker.detect_properties(path) end end def test_image_size begin require 'image_size' rescue LoadError $stderr.puts 'skip test_image_size (cannot find image_size.rb)' return true end epubmaker = ReVIEW::EPUBMaker.new epubmaker.instance_eval do def warn(msg) $stderr.puts msg end end _out, err = capture_output do epubmaker.check_image_size(assets_dir, 5500, %w[png gif jpg jpeg svg ttf woff otf]) end expected = <<-EOS large.gif: 250x150 exceeds a limit. suggeted value is 95x57 large.jpg: 250x150 exceeds a limit. suggeted value is 95x57 large.png: 250x150 exceeds a limit. suggeted value is 95x57 large.svg: 250x150 exceeds a limit. suggeted value is 95x57 EOS assert_equal expected, err end def test_build_part Dir.mktmpdir do |tmpdir| book = ReVIEW::Book::Base.new book.catalog = ReVIEW::Catalog.new('CHAPS' => %w[ch1.re]) io1 = StringIO.new("//list[sampletest][a]{\nfoo\n//}\n") chap1 = ReVIEW::Book::Chapter.new(book, 1, 'ch1', 'ch1.re', io1) part1 = ReVIEW::Book::Part.new(book, 1, [chap1]) book.parts = [part1] epubmaker = ReVIEW::EPUBMaker.new epubmaker.instance_eval do @config = book.config @producer = ReVIEW::EPUBMaker::Producer.new(@config) end epubmaker.build_part(part1, tmpdir, 'part1.html') expected = <<-EOB

第I部

EOB assert_equal expected, File.read(File.join(tmpdir, 'part1.html')) end end end