forked from pdfkit/pdfkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource_spec.rb
98 lines (81 loc) · 3.15 KB
/
source_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
require 'spec_helper'
describe PDFKit::Source do
describe "#url?" do
it "returns true if passed a url like string" do
source = PDFKit::Source.new('http://google.com')
expect(source).to be_url
end
it "returns false if passed a file" do
source = PDFKit::Source.new(File.new(__FILE__))
expect(source).not_to be_url
end
it "returns false if passed HTML" do
source = PDFKit::Source.new('<blink>Oh Hai!</blink>')
expect(source).not_to be_url
end
it "returns false if passed HTML with embedded urls at the beginning of a line" do
source = PDFKit::Source.new("<blink>Oh Hai!</blink>\nhttp://www.google.com")
expect(source).not_to be_url
end
end
describe "#file?" do
it "returns true if passed a file" do
source = PDFKit::Source.new(::File.new(__FILE__))
expect(source).to be_file
end
it "returns false if passed a url like string" do
source = PDFKit::Source.new('http://google.com')
expect(source).not_to be_file
end
it "returns false if passed HTML" do
source = PDFKit::Source.new('<blink>Oh Hai!</blink>')
expect(source).not_to be_file
end
end
describe "#html?" do
it "returns true if passed HTML" do
source = PDFKit::Source.new('<blink>Oh Hai!</blink>')
expect(source).to be_html
end
it "returns false if passed a file" do
source = PDFKit::Source.new(::File.new(__FILE__))
expect(source).not_to be_html
end
it "returns false if passed a url like string" do
source = PDFKit::Source.new('http://google.com')
expect(source).not_to be_html
end
end
describe "#to_input_for_command" do
it "URI escapes source URLs and encloses them in quotes to accomodate ampersands" do
source = PDFKit::Source.new("https://www.google.com/search?q='cat<dev/zero>/dev/null'")
expect(source.to_input_for_command).to eq "\"https://www.google.com/search?q='cat%3Cdev/zero%3E/dev/null'\""
end
it "does not URI escape previously escaped source URLs" do
source = PDFKit::Source.new("https://www.google.com/search?q='cat%3Cdev/zero%3E/dev/null'")
expect(source.to_input_for_command).to eq "\"https://www.google.com/search?q='cat%3Cdev/zero%3E/dev/null'\""
end
it "returns a '-' for HTML strings to indicate that we send that content through STDIN" do
source = PDFKit::Source.new('<blink>Oh Hai!</blink>')
expect(source.to_input_for_command).to eq '-'
end
it "returns the file path for file sources" do
source = PDFKit::Source.new(::File.new(__FILE__))
expect(source.to_input_for_command).to match 'spec/source_spec.rb'
end
end
describe "#to_s" do
it "returns the HTML if passed HTML" do
source = PDFKit::Source.new('<blink>Oh Hai!</blink>')
expect(source.to_s).to eq('<blink>Oh Hai!</blink>')
end
it "returns a path if passed a file" do
source = PDFKit::Source.new(::File.new(__FILE__))
expect(source.to_s).to eq(__FILE__)
end
it "returns the url if passed a url like string" do
source = PDFKit::Source.new('http://google.com')
expect(source.to_s).to eq('http://google.com')
end
end
end