discourse/spec/models/site_customization_spec.rb

123 lines
5.0 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'spec_helper'
describe SiteCustomization do
before do
SiteCustomization.clear_cache!
end
2013-02-05 14:16:51 -05:00
let :user do
Fabricate(:user)
end
let :customization_params do
2013-09-16 12:55:44 -04:00
{name: 'my name', user_id: user.id, header: "my awesome header", stylesheet: "my awesome css", mobile_stylesheet: nil, mobile_header: nil}
end
2013-02-25 11:42:20 -05:00
let :customization do
SiteCustomization.create!(customization_params)
end
let :customization_with_mobile do
SiteCustomization.create!(customization_params.merge(mobile_stylesheet: ".mobile {better: true;}", mobile_header: "fancy mobile stuff"))
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it 'should set default key when creating a new customization' do
2013-02-05 14:16:51 -05:00
s = SiteCustomization.create!(name: 'my name', user_id: user.id)
2015-01-05 11:04:23 -05:00
expect(s.key).not_to eq(nil)
2013-02-05 14:16:51 -05:00
end
it 'can enable more than one style at once' do
c1 = SiteCustomization.create!(name: '2', user_id: user.id, header: 'World',
enabled: true, mobile_header: 'hi', footer: 'footer',
stylesheet: '.hello{.world {color: blue;}}')
SiteCustomization.create!(name: '1', user_id: user.id, header: 'Hello',
enabled: true, mobile_footer: 'mfooter',
mobile_stylesheet: '.hello{margin: 1px;}',
stylesheet: 'p{width: 1px;}'
)
2015-01-05 11:04:23 -05:00
expect(SiteCustomization.custom_header).to eq("Hello\nWorld")
expect(SiteCustomization.custom_header(nil, :mobile)).to eq("hi")
expect(SiteCustomization.custom_footer(nil, :mobile)).to eq("mfooter")
expect(SiteCustomization.custom_footer).to eq("footer")
desktop_css = SiteCustomization.custom_stylesheet
2015-01-05 11:04:23 -05:00
expect(desktop_css).to match(Regexp.new("#{SiteCustomization::ENABLED_KEY}.css\\?target=desktop"))
mobile_css = SiteCustomization.custom_stylesheet(nil, :mobile)
2015-01-05 11:04:23 -05:00
expect(mobile_css).to match(Regexp.new("#{SiteCustomization::ENABLED_KEY}.css\\?target=mobile"))
2015-01-05 11:04:23 -05:00
expect(SiteCustomization.enabled_stylesheet_contents).to match(/\.hello \.world/)
# cache expiry
c1.enabled = false
c1.save
2015-01-05 11:04:23 -05:00
expect(SiteCustomization.custom_stylesheet).not_to eq(desktop_css)
expect(SiteCustomization.enabled_stylesheet_contents).not_to match(/\.hello \.world/)
end
it 'should be able to look up stylesheets by key' do
c = SiteCustomization.create!(name: '2', user_id: user.id,
enabled: true,
stylesheet: '.hello{.world {color: blue;}}',
mobile_stylesheet: '.world{.hello{color: black;}}')
2015-01-05 11:04:23 -05:00
expect(SiteCustomization.custom_stylesheet(c.key, :mobile)).to match(Regexp.new("#{c.key}.css\\?target=mobile"))
expect(SiteCustomization.custom_stylesheet(c.key)).to match(Regexp.new("#{c.key}.css\\?target=desktop"))
end
2013-02-05 14:16:51 -05:00
it 'should allow including discourse styles' do
c = SiteCustomization.create!(user_id: user.id, name: "test", stylesheet: '@import "desktop";', mobile_stylesheet: '@import "mobile";')
2015-01-05 11:04:23 -05:00
expect(c.stylesheet_baked).not_to match(/Syntax error/)
expect(c.stylesheet_baked.length).to be > 1000
expect(c.mobile_stylesheet_baked).not_to match(/Syntax error/)
expect(c.mobile_stylesheet_baked.length).to be > 1000
2013-02-05 14:16:51 -05:00
end
it 'should provide an awesome error on failure' do
c = SiteCustomization.create!(user_id: user.id, name: "test", stylesheet: "$black: #000; #a { color: $black; }\n\n\nboom", header: '')
2015-01-05 11:04:23 -05:00
expect(c.stylesheet_baked).to match(/Syntax error/)
expect(c.mobile_stylesheet_baked).not_to be_present
end
it 'should provide an awesome error on failure for mobile too' do
c = SiteCustomization.create!(user_id: user.id, name: "test", stylesheet: '', header: '', mobile_stylesheet: "$black: #000; #a { color: $black; }\n\n\nboom", mobile_header: '')
2015-01-05 11:04:23 -05:00
expect(c.mobile_stylesheet_baked).to match(/Syntax error/)
expect(c.stylesheet_baked).not_to be_present
end
it 'should correct bad html in body_tag_baked and head_tag_baked' do
c = SiteCustomization.create!(user_id: -1, name: "test", head_tag: "<b>I am bold", body_tag: "<b>I am bold")
expect(c.head_tag_baked).to eq("<b>I am bold</b>")
expect(c.body_tag_baked).to eq("<b>I am bold</b>")
end
it 'should precompile fragments in body and head tags' do
with_template = <<HTML
<script type='text/x-handlebars' name='template'>
{{hello}}
</script>
<script type='text/x-handlebars' data-template-name='raw_template.raw'>
{{hello}}
</script>
HTML
c = SiteCustomization.create!(user_id: -1, name: "test", head_tag: with_template, body_tag: with_template)
expect(c.head_tag_baked).to match(/HTMLBars/)
expect(c.body_tag_baked).to match(/HTMLBars/)
expect(c.body_tag_baked).to match(/EmberCompatHandlebars/)
expect(c.head_tag_baked).to match(/EmberCompatHandlebars/)
end
it 'should create body_tag_baked on demand if needed' do
c = SiteCustomization.create!(user_id: -1, name: "test", head_tag: "<b>test", enabled: true)
c.update_columns(head_tag_baked: nil)
expect(SiteCustomization.custom_head_tag).to match(/<b>test<\/b>/)
end
2013-02-05 14:16:51 -05:00
end