2013-06-03 16:12:24 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
require 'email'
|
|
|
|
|
2013-06-10 15:33:37 -04:00
|
|
|
describe Email::Styles do
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2013-06-13 12:15:05 -04:00
|
|
|
def basic_fragment(html)
|
|
|
|
styler = Email::Styles.new(html)
|
|
|
|
styler.format_basic
|
|
|
|
Nokogiri::HTML.fragment(styler.to_html)
|
2013-06-03 16:12:24 -04:00
|
|
|
end
|
|
|
|
|
2013-06-13 12:15:05 -04:00
|
|
|
def html_fragment(html)
|
|
|
|
styler = Email::Styles.new(html)
|
|
|
|
styler.format_basic
|
|
|
|
styler.format_html
|
|
|
|
Nokogiri::HTML.fragment(styler.to_html)
|
2013-06-03 16:12:24 -04:00
|
|
|
end
|
|
|
|
|
2013-06-13 12:15:05 -04:00
|
|
|
context "basic formatter" do
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2013-06-13 12:15:05 -04:00
|
|
|
it "works with an empty string" do
|
|
|
|
style = Email::Styles.new("")
|
|
|
|
style.format_basic
|
|
|
|
expect(style.to_html).to be_blank
|
|
|
|
end
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2013-06-13 12:15:05 -04:00
|
|
|
it "adds a max-width to images" do
|
|
|
|
frag = basic_fragment("<img src='gigantic.jpg'>")
|
|
|
|
expect(frag.at("img")["style"]).to match("max-width")
|
|
|
|
end
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2013-06-13 12:15:05 -04:00
|
|
|
it "adds a width and height to images with an emoji path" do
|
2013-11-28 17:20:56 -05:00
|
|
|
frag = basic_fragment("<img src='/plugins/emoji/fish.png' class='emoji'>")
|
2013-07-26 03:27:46 -04:00
|
|
|
expect(frag.at("img")["width"]).to eq("20")
|
|
|
|
expect(frag.at("img")["height"]).to eq("20")
|
2013-06-13 12:15:05 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "converts relative paths to absolute paths" do
|
|
|
|
frag = basic_fragment("<img src='/some-image.png'>")
|
|
|
|
expect(frag.at("img")["src"]).to eq("#{Discourse.base_url}/some-image.png")
|
|
|
|
end
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2013-07-26 03:27:46 -04:00
|
|
|
it "strips classes and ids" do
|
|
|
|
frag = basic_fragment("<div class='foo' id='bar'><div class='foo' id='bar'></div></div>")
|
|
|
|
expect(frag.to_html).to eq("<div><div></div></div>")
|
|
|
|
end
|
|
|
|
|
2013-06-03 16:12:24 -04:00
|
|
|
end
|
|
|
|
|
2013-06-13 12:15:05 -04:00
|
|
|
context "html template formatter" do
|
|
|
|
it "works with an empty string" do
|
|
|
|
style = Email::Styles.new("")
|
|
|
|
style.format_html
|
|
|
|
expect(style.to_html).to be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
it "attaches a style to h3 tags" do
|
|
|
|
frag = html_fragment("<h3>hello</h3>")
|
|
|
|
expect(frag.at('h3')['style']).to be_present
|
|
|
|
end
|
|
|
|
|
|
|
|
it "attaches a style to hr tags" do
|
|
|
|
frag = html_fragment("hello<hr>")
|
|
|
|
expect(frag.at('hr')['style']).to be_present
|
|
|
|
end
|
|
|
|
|
|
|
|
it "attaches a style to a tags" do
|
|
|
|
frag = html_fragment("<a href='#'>wat</a>")
|
|
|
|
expect(frag.at('a')['style']).to be_present
|
|
|
|
end
|
|
|
|
|
|
|
|
it "attaches a style to a tags" do
|
|
|
|
frag = html_fragment("<a href='#'>wat</a>")
|
|
|
|
expect(frag.at('a')['style']).to be_present
|
|
|
|
end
|
|
|
|
|
|
|
|
it "attaches a style to ul and li tags" do
|
|
|
|
frag = html_fragment("<ul><li>hello</li></ul>")
|
|
|
|
expect(frag.at('ul')['style']).to be_present
|
|
|
|
expect(frag.at('li')['style']).to be_present
|
|
|
|
end
|
2014-07-14 16:41:05 -04:00
|
|
|
|
|
|
|
it "converts iframes to links" do
|
|
|
|
iframe_url = "http://www.youtube.com/embed/7twifrxOTQY?feature=oembed&wmode=opaque"
|
|
|
|
frag = html_fragment("<iframe src=\"#{iframe_url}\"></iframe>")
|
|
|
|
expect(frag.at('iframe')).to be_blank
|
|
|
|
expect(frag.at('a')).to be_present
|
|
|
|
expect(frag.at('a')['href']).to eq(iframe_url)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "won't allow non URLs in iframe src, strips them with no link" do
|
|
|
|
iframe_url = "alert('xss hole')"
|
|
|
|
frag = html_fragment("<iframe src=\"#{iframe_url}\"></iframe>")
|
|
|
|
expect(frag.at('iframe')).to be_blank
|
|
|
|
expect(frag.at('a')).to be_blank
|
|
|
|
end
|
2014-06-13 17:11:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context "rewriting protocol relative URLs to the forum" do
|
|
|
|
it "doesn't rewrite a url to another site" do
|
|
|
|
frag = html_fragment('<a href="//youtube.com/discourse">hello</a>')
|
|
|
|
frag.at('a')['href'].should == "//youtube.com/discourse"
|
|
|
|
end
|
|
|
|
|
|
|
|
context "without https" do
|
|
|
|
before do
|
|
|
|
SiteSetting.stubs(:use_https).returns(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "rewrites the href to have http" do
|
|
|
|
frag = html_fragment('<a href="//test.localhost/discourse">hello</a>')
|
|
|
|
frag.at('a')['href'].should == "http://test.localhost/discourse"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "rewrites the src to have http" do
|
|
|
|
frag = html_fragment('<img src="//test.localhost/blah.jpg">')
|
|
|
|
frag.at('img')['src'].should == "http://test.localhost/blah.jpg"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with https" do
|
|
|
|
before do
|
|
|
|
SiteSetting.stubs(:use_https).returns(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "rewrites the forum URL to have http" do
|
|
|
|
frag = html_fragment('<a href="//test.localhost/discourse">hello</a>')
|
|
|
|
frag.at('a')['href'].should == "https://test.localhost/discourse"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "rewrites the src to have https" do
|
|
|
|
frag = html_fragment('<img src="//test.localhost/blah.jpg">')
|
|
|
|
frag.at('img')['src'].should == "https://test.localhost/blah.jpg"
|
|
|
|
end
|
|
|
|
end
|
2013-06-13 12:15:05 -04:00
|
|
|
|
2013-06-03 16:12:24 -04:00
|
|
|
end
|
|
|
|
|
2013-06-13 12:15:05 -04:00
|
|
|
|
2013-06-03 16:12:24 -04:00
|
|
|
end
|