discourse/spec/requests/svg_sprite_controller_spec.rb
Sam Saffron 4ea21fa2d0 DEV: use #frozen_string_literal: true on all spec
This change both speeds up specs (less strings to allocate) and helps catch
cases where methods in Discourse are mutating inputs.

Overall we will be migrating everything to use #frozen_string_literal: true
it will take a while, but this is the first and safest move in this direction
2019-04-30 10:27:42 +10:00

72 lines
2.1 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe SvgSpriteController do
context 'show' do
before do
SvgSprite.expire_cache
end
it "should return bundle when version is current" do
get "/svg-sprite/#{Discourse.current_hostname}/svg--#{SvgSprite.version}.js"
expect(response.status).to eq(200)
theme = Fabricate(:theme)
theme.set_field(target: :settings, name: :yaml, value: "custom_icon: dragon")
theme.save!
get "/svg-sprite/#{Discourse.current_hostname}/svg-#{theme.id}-#{SvgSprite.version([theme.id])}.js"
expect(response.status).to eq(200)
end
it "should redirect to current version" do
random_hash = Digest::SHA1.hexdigest("somerandomstring")
get "/svg-sprite/#{Discourse.current_hostname}/svg--#{random_hash}.js"
expect(response.status).to eq(302)
expect(response.location).to include(SvgSprite.version)
end
end
context 'search' do
it "should not work for anons" do
get "/svg-sprite/search/fa-bolt"
expect(response.status).to eq(404)
end
it "should return symbol for FA icon search" do
user = sign_in(Fabricate(:user))
get "/svg-sprite/search/fa-bolt"
expect(response.status).to eq(200)
expect(response.body).to include('bolt')
end
it "should return 404 when looking for non-existent FA icon" do
user = sign_in(Fabricate(:user))
get "/svg-sprite/search/fa-not-a-valid-icon"
expect(response.status).to eq(404)
end
it "should find a custom icon in default theme" do
theme = Fabricate(:theme)
fname = "custom-theme-icon-sprite.svg"
upload = UploadCreator.new(file_from_fixtures(fname), fname, for_theme: true).create_for(-1)
theme.set_field(target: :common, name: SvgSprite.theme_sprite_variable_name, upload_id: upload.id, type: :theme_upload_var)
theme.save!
SiteSetting.default_theme_id = theme.id
user = sign_in(Fabricate(:user))
get "/svg-sprite/search/fa-my-custom-theme-icon"
expect(response.status).to eq(200)
expect(response.body).to include('my-custom-theme-icon')
end
end
end