require "spec_helper"
describe BrDanfe::DanfeLib::Transp do
let(:base_dir) { "./spec/fixtures/nfe/lib/"}
let(:output_pdf) { "#{base_dir}output.pdf" }
let(:pdf) { BrDanfe::DanfeLib::Document.new }
let(:xml) { BrDanfe::DanfeLib::XML.new(xml_as_string) }
subject { described_class.new(pdf, xml) }
describe "#render" do
let(:xml_as_string) do
<<-eos
0
71434064000149
Nome do Transportador Ltda
964508990089
Rua do Transportador, 456
Votorantim
SP
ABC-1234
SP
123456
eos
end
before do
subject.render
File.delete(output_pdf) if File.exist?(output_pdf)
end
it "renders xml to the pdf" do
expect(File.exist?(output_pdf)).to be_falsey
pdf.render_file output_pdf
expect("#{base_dir}transp#render.pdf").to have_same_content_of file: output_pdf
end
context "when modFrete is 0" do
let(:xml_as_string) do
<<-eos
0
eos
end
it "renders '0-Emitente' to the pdf" do
expect(File.exist?(output_pdf)).to be_falsey
pdf.render_file output_pdf
expect("#{base_dir}transp#render-modfrete_0.pdf").to have_same_content_of file: output_pdf
end
end
context "when modFrete is 1" do
let(:xml_as_string) do
<<-eos
1
eos
end
it "renders '1-Destinatário' to the pdf" do
expect(File.exist?(output_pdf)).to be_falsey
pdf.render_file output_pdf
expect("#{base_dir}transp#render-modfrete_1.pdf").to have_same_content_of file: output_pdf
end
end
context "when modFrete is 2" do
let(:xml_as_string) do
<<-eos
2
eos
end
it "renders '2-Terceiros' to the pdf" do
expect(File.exist?(output_pdf)).to be_falsey
pdf.render_file output_pdf
expect("#{base_dir}transp#render-modfrete_2.pdf").to have_same_content_of file: output_pdf
end
end
context "when modFrete is 9" do
let(:xml_as_string) do
<<-eos
9
eos
end
it "renders '9-Sem Frete' to the pdf" do
expect(File.exist?(output_pdf)).to be_falsey
pdf.render_file output_pdf
expect("#{base_dir}transp#render-modfrete_9.pdf").to have_same_content_of file: output_pdf
end
end
end
end