# encoding: utf-8 # # Copyright October 2014, Jesse Doyle. All rights reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'spec_helper' describe Prawn::Icon::Interface do describe '::icon' do context 'valid icon key' do context 'with options' do it 'should handle text options (size)' do pdf = create_pdf pdf.icon 'fa-arrows', size: 60 text = PDF::Inspector::Text.analyze(pdf.render) expect(text.font_settings.first[:size]).to eq(60) end end context 'inline_format: true' do it 'should handle text options (size)' do pdf = create_pdf pdf.icon 'fa-arrows', inline_format: true text = PDF::Inspector::Text.analyze(pdf.render) expect(text.strings.first).to eq("\uf047") expect(text.font_settings.first[:size]).to eq(60.0) end it 'should be able to render on mulitple documents' do pdf1 = create_pdf pdf2 = create_pdf pdf1.icon 'fa-arrows', inline_format: true pdf2.icon 'fa-arrows', inline_format: true text1 = PDF::Inspector::Text.analyze(pdf1.render) text2 = PDF::Inspector::Text.analyze(pdf2.render) expect(text1.strings.first).to eq("\uf047") expect(text2.strings.first).to eq("\uf047") end end context 'without options' do it 'should render an icon to document' do pdf = create_pdf pdf.icon 'fa-arrows' text = PDF::Inspector::Text.analyze(pdf.render) expect(text.strings.first).to eq("\uf047") end end end context 'invalid icon key' do it 'should raise IconNotFound' do pdf = create_pdf proc = Proc.new { pdf.icon 'fa-__INVALID' } expect(proc).to raise_error(Prawn::Errors::IconNotFound) end end context 'invalid specifier' do it 'should raise UnknownFont' do pdf = create_pdf proc = Proc.new { pdf.icon '__INVALID__' } expect(proc).to raise_error(Prawn::Errors::UnknownFont) end end end describe '::make_icon' do context ':inline_format => false (default)' do it 'should return a Prawn::Icon instance' do pdf = create_pdf icon = pdf.make_icon 'fa-arrows' expect(icon.class).to eq(Prawn::Icon) end end context ':inline_format => true' do it 'should return a Prawn::::Text::Formatted::Box instance' do pdf = create_pdf icon = pdf.make_icon 'fa-arrows', inline_format: true expect(icon.class).to eq(Prawn::Text::Formatted::Box) end end end describe '::inline_icon' do it 'should return a Prawn::Text::Formatted::Box instance' do pdf = create_pdf icon = pdf.inline_icon 'fa-arrows' expect(icon.class).to eq(Prawn::Text::Formatted::Box) end end describe '::table_icon' do it 'should return a hash with font and content keys' do pdf = create_pdf icon = pdf.table_icon 'fa-arrows' expect(icon.class).to eq(Hash) expect(icon[:font]).to eq('fa') expect(icon[:content]).to eq("\uf047") end it 'should raise an error if inline_format: true' do pdf = create_pdf proc = Proc.new { pdf.table_icon 'fa-arrows', inline_format: true } expect(proc).to raise_error(Prawn::Errors::UnknownOption) end end end