2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
require 'rails_helper'
|
|
|
|
require 'stylesheet/compiler'
|
|
|
|
|
|
|
|
describe Stylesheet::Manager do
|
2017-04-20 22:31:23 +08:00
|
|
|
|
|
|
|
it 'does not crash for missing theme' do
|
2017-05-03 23:31:16 +08:00
|
|
|
Theme.clear_default!
|
2017-04-20 22:31:23 +08:00
|
|
|
link = Stylesheet::Manager.stylesheet_link_tag(:embedded_theme)
|
|
|
|
expect(link).to eq("")
|
|
|
|
|
2018-08-08 12:46:34 +08:00
|
|
|
theme = Fabricate(:theme)
|
2018-07-12 12:18:21 +08:00
|
|
|
SiteSetting.default_theme_id = theme.id
|
2017-04-20 22:31:23 +08:00
|
|
|
|
|
|
|
link = Stylesheet::Manager.stylesheet_link_tag(:embedded_theme)
|
|
|
|
expect(link).not_to eq("")
|
|
|
|
end
|
|
|
|
|
2019-01-26 01:00:19 +08:00
|
|
|
it "still returns something for no themes" do
|
|
|
|
link = Stylesheet::Manager.stylesheet_link_tag(:desktop, 'all', [])
|
|
|
|
expect(link).not_to eq("")
|
|
|
|
end
|
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
it 'can correctly compile theme css' do
|
2018-08-08 12:46:34 +08:00
|
|
|
theme = Fabricate(:theme)
|
2017-04-12 22:52:52 +08:00
|
|
|
|
2017-05-03 04:01:01 +08:00
|
|
|
theme.set_field(target: :common, name: "scss", value: ".common{.scss{color: red;}}")
|
|
|
|
theme.set_field(target: :desktop, name: "scss", value: ".desktop{.scss{color: red;}}")
|
|
|
|
theme.set_field(target: :mobile, name: "scss", value: ".mobile{.scss{color: red;}}")
|
|
|
|
theme.set_field(target: :common, name: "embedded_scss", value: ".embedded{.scss{color: red;}}")
|
2017-04-12 22:52:52 +08:00
|
|
|
|
|
|
|
theme.save!
|
|
|
|
|
2018-08-24 09:30:00 +08:00
|
|
|
child_theme = Fabricate(:theme, component: true)
|
2017-04-12 22:52:52 +08:00
|
|
|
|
2017-05-03 04:01:01 +08:00
|
|
|
child_theme.set_field(target: :common, name: "scss", value: ".child_common{.scss{color: red;}}")
|
|
|
|
child_theme.set_field(target: :desktop, name: "scss", value: ".child_desktop{.scss{color: red;}}")
|
|
|
|
child_theme.set_field(target: :mobile, name: "scss", value: ".child_mobile{.scss{color: red;}}")
|
|
|
|
child_theme.set_field(target: :common, name: "embedded_scss", value: ".child_embedded{.scss{color: red;}}")
|
2017-04-12 22:52:52 +08:00
|
|
|
child_theme.save!
|
|
|
|
|
2019-11-28 13:19:01 +08:00
|
|
|
theme.add_relative_theme!(:child, child_theme)
|
2017-04-12 22:52:52 +08:00
|
|
|
|
2018-07-12 12:18:21 +08:00
|
|
|
old_link = Stylesheet::Manager.stylesheet_link_tag(:desktop_theme, 'all', theme.id)
|
2017-04-12 22:52:52 +08:00
|
|
|
|
2018-07-12 12:18:21 +08:00
|
|
|
manager = Stylesheet::Manager.new(:desktop_theme, theme.id)
|
2017-04-12 22:52:52 +08:00
|
|
|
manager.compile(force: true)
|
|
|
|
|
|
|
|
css = File.read(manager.stylesheet_fullpath)
|
|
|
|
_source_map = File.read(manager.source_map_fullpath)
|
|
|
|
|
|
|
|
expect(css).to match(/child_common/)
|
|
|
|
expect(css).to match(/child_desktop/)
|
|
|
|
expect(css).to match(/\.common/)
|
|
|
|
expect(css).to match(/\.desktop/)
|
|
|
|
|
2017-05-03 04:01:01 +08:00
|
|
|
child_theme.set_field(target: :desktop, name: :scss, value: ".nothing{color: green;}")
|
2017-04-12 22:52:52 +08:00
|
|
|
child_theme.save!
|
|
|
|
|
2018-07-12 12:18:21 +08:00
|
|
|
new_link = Stylesheet::Manager.stylesheet_link_tag(:desktop_theme, 'all', theme.id)
|
2017-04-12 22:52:52 +08:00
|
|
|
|
|
|
|
expect(new_link).not_to eq(old_link)
|
|
|
|
|
|
|
|
# our theme better have a name with the theme_id as part of it
|
|
|
|
expect(new_link).to include("/stylesheets/desktop_theme_#{theme.id}_")
|
|
|
|
end
|
2017-10-05 05:04:29 +08:00
|
|
|
|
2018-05-31 15:02:27 +08:00
|
|
|
describe 'digest' do
|
|
|
|
after do
|
2019-09-20 20:32:43 +08:00
|
|
|
DiscoursePluginRegistry.reset!
|
2018-05-31 15:02:27 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'can correctly account for plugins in digest' do
|
2018-08-08 12:46:34 +08:00
|
|
|
theme = Fabricate(:theme)
|
2018-05-31 15:02:27 +08:00
|
|
|
|
2018-07-12 12:18:21 +08:00
|
|
|
manager = Stylesheet::Manager.new(:desktop_theme, theme.id)
|
2018-05-31 15:02:27 +08:00
|
|
|
digest1 = manager.digest
|
|
|
|
|
2019-08-21 00:39:52 +08:00
|
|
|
DiscoursePluginRegistry.stylesheets["fake"] = Set.new(["fake_file"])
|
2018-05-31 15:02:27 +08:00
|
|
|
|
2018-07-12 12:18:21 +08:00
|
|
|
manager = Stylesheet::Manager.new(:desktop_theme, theme.id)
|
2018-08-30 18:53:03 +08:00
|
|
|
digest2 = manager.digest
|
|
|
|
|
|
|
|
expect(digest1).not_to eq(digest2)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can correctly account for settings in theme's components" do
|
|
|
|
theme = Fabricate(:theme)
|
|
|
|
child = Fabricate(:theme, component: true)
|
2019-11-28 13:19:01 +08:00
|
|
|
theme.add_relative_theme!(:child, child)
|
2018-08-30 18:53:03 +08:00
|
|
|
|
|
|
|
child.set_field(target: :settings, name: :yaml, value: "childcolor: red")
|
|
|
|
child.set_field(target: :common, name: :scss, value: "body {background-color: $childcolor}")
|
|
|
|
child.save!
|
|
|
|
|
|
|
|
manager = Stylesheet::Manager.new(:desktop_theme, theme.id)
|
|
|
|
digest1 = manager.digest
|
|
|
|
|
|
|
|
child.update_setting(:childcolor, "green")
|
|
|
|
|
|
|
|
manager = Stylesheet::Manager.new(:desktop_theme, theme.id)
|
2018-06-13 21:54:26 +08:00
|
|
|
digest2 = manager.digest
|
|
|
|
|
|
|
|
expect(digest1).not_to eq(digest2)
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:image) { file_from_fixtures("logo.png") }
|
|
|
|
let(:image2) { file_from_fixtures("logo-dev.png") }
|
|
|
|
|
|
|
|
it 'can correctly account for theme uploads in digest' do
|
2018-08-08 12:46:34 +08:00
|
|
|
theme = Fabricate(:theme)
|
2018-06-13 21:54:26 +08:00
|
|
|
|
|
|
|
upload = UploadCreator.new(image, "logo.png").create_for(-1)
|
|
|
|
field = ThemeField.create!(
|
|
|
|
theme_id: theme.id,
|
|
|
|
target_id: Theme.targets[:common],
|
|
|
|
name: "logo",
|
|
|
|
value: "",
|
|
|
|
upload_id: upload.id,
|
|
|
|
type_id: ThemeField.types[:theme_upload_var]
|
|
|
|
)
|
|
|
|
|
2018-07-12 12:18:21 +08:00
|
|
|
manager = Stylesheet::Manager.new(:desktop_theme, theme.id)
|
2018-06-13 21:54:26 +08:00
|
|
|
digest1 = manager.digest
|
|
|
|
field.destroy!
|
|
|
|
|
|
|
|
upload = UploadCreator.new(image2, "logo.png").create_for(-1)
|
|
|
|
field = ThemeField.create!(
|
|
|
|
theme_id: theme.id,
|
|
|
|
target_id: Theme.targets[:common],
|
|
|
|
name: "logo",
|
|
|
|
value: "",
|
|
|
|
upload_id: upload.id,
|
|
|
|
type_id: ThemeField.types[:theme_upload_var]
|
|
|
|
)
|
|
|
|
|
2018-07-12 12:18:21 +08:00
|
|
|
manager = Stylesheet::Manager.new(:desktop_theme, theme.id)
|
2018-05-31 15:02:27 +08:00
|
|
|
digest2 = manager.digest
|
|
|
|
|
|
|
|
expect(digest1).not_to eq(digest2)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-05 05:04:29 +08:00
|
|
|
describe 'color_scheme_digest' do
|
2020-09-16 01:11:10 +08:00
|
|
|
let(:theme) { Fabricate(:theme) }
|
2017-10-05 05:04:29 +08:00
|
|
|
it "changes with category background image" do
|
|
|
|
category1 = Fabricate(:category, uploaded_background_id: 123, updated_at: 1.week.ago)
|
|
|
|
category2 = Fabricate(:category, uploaded_background_id: 456, updated_at: 2.days.ago)
|
|
|
|
|
2018-07-12 12:18:21 +08:00
|
|
|
manager = Stylesheet::Manager.new(:desktop_theme, theme.id)
|
2017-10-05 05:04:29 +08:00
|
|
|
|
|
|
|
digest1 = manager.color_scheme_digest
|
|
|
|
|
2019-04-29 15:32:25 +08:00
|
|
|
category2.update(uploaded_background_id: 789, updated_at: 1.day.ago)
|
2017-10-05 05:04:29 +08:00
|
|
|
|
|
|
|
digest2 = manager.color_scheme_digest
|
|
|
|
expect(digest2).to_not eq(digest1)
|
|
|
|
|
2019-04-29 15:32:25 +08:00
|
|
|
category1.update(uploaded_background_id: nil, updated_at: 5.minutes.ago)
|
2017-10-05 05:04:29 +08:00
|
|
|
|
|
|
|
digest3 = manager.color_scheme_digest
|
|
|
|
expect(digest3).to_not eq(digest2)
|
|
|
|
expect(digest3).to_not eq(digest1)
|
|
|
|
end
|
2020-08-12 04:28:59 +08:00
|
|
|
|
|
|
|
it "updates digest when updating a color scheme" do
|
|
|
|
scheme = ColorScheme.create_from_base(name: "Neutral", base_scheme_id: "Neutral")
|
|
|
|
manager = Stylesheet::Manager.new(:color_definitions, nil, scheme)
|
|
|
|
digest1 = manager.color_scheme_digest
|
|
|
|
|
|
|
|
ColorSchemeRevisor.revise(scheme, colors: [{ name: "primary", hex: "CC0000" }])
|
|
|
|
|
|
|
|
digest2 = manager.color_scheme_digest
|
|
|
|
|
|
|
|
expect(digest1).to_not eq(digest2)
|
|
|
|
end
|
2020-08-19 01:02:13 +08:00
|
|
|
|
|
|
|
it "updates digest when updating a theme's color definitions" do
|
|
|
|
scheme = ColorScheme.base
|
|
|
|
manager = Stylesheet::Manager.new(:color_definitions, theme.id, scheme)
|
|
|
|
digest1 = manager.color_scheme_digest
|
|
|
|
|
|
|
|
theme.set_field(target: :common, name: :color_definitions, value: 'body {color: brown}')
|
|
|
|
theme.save!
|
|
|
|
|
|
|
|
digest2 = manager.color_scheme_digest
|
|
|
|
|
|
|
|
expect(digest1).to_not eq(digest2)
|
|
|
|
end
|
|
|
|
|
2020-10-06 01:40:41 +08:00
|
|
|
it "updates digest when setting fonts" do
|
2020-09-16 01:11:10 +08:00
|
|
|
manager = Stylesheet::Manager.new(:desktop_theme, theme.id)
|
|
|
|
digest1 = manager.color_scheme_digest
|
2020-10-06 01:40:41 +08:00
|
|
|
SiteSetting.base_font = DiscourseFonts.fonts[2][:key]
|
2020-09-16 01:11:10 +08:00
|
|
|
digest2 = manager.color_scheme_digest
|
|
|
|
|
|
|
|
expect(digest1).to_not eq(digest2)
|
2020-10-06 01:40:41 +08:00
|
|
|
|
|
|
|
SiteSetting.heading_font = DiscourseFonts.fonts[4][:key]
|
|
|
|
digest3 = manager.color_scheme_digest
|
|
|
|
|
|
|
|
expect(digest3).to_not eq(digest2)
|
2020-09-16 01:11:10 +08:00
|
|
|
end
|
|
|
|
|
2017-10-05 05:04:29 +08:00
|
|
|
end
|
2018-08-31 19:23:55 +08:00
|
|
|
|
2020-08-04 10:57:10 +08:00
|
|
|
describe 'color_scheme_stylesheets' do
|
|
|
|
it "returns something by default" do
|
|
|
|
link = Stylesheet::Manager.color_scheme_stylesheet_link_tag()
|
|
|
|
expect(link).not_to eq("")
|
|
|
|
end
|
|
|
|
|
2020-08-05 00:15:07 +08:00
|
|
|
it "does not crash when no default theme is set" do
|
|
|
|
SiteSetting.default_theme_id = -1
|
|
|
|
link = Stylesheet::Manager.color_scheme_stylesheet_link_tag()
|
|
|
|
expect(link).not_to eq("")
|
|
|
|
end
|
|
|
|
|
2020-08-06 21:45:37 +08:00
|
|
|
it "loads base scheme when defined scheme id is missing" do
|
2020-08-04 10:57:10 +08:00
|
|
|
link = Stylesheet::Manager.color_scheme_stylesheet_link_tag(125)
|
2020-08-06 21:45:37 +08:00
|
|
|
expect(link).to include("color_definitions_base")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "loads nothing when defined dark scheme id is missing" do
|
|
|
|
link = Stylesheet::Manager.color_scheme_stylesheet_link_tag(125, "(prefers-color-scheme: dark)")
|
|
|
|
expect(link).to eq("")
|
2020-08-04 10:57:10 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "uses the correct color scheme from the default site theme" do
|
|
|
|
cs = Fabricate(:color_scheme, name: 'Funky')
|
|
|
|
theme = Fabricate(:theme, color_scheme_id: cs.id)
|
|
|
|
SiteSetting.default_theme_id = theme.id
|
|
|
|
|
|
|
|
link = Stylesheet::Manager.color_scheme_stylesheet_link_tag()
|
2020-08-12 04:28:59 +08:00
|
|
|
expect(link).to include("/stylesheets/color_definitions_funky_#{cs.id}_")
|
2020-08-04 10:57:10 +08:00
|
|
|
end
|
|
|
|
|
2020-08-12 20:49:13 +08:00
|
|
|
it "uses the correct color scheme when a non-default theme is selected and it uses the base 'Light' scheme" do
|
|
|
|
cs = Fabricate(:color_scheme, name: 'Not This')
|
|
|
|
default_theme = Fabricate(:theme, color_scheme_id: cs.id)
|
|
|
|
SiteSetting.default_theme_id = default_theme.id
|
|
|
|
|
|
|
|
user_theme = Fabricate(:theme, color_scheme_id: nil)
|
|
|
|
|
|
|
|
link = Stylesheet::Manager.color_scheme_stylesheet_link_tag(nil, "all", [user_theme.id])
|
|
|
|
expect(link).to include("/stylesheets/color_definitions_base_")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "uses the correct scheme when a valid scheme id is used" do
|
2020-08-04 10:57:10 +08:00
|
|
|
link = Stylesheet::Manager.color_scheme_stylesheet_link_tag(ColorScheme.first.id)
|
2020-08-12 04:28:59 +08:00
|
|
|
slug = Slug.for(ColorScheme.first.name) + "_" + ColorScheme.first.id.to_s
|
2020-08-08 01:43:45 +08:00
|
|
|
expect(link).to include("/stylesheets/color_definitions_#{slug}_")
|
2020-08-04 10:57:10 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "does not fail with a color scheme name containing spaces and special characters" do
|
|
|
|
cs = Fabricate(:color_scheme, name: 'Funky Bunch -_ @#$*(')
|
|
|
|
theme = Fabricate(:theme, color_scheme_id: cs.id)
|
|
|
|
SiteSetting.default_theme_id = theme.id
|
|
|
|
|
|
|
|
link = Stylesheet::Manager.color_scheme_stylesheet_link_tag()
|
2020-08-12 04:28:59 +08:00
|
|
|
expect(link).to include("/stylesheets/color_definitions_funky-bunch_#{cs.id}_")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "updates outputted colors when updating a color scheme" do
|
|
|
|
scheme = ColorScheme.create_from_base(name: "Neutral", base_scheme_id: "Neutral")
|
|
|
|
manager = Stylesheet::Manager.new(:color_definitions, nil, scheme)
|
|
|
|
stylesheet = manager.compile
|
|
|
|
|
|
|
|
ColorSchemeRevisor.revise(scheme, colors: [{ name: "primary", hex: "CC0000" }])
|
|
|
|
|
|
|
|
manager2 = Stylesheet::Manager.new(:color_definitions, nil, scheme)
|
|
|
|
stylesheet2 = manager2.compile
|
|
|
|
|
|
|
|
expect(stylesheet).not_to eq(stylesheet2)
|
|
|
|
expect(stylesheet2).to include("--primary: #c00;")
|
2020-08-04 10:57:10 +08:00
|
|
|
end
|
|
|
|
|
2020-09-09 23:43:34 +08:00
|
|
|
context "theme colors" do
|
|
|
|
let(:theme) { Fabricate(:theme).tap { |t|
|
|
|
|
t.set_field(target: :common, name: "color_definitions", value: ':root {--special: rebeccapurple;}')
|
|
|
|
t.save!
|
|
|
|
}}
|
2020-08-19 01:02:13 +08:00
|
|
|
|
2020-09-09 23:43:34 +08:00
|
|
|
let(:scheme) { ColorScheme.base }
|
|
|
|
|
|
|
|
it "includes theme color definitions in color scheme" do
|
|
|
|
stylesheet = Stylesheet::Manager.new(:color_definitions, theme.id, scheme).compile
|
|
|
|
expect(stylesheet).to include("--special: rebeccapurple")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails gracefully for broken SCSS" do
|
|
|
|
scss = "$test: $missing-var;"
|
|
|
|
theme.set_field(target: :common, name: "color_definitions", value: scss)
|
|
|
|
theme.save!
|
2020-08-19 01:02:13 +08:00
|
|
|
|
2020-09-09 23:43:34 +08:00
|
|
|
stylesheet = Stylesheet::Manager.new(:color_definitions, theme.id, scheme)
|
|
|
|
|
|
|
|
expect { stylesheet.compile }.not_to raise_error
|
|
|
|
end
|
2020-08-19 01:02:13 +08:00
|
|
|
end
|
2020-09-09 03:00:16 +08:00
|
|
|
|
|
|
|
context 'encoded slugs' do
|
|
|
|
before { SiteSetting.slug_generation_method = 'encoded' }
|
|
|
|
after { SiteSetting.slug_generation_method = 'ascii' }
|
|
|
|
|
|
|
|
it "strips unicode in color scheme stylesheet filenames" do
|
|
|
|
cs = Fabricate(:color_scheme, name: 'Grün')
|
|
|
|
cs2 = Fabricate(:color_scheme, name: '어두운')
|
|
|
|
|
|
|
|
link = Stylesheet::Manager.color_scheme_stylesheet_link_tag(cs.id)
|
|
|
|
expect(link).to include("/stylesheets/color_definitions_grun_#{cs.id}_")
|
|
|
|
link2 = Stylesheet::Manager.color_scheme_stylesheet_link_tag(cs2.id)
|
|
|
|
expect(link2).to include("/stylesheets/color_definitions_scheme_#{cs2.id}_")
|
|
|
|
end
|
|
|
|
end
|
2020-08-04 10:57:10 +08:00
|
|
|
end
|
|
|
|
|
2018-08-31 19:23:55 +08:00
|
|
|
# this test takes too long, we don't run it by default
|
|
|
|
describe ".precompile_css", if: ENV["RUN_LONG_TESTS"] == "1" do
|
|
|
|
before do
|
|
|
|
class << STDERR
|
|
|
|
alias_method :orig_write, :write
|
|
|
|
def write(x)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
class << STDERR
|
|
|
|
def write(x)
|
|
|
|
orig_write(x)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
FileUtils.rm_rf("tmp/stylesheet-cache")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "correctly generates precompiled CSS" do
|
|
|
|
scheme1 = ColorScheme.create!(name: "scheme1")
|
|
|
|
scheme2 = ColorScheme.create!(name: "scheme2")
|
|
|
|
core_targets = [:desktop, :mobile, :desktop_rtl, :mobile_rtl, :admin]
|
|
|
|
theme_targets = [:desktop_theme, :mobile_theme]
|
2020-08-12 04:28:59 +08:00
|
|
|
color_scheme_targets = ["color_definitions_scheme1_#{scheme1.id}", "color_definitions_scheme2_#{scheme2.id}"]
|
2018-08-31 19:23:55 +08:00
|
|
|
|
|
|
|
Theme.update_all(user_selectable: false)
|
|
|
|
user_theme = Fabricate(:theme, user_selectable: true, color_scheme: scheme1)
|
|
|
|
default_theme = Fabricate(:theme, user_selectable: true, color_scheme: scheme2)
|
|
|
|
default_theme.set_default!
|
|
|
|
|
|
|
|
StylesheetCache.destroy_all
|
|
|
|
|
|
|
|
Stylesheet::Manager.precompile_css
|
|
|
|
results = StylesheetCache.pluck(:target)
|
|
|
|
|
2020-08-19 01:02:13 +08:00
|
|
|
expect(results.size).to eq(17) # (2 themes x 7 targets) + 3 color schemes (2 themes, 1 base)
|
2018-08-31 19:23:55 +08:00
|
|
|
core_targets.each do |tar|
|
|
|
|
expect(results.count { |target| target =~ /^#{tar}_(#{scheme1.id}|#{scheme2.id})$/ }).to eq(2)
|
|
|
|
end
|
|
|
|
|
|
|
|
theme_targets.each do |tar|
|
|
|
|
expect(results.count { |target| target =~ /^#{tar}_(#{user_theme.id}|#{default_theme.id})$/ }).to eq(2)
|
|
|
|
end
|
|
|
|
|
|
|
|
Theme.clear_default!
|
|
|
|
StylesheetCache.destroy_all
|
|
|
|
|
|
|
|
Stylesheet::Manager.precompile_css
|
|
|
|
results = StylesheetCache.pluck(:target)
|
2020-08-04 10:57:10 +08:00
|
|
|
|
2020-08-19 01:02:13 +08:00
|
|
|
expect(results.size).to eq(22) # (2 themes x 7 targets) + (1 no/default/core theme x 5 core targets) + 3 color schemes (2 themes, 1 base)
|
2018-08-31 19:23:55 +08:00
|
|
|
|
|
|
|
core_targets.each do |tar|
|
|
|
|
expect(results.count { |target| target =~ /^(#{tar}_(#{scheme1.id}|#{scheme2.id})|#{tar})$/ }).to eq(3)
|
|
|
|
end
|
|
|
|
|
|
|
|
theme_targets.each do |tar|
|
|
|
|
expect(results.count { |target| target =~ /^#{tar}_(#{user_theme.id}|#{default_theme.id})$/ }).to eq(2)
|
|
|
|
end
|
2020-08-04 10:57:10 +08:00
|
|
|
|
|
|
|
expect(results).to include(color_scheme_targets[0])
|
|
|
|
expect(results).to include(color_scheme_targets[1])
|
2018-08-31 19:23:55 +08:00
|
|
|
end
|
|
|
|
end
|
2017-04-12 22:52:52 +08:00
|
|
|
end
|