FIX: Use CDN urls for theme uploads (#12769)

This commit is contained in:
Penar Musaraj
2021-04-20 13:25:35 -04:00
committed by GitHub
parent 0948c3725b
commit d44deb45f3
2 changed files with 15 additions and 2 deletions

View File

@ -518,6 +518,19 @@ HTML
expect(json["theme_uploads"]["bob"]).to eq(upload.url)
end
it 'uses CDN url for theme_uploads in settings' do
set_cdn_url("http://cdn.localhost")
Theme.destroy_all
upload = UploadCreator.new(file_from_fixtures("logo.png"), "logo.png").create_for(-1)
theme.set_field(type: :theme_upload_var, target: :common, name: "bob", upload_id: upload.id)
theme.save!
json = JSON.parse(cached_settings(theme.id))
expect(json["theme_uploads"]["bob"]).to eq("http://cdn.localhost#{upload.url}")
end
it 'handles settings cache correctly' do
Theme.destroy_all