Skip to content

Commit 0392188

Browse files
committedFeb 27, 2017
refactoring base class
1 parent cce8b35 commit 0392188

File tree

14 files changed

+138
-68
lines changed

14 files changed

+138
-68
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@
1111

1212
# rspec failure tracking
1313
.rspec_status
14+
/.byebug_history
15+
/spec/lib/generators/test/generator_spec/test_destination

‎lib/generators/pixelpress/printer/printer_generator.rb

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ def file_name # :doc:
3131

3232
def engine_mounted?
3333
routes = Rails.root.join('config/routes.rb')
34+
puts "HELLO!"
35+
puts routes
3436
routes.exist? && routes.read.include?('Pixelpress::Engine')
3537
end
3638
end

‎lib/pixelpress.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
require 'pixelpress/version'
22
require 'pixelpress/base'
3+
require 'pixelpress/document'
34
require 'pixelpress/engine' if defined? Rails
45
require 'pixelpress/preview' if defined? Rails
56

‎lib/pixelpress/base.rb

+6-47
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,12 @@
11
require 'action_controller'
2-
require 'weasyprint'
2+
require_relative 'renderers/weasyprint_renderer'
3+
require_relative 'renderers/test_renderer'
4+
require_relative 'instance_invocation'
5+
require_relative 'rendering'
36

47
module Pixelpress
58
class Base < ActionController::Base
6-
def html
7-
render(template) unless @html
8-
@html
9-
end
10-
11-
def pdf
12-
stream = StringIO.new pdf_data
13-
stream.singleton_class.class_eval { attr_accessor :original_filename, :content_type }
14-
stream.original_filename = try(:file_name) || 'document.pdf'
15-
stream.content_type = 'application/pdf'
16-
stream
17-
end
18-
19-
class << self
20-
def method_missing(m, *args, &block)
21-
return super unless respond_to_missing?(m)
22-
instance = new
23-
instance.send(m, *args)
24-
instance.instance_variable_set :@template_name, m.to_s
25-
instance
26-
end
27-
28-
def respond_to_missing?(m, include_private = false)
29-
return true if new.methods.include?(m)
30-
super(m, include_private)
31-
end
32-
end
33-
34-
protected
35-
36-
attr_accessor :template
37-
38-
def template
39-
['printers', self.class.to_s.underscore.sub('_printer', ''), @template_name].join('/')
40-
end
41-
42-
private
43-
44-
def pdf_data
45-
return '%PDF-1.5' if ENV['RAILS_ENV'] == 'test'
46-
WeasyPrint.new(html).to_pdf
47-
end
48-
49-
def render(template = caller_locations(1, 1)[0].label)
50-
@html = render_to_string(template)
51-
end
9+
extend InstanceInvocation
10+
include Rendering
5211
end
5312
end

‎lib/pixelpress/document.rb

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
require_relative 'fake_file'
2+
3+
module Pixelpress
4+
class Document
5+
attr_reader :html
6+
attr_reader :file_name
7+
8+
def initialize(html, renderer, options = {})
9+
@html = html
10+
@renderer = renderer
11+
@file_name = options[:file_name]
12+
end
13+
14+
def pdf
15+
FakeFile.new pdf_data, original_filename: file_name
16+
end
17+
18+
private
19+
20+
attr_accessor :renderer
21+
22+
def pdf_data
23+
@pdf_data ||= renderer.render(html)
24+
end
25+
end
26+
end

‎lib/pixelpress/fake_file.rb

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module Pixelpress
2+
class FakeFile < StringIO
3+
attr_accessor :original_filename, :content_type
4+
5+
def initialize(data, options = {})
6+
@original_filename = options[:original_filename]
7+
@content_type = options[:content_type]
8+
super data
9+
end
10+
11+
def original_filename
12+
@original_filename || "document.pdf"
13+
end
14+
15+
def content_type
16+
@content_type || "application/pdf"
17+
end
18+
end
19+
end

‎lib/pixelpress/instance_invocation.rb

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module Pixelpress
2+
module InstanceInvocation
3+
def method_missing(m, *args, &block)
4+
return super unless respond_to_missing?(m)
5+
instance = new
6+
instance.instance_variable_set :@template_name, m.to_s
7+
instance.send(m, *args)
8+
instance.document
9+
end
10+
11+
def respond_to_missing?(m, include_private = false)
12+
return true if new.methods.include?(m)
13+
end
14+
end
15+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class Pixelpress::TestRenderer
2+
def render(html)
3+
'%PDF-1.5'
4+
end
5+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
require 'weasyprint'
2+
3+
class Pixelpress::WeasyPrintRenderer
4+
def render(html)
5+
WeasyPrint.new(html).to_pdf
6+
end
7+
end

