mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
spec(Util::asset_url): add specs covering each conditional branch
This commit is contained in:
parent
f16fc2229e
commit
49a7435dc9
1 changed files with 71 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
require 'spec_helper'
|
||||
require 'middleman-core/util'
|
||||
require 'middleman-core'
|
||||
|
||||
describe Middleman::Util do
|
||||
|
||||
|
@ -73,4 +73,72 @@ describe Middleman::Util do
|
|||
end
|
||||
end
|
||||
|
||||
describe "::asset_url" do
|
||||
|
||||
after(:each) do
|
||||
Given.cleanup!
|
||||
end
|
||||
|
||||
context "when http_prefix is activated" do
|
||||
|
||||
before(:each) do
|
||||
Given.fixture 'clean-dir-app'
|
||||
Given.file 'source/images/blank.gif', ''
|
||||
@mm = Middleman::Application.new do
|
||||
config[:http_prefix] = 'http_prefix'
|
||||
end
|
||||
end
|
||||
|
||||
it "returns path with http_prefix pre-pended if resource is found" do
|
||||
expect( Middleman::Util.asset_url( @mm, 'blank.gif', 'images', http_prefix: 'http_prefix' ) ).to eq 'http_prefix/images/blank.gif'
|
||||
end
|
||||
|
||||
it "returns path with http_prefix pre-pended if resource is not found" do
|
||||
expect( Middleman::Util.asset_url( @mm, 'missing.gif', 'images', http_prefix: 'http_prefix' ) ).to eq 'http_prefix/images/missing.gif'
|
||||
end
|
||||
end
|
||||
|
||||
context "when relative is true" do
|
||||
|
||||
before(:each) do
|
||||
Given.fixture 'relative-assets-app'
|
||||
@mm = Middleman::Application.new
|
||||
end
|
||||
|
||||
it "returns path relative to the provided current_resource" do
|
||||
current_resource = instance_double("Middleman::Sitemap::Resource", destination_path: 'a-path/index.html')
|
||||
expect( Middleman::Util.asset_url( @mm, 'blank.gif', 'images', current_resource: current_resource,
|
||||
relative: true ) ).to eq '../images/blank.gif'
|
||||
end
|
||||
|
||||
it "raises error if not given a current_resource" do
|
||||
expect{
|
||||
Middleman::Util.asset_url( @mm, 'blank.gif', 'images', relative: true )
|
||||
}.to raise_error ArgumentError
|
||||
end
|
||||
end
|
||||
|
||||
it "returns path if it is already a full path" do
|
||||
expect( Middleman::Util.asset_url( @mm, 'http://example.com' ) ).to eq 'http://example.com'
|
||||
expect( Middleman::Util.asset_url( @mm, 'data:example' ) ).to eq 'data:example'
|
||||
end
|
||||
|
||||
it "returns a resource url if given a resource's destination path" do
|
||||
Given.fixture 'clean-dir-app' # includes directory indexes extension
|
||||
Given.file 'source/how/about/that.html', ''
|
||||
@mm = Middleman::Application.new
|
||||
|
||||
expect( Middleman::Util.asset_url( @mm, '/how/about/that/index.html' ) ).to eq '/how/about/that/'
|
||||
end
|
||||
|
||||
it "returns a resource url if given a resources path" do
|
||||
Given.fixture 'clean-dir-app' # includes directory indexes extension
|
||||
Given.file 'source/how/about/that.html', ''
|
||||
@mm = Middleman::Application.new
|
||||
|
||||
expect( Middleman::Util.asset_url( @mm, '/how/about/that.html' ) ).to eq '/how/about/that/'
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
Loading…
Reference in a new issue