Sha256: 7b09a207a290d1ad7b20581229b768ebd63e384885efbf1f6b3607200f9a74d7
Contents?: true
Size: 1.54 KB
Versions: 10
Compression:
Stored size: 1.54 KB
Contents
# -*- coding: utf-8 -*- require_relative 'helper' require 'epub/parser' require 'epub/maker/publication' class TestMakerPublication < Test::Unit::TestCase def setup rootfile = 'OPS/ルートファイル.opf' @opf = File.read(File.expand_path("../fixtures/book/#{rootfile}", __FILE__)) @package = EPUB::Parser::Publication.new(@opf).parse end def test_to_xml_attribute doc = Nokogiri.XML(@package.to_xml) identifier = doc.xpath('/opf:package/opf:metadata/dc:identifier', EPUB::NAMESPACES).first assert_equal 'pub-id', identifier['id'] meta = doc.xpath('/opf:package/opf:metadata/opf:meta[@scheme]', EPUB::NAMESPACES).first assert_equal 'marc:relators', meta['scheme'] link = doc.xpath('/opf:package/opf:metadata/opf:link[@refines]', EPUB::NAMESPACES).first assert_equal 'http://example.org/onix/12389347', link['href'] manifest = doc.xpath('/opf:package/opf:manifest', EPUB::NAMESPACES).first assert_equal 'manifest-id', manifest['id'] item = doc.xpath('/opf:package/opf:manifest/opf:item[@id="nav"]', EPUB::NAMESPACES).first assert_equal 'application/xhtml+xml', item['media-type'] spine = doc.xpath('/opf:package/opf:spine', EPUB::NAMESPACES).first assert_equal 'spine-id', spine['id'] itemref = doc.xpath('/opf:package/opf:spine/opf:itemref', EPUB::NAMESPACES).first assert_equal 'cover', itemref['idref'] media_type = doc.xpath('/opf:package/opf:bindings/opf:mediaType', EPUB::NAMESPACES).first assert_equal 'application/x-demo-slideshow', media_type['media-type'] end end
Version data entries
10 entries across 10 versions & 1 rubygems