discourse/spec/components/global_path_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

45 lines
1.3 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
require 'global_path'
class GlobalPathInstance
extend GlobalPath
end
describe GlobalPath do
context 'cdn_relative_path' do
def cdn_relative_path(p)
GlobalPathInstance.cdn_relative_path(p)
end
it "just returns path for no cdn" do
expect(cdn_relative_path("/test")).to eq("/test")
end
it "returns path when a cdn is defined with a path" do
GlobalSetting.expects(:cdn_url).returns("//something.com/foo")
expect(cdn_relative_path("/test")).to eq("/foo/test")
end
it "returns path when a cdn is defined with a path" do
GlobalSetting.expects(:cdn_url).returns("https://something.com:221/foo")
expect(cdn_relative_path("/test")).to eq("/foo/test")
end
end
describe '#upload_cdn_path' do
it 'generates correctly when S3 bucket has a folder' do
global_setting :s3_access_key_id, 's3_access_key_id'
global_setting :s3_secret_access_key, 's3_secret_access_key'
global_setting :s3_bucket, 'file-uploads/folder'
global_setting :s3_region, 'us-west-2'
global_setting :s3_cdn_url, 'https://cdn-aws.com/folder'
expect(GlobalPathInstance.upload_cdn_path("#{Discourse.store.absolute_base_url}/folder/upload.jpg"))
.to eq("https://cdn-aws.com/folder/upload.jpg")
end
end
end