44 lines
1.7 KiB
Gherkin
44 lines
1.7 KiB
Gherkin
Feature: Alternate between multiple asset hosts
|
|
In order to speed up page loading
|
|
|
|
Scenario: Set single host globally
|
|
Given a fixture app "asset-host-app"
|
|
And a file named "config.rb" with:
|
|
"""
|
|
activate :asset_host, host: "http://assets1.example.com"
|
|
"""
|
|
And the Server is running
|
|
When I go to "/asset_host.html"
|
|
Then I should see "http://assets1"
|
|
When I go to "/stylesheets/asset_host.css"
|
|
Then I should see "http://assets1"
|
|
|
|
Scenario: Set single host with inline-option
|
|
Given a fixture app "asset-host-app"
|
|
And a file named "config.rb" with:
|
|
"""
|
|
activate :asset_host, host: "http://assets1.example.com"
|
|
"""
|
|
And the Server is running
|
|
When I go to "/asset_host.html"
|
|
Then I should see content matching %r{http://assets1.example.com/}
|
|
Then I should not see content matching %r{http://assets1.example.com//}
|
|
When I go to "/stylesheets/asset_host.css"
|
|
Then I should see content matching %r{http://assets1.example.com/}
|
|
Then I should not see content matching %r{http://assets1.example.com//}
|
|
|
|
Scenario: Set proc host with inline-option
|
|
Given a fixture app "asset-host-app"
|
|
And a file named "config.rb" with:
|
|
"""
|
|
activate :asset_host, host: Proc.new { |asset|
|
|
"http://assets%d.example.com" % (asset.hash % 4)
|
|
}
|
|
"""
|
|
And the Server is running
|
|
When I go to "/asset_host.html"
|
|
Then I should see content matching %r{http://assets1.example.com/}
|
|
Then I should not see content matching %r{http://assets1.example.com//}
|
|
When I go to "/stylesheets/asset_host.css"
|
|
Then I should see content matching %r{http://assets1.example.com/}
|
|
Then I should not see content matching %r{http://assets1.example.com//} |