Sha256: 42f1acc02d45e1ddb3d4277e8ad12dae1e42004ffcbb1b00973dc8cace59faf8
Contents?: true
Size: 1.98 KB
Versions: 3
Compression:
Stored size: 1.98 KB
Contents
require "spec_helper" require "metanorma" require "fileutils" #RSpec.describe Asciidoctor::Gb do RSpec.describe Metanorma::Iso::Processor do registry = Metanorma::Registry.instance registry.register(Metanorma::Iso::Processor) processor = registry.find_processor(:iso) it "registers against metanorma" do expect(processor).not_to be nil end it "registers output formats against metanorma" do expect(processor.output_formats.sort.to_s).to be_equivalent_to <<~"OUTPUT" [[:doc, "doc"], [:html, "html"], [:html_alt, "alt.html"], [:pdf, "pdf"], [:rxl, "rxl"], [:xml, "xml"]] OUTPUT end it "registers version against metanorma" do expect(processor.version.to_s).to match(%r{^Metanorma::ISO }) end it "generates IsoDoc XML from a blank document" do expect(xmlpp(processor.input_to_isodoc(<<~"INPUT", nil))).to be_equivalent_to xmlpp(<<~"OUTPUT") #{ASCIIDOC_BLANK_HDR} INPUT #{BLANK_HDR} <sections/> </iso-standard> OUTPUT end it "generates HTML from IsoDoc XML" do FileUtils.rm_f "test.xml" processor.output(<<~"INPUT", "test.html", :html) <iso-standard xmlns="http://riboseinc.com/isoxml"> <sections> <terms id="H" obligation="normative"><title>Terms, Definitions, Symbols and Abbreviated Terms</title> <term id="J"> <preferred>Term2</preferred> </term> </terms> </sections> </iso-standard> INPUT expect(xmlpp(File.read("test.html", encoding: "utf-8").gsub(%r{^.*<main}m, "<main").gsub(%r{</main>.*}m, "</main>"))).to be_equivalent_to xmlpp(<<~"OUTPUT") <main class="main-section"><button onclick="topFunction()" id="myBtn" title="Go to top">Top</button> <p class="zzSTDTitle1"></p> <div id="H"><h1 id="toc0">1  Terms, Definitions, Symbols and Abbreviated Terms</h1> <h2 class="TermNum" id="J">1.1</h2> <p class="Terms" style="text-align:left;">Term2</p> </div> </main> OUTPUT end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
metanorma-iso-1.3.25 | spec/metanorma/processor_spec.rb |
metanorma-iso-1.3.24 | spec/metanorma/processor_spec.rb |
metanorma-iso-1.3.23 | spec/metanorma/processor_spec.rb |