‎lib/pixelpress/rendering.rb

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
module Pixelpress
2+
module Rendering
3+
module ClassMethods
4+
attr_writer :default_renderer
5+
def default_renderer
6+
@default_renderer ||= WeasyPrintRenderer.new
7+
end
8+
end
9+
10+
def self.included(base)
11+
base.extend(ClassMethods)
12+
end
13+
14+
def document
15+
@document ||= Document.new render_to_string(template), renderer, file_name: try(:file_name)
16+
end
17+
18+
protected
19+
20+
def renderer
21+
@renderer || self.class.default_renderer
22+
end
23+
24+
def template
25+
['printers', controller_path.sub('_printer', ''), @template_name].join('/')
26+
end
27+
end
28+
end

‎spec/lib/generators/test/generator_spec/printer_generator_spec.rb

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
require 'spec_helper'
22

33
RSpec.describe Pixelpress::Generators::PrinterGenerator do
4-
destination File.expand_path('../test_destination', __FILE__)
4+
path = File.expand_path('../test_destination', __FILE__)
5+
destination path
56
arguments %w(Auth::UserPrinter user_data)
67

78
before(:each) do
89
prepare_destination
9-
# File.write("../test_destination/config/routes.rb", 'mount Pixelpress::Engine => "rails" if Rails.env.development?')
10-
allow(Rails).to receive(:root).and_return Pathname.new('../test_destination/app/')
10+
allow(Rails).to receive(:root).and_return Pathname.new(path)
11+
puts "#{path}/config"
12+
FileUtils.mkdir_p "#{path}/config"
13+
File.write("#{path}/config/routes.rb", 'mount Pixelpress::Engine => "rails" if Rails.env.development?')
1114
run_generator
1215
end
1316

‎spec/pixelpress_spec.rb

+21-18
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,47 @@
11
require 'spec_helper'
22

33
describe Pixelpress do
4-
before(:all) { ActionController::Base.view_paths << File.join(spec_root) }
4+
let(:renderer) { TestRenderer.new }
55

6-
class Invoice
7-
include ActiveModel::Model
8-
9-
attr_accessor :company_invoice
6+
before(:each) do
7+
ActionController::Base.view_paths << File.join(spec_root)
8+
InvoicePrinter.default_renderer = renderer
109
end
1110

1211
class InvoicePrinter < Pixelpress::Base
13-
# layout "pdf"
14-
15-
def invoice; end
12+
def invoice
13+
end
1614

1715
def file_name
1816
'sasha'
1917
end
2018
end
2119

22-
it 'selects the right template' do
23-
expect(InvoicePrinter.invoice.send(:template)).to eq 'printers/invoice/invoice'
20+
class TestRenderer
21+
attr_accessor :called
22+
23+
def render(html)
24+
self.called = true
25+
""
26+
end
2427
end
2528

26-
it 'does output some html' do
27-
expect(InvoicePrinter.invoice.html).to include 'sasha'
29+
it 'selects the right template' do
30+
expect(InvoicePrinter.invoice.html).to include 'Invoice'
2831
end
2932

3033
it 'checks if the file name of pdf is correct' do
3134
printer = InvoicePrinter.invoice.pdf
3235
expect(printer.original_filename).to eq 'sasha'
3336
end
3437

35-
it 'checks if render method renders html' do
36-
html = InvoicePrinter.invoice.send :render, 'printers/invoice/invoice'
37-
expect(html).to include '<html>'
38+
it 'checks if it is calling weasyprinter when html is called' do
39+
InvoicePrinter.invoice.html
40+
expect(renderer.called).to be_falsy
3841
end
3942

40-
it 'checks if it is calling weasyprinter when html is called' do
41-
result = InvoicePrinter.invoice.html
42-
expect(result).not_to include '%PDF-1.5'
43+
fit 'checks if it is calling weasyprinter when pdf is called' do
44+
InvoicePrinter.invoice.pdf
45+
expect(renderer.called).to be_truthy
4346
end
4447
end

‎spec/printers/invoice/invoice.pdf

3 Bytes
Binary file not shown.

‎spec/printers/invoice/sasha.pdf

11 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.