2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
require 'stylesheet/compiler'
|
|
|
|
|
|
|
|
describe Stylesheet::Compiler do
|
2017-07-25 21:49:39 -04:00
|
|
|
describe 'compilation' do
|
|
|
|
Dir["#{Rails.root.join("app/assets/stylesheets")}/*.scss"].each do |path|
|
|
|
|
path = File.basename(path, '.scss')
|
|
|
|
|
|
|
|
it "can compile '#{path}' css" do
|
|
|
|
css, _map = Stylesheet::Compiler.compile_asset(path)
|
|
|
|
expect(css.length).to be > 1000
|
|
|
|
end
|
|
|
|
end
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
|
2019-09-16 12:06:34 -04:00
|
|
|
context "with a theme" do
|
|
|
|
let!(:theme) { Fabricate(:theme) }
|
2021-02-02 13:09:41 -05:00
|
|
|
let!(:upload) { UploadCreator.new(file_from_fixtures("logo.png"), "logo.png").create_for(Discourse.system_user.id) }
|
2019-09-16 12:06:34 -04:00
|
|
|
let!(:upload_theme_field) { ThemeField.create!(theme: theme, target_id: 0, name: "primary", upload: upload, value: "", type_id: ThemeField.types[:theme_upload_var]) }
|
|
|
|
let!(:stylesheet_theme_field) { ThemeField.create!(theme: theme, target_id: 0, name: "scss", value: "body { background: $primary }", type_id: ThemeField.types[:scss]) }
|
|
|
|
before { stylesheet_theme_field.save! }
|
|
|
|
|
|
|
|
it "theme stylesheet should be able to access theme asset variables" do
|
2021-02-02 13:09:41 -05:00
|
|
|
css, _map = Stylesheet::Compiler.compile_asset("desktop_theme", theme_id: theme.id, theme_variables: theme.scss_variables)
|
2019-09-16 12:06:34 -04:00
|
|
|
expect(css).to include(upload.url)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with a plugin" do
|
|
|
|
before do
|
2021-03-12 11:17:42 -05:00
|
|
|
plugin1 = Plugin::Instance.new
|
|
|
|
plugin1.path = "#{Rails.root}/spec/fixtures/plugins/my_plugin/plugin.rb"
|
|
|
|
plugin1.register_css "body { background: $primary }"
|
|
|
|
|
|
|
|
plugin2 = Plugin::Instance.new
|
|
|
|
plugin2.path = "#{Rails.root}/spec/fixtures/plugins/scss_plugin/plugin.rb"
|
|
|
|
|
|
|
|
Discourse.plugins << plugin1
|
|
|
|
Discourse.plugins << plugin2
|
|
|
|
plugin1.activate!
|
|
|
|
plugin2.activate!
|
2019-09-16 12:06:34 -04:00
|
|
|
Stylesheet::Importer.register_imports!
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
Discourse.plugins.pop
|
|
|
|
Stylesheet::Importer.register_imports!
|
2019-09-20 08:32:43 -04:00
|
|
|
DiscoursePluginRegistry.reset!
|
2019-09-16 12:06:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not include theme variables in plugins" do
|
|
|
|
css, _map = Stylesheet::Compiler.compile_asset("my_plugin", theme_id: theme.id)
|
|
|
|
expect(css).not_to include(upload.url)
|
|
|
|
expect(css).to include("background:")
|
|
|
|
end
|
2021-03-12 11:17:42 -05:00
|
|
|
|
|
|
|
it "supports SCSS imports" do
|
|
|
|
css, _map = Stylesheet::Compiler.compile_asset("scss_plugin", theme_id: theme.id)
|
|
|
|
|
|
|
|
expect(css).to include("border-color:red")
|
|
|
|
expect(css).to include("fill:green")
|
|
|
|
expect(css).to include("line-height:1.2em")
|
|
|
|
expect(css).to include("border-color:#c00")
|
|
|
|
end
|
2019-09-16 12:06:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
it "supports asset-url" do
|
2017-08-31 00:06:56 -04:00
|
|
|
css, _map = Stylesheet::Compiler.compile(".body{background-image: asset-url('/images/favicons/github.png');}", "test.scss")
|
2017-04-12 10:52:52 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
expect(css).to include("url('/images/favicons/github.png')")
|
2017-04-12 10:52:52 -04:00
|
|
|
expect(css).not_to include('asset-url')
|
|
|
|
end
|
2017-05-01 15:31:51 -04:00
|
|
|
|
|
|
|
it "supports image-url" do
|
2017-08-31 00:06:56 -04:00
|
|
|
css, _map = Stylesheet::Compiler.compile(".body{background-image: image-url('/favicons/github.png');}", "test.scss")
|
2017-05-01 15:31:51 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
expect(css).to include("url('/favicons/github.png')")
|
2017-05-01 15:31:51 -04:00
|
|
|
expect(css).not_to include('image-url')
|
|
|
|
end
|
2020-08-03 22:57:10 -04:00
|
|
|
|
|
|
|
context "with a color scheme" do
|
|
|
|
it "returns the default color definitions when no color scheme is specified" do
|
|
|
|
css, _map = Stylesheet::Compiler.compile_asset("color_definitions")
|
|
|
|
expect(css).to include("--header_background:")
|
|
|
|
expect(css).to include("--primary:")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns color definitions for a custom color scheme" do
|
|
|
|
cs = Fabricate(:color_scheme, name: 'Stylish', color_scheme_colors: [
|
|
|
|
Fabricate(:color_scheme_color, name: 'header_primary', hex: '88af8e'),
|
|
|
|
Fabricate(:color_scheme_color, name: 'header_background', hex: 'f8745c')
|
|
|
|
])
|
|
|
|
|
|
|
|
css, _map = Stylesheet::Compiler.compile_asset("color_definitions", color_scheme_id: cs.id)
|
|
|
|
|
|
|
|
expect(css).to include("--header_background: #f8745c")
|
|
|
|
expect(css).to include("--header_primary: #88af8e")
|
|
|
|
expect(css).to include("--header_background-rgb: 248,116,92")
|
|
|
|
end
|
2020-08-06 09:46:17 -04:00
|
|
|
|
|
|
|
context "with a plugin" do
|
|
|
|
before do
|
|
|
|
plugin = Plugin::Instance.new
|
|
|
|
plugin.path = "#{Rails.root}/spec/fixtures/plugins/color_definition/plugin.rb"
|
|
|
|
Discourse.plugins << plugin
|
|
|
|
plugin.activate!
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
Discourse.plugins.pop
|
|
|
|
DiscoursePluginRegistry.reset!
|
|
|
|
end
|
|
|
|
|
|
|
|
it "includes color definitions from plugins" do
|
|
|
|
css, _map = Stylesheet::Compiler.compile_asset("color_definitions")
|
|
|
|
|
|
|
|
expect(css).to include("--plugin-color")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-03 22:57:10 -04:00
|
|
|
end
|
2020-12-30 15:29:10 -05:00
|
|
|
|
|
|
|
describe "indexes" do
|
|
|
|
it "include all SCSS files in their respective folders" do
|
|
|
|
refs = []
|
|
|
|
|
|
|
|
Dir.glob(Rails.root.join('app/assets/stylesheets/**/*/')).each do |dir|
|
|
|
|
Dir.glob("#{dir}_index.scss").each do |indexfile|
|
|
|
|
contents = File.read indexfile
|
|
|
|
|
|
|
|
files = Dir["#{dir}*.scss"]
|
|
|
|
files -= Dir["#{dir}_index.scss"]
|
|
|
|
files.each do |path|
|
|
|
|
filename = File.basename(path, ".scss")
|
|
|
|
if !contents.match(/@import "#{filename}";/)
|
|
|
|
refs << "#{filename} import missing in #{indexfile}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(refs).to eq([])
|
|
|
|
end
|
|
|
|
end
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|