7c968b9572
* Updates to support Rails 5, Rack 3 and Sinatra 2 (beta). - Bump upper boundary of version for Rack dependency from 2.0 to 3 (exclusive). - Version bump sinatra for CI testing to >= 2.0.0.beta2. - Also replaces use of String#hash in middleman-core/features/asset_host.feature to ensure sufficiently random variables are returned. Closes middleman/middleman#1983. * Testing revert of the version requirements... To confirm my changes don't cause a regression for any of: - Rails < 5 - Sinatra < 2 - Rack < 2 * Revert "Testing revert of the version requirements..." This reverts commit 5cf4c2a07c0814eefa573358b1bc9b0eeb62f9c1.
56 lines
2.6 KiB
Gherkin
56 lines
2.6 KiB
Gherkin
Feature: Alternate between multiple asset hosts
|
|
|
|
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 "'.google-analytics.com/ga.js'"
|
|
Then I should see 'src="https://code.jquery.com/jquery-2.1.3.min.js"'
|
|
Then I should see content matching %r{http://assets1.example.com/}
|
|
Then I should not see content matching %r{http://assets1.example.com//}
|
|
Then I should see content matching %r{<a href="https://github.com/angular/angular.js">Angular.js</a>}
|
|
Then I should see content matching %r{'//www.example.com/script.js'}
|
|
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//}
|
|
When I go to "/javascripts/asset_host.js"
|
|
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|
|
|
hash = Digest::MD5.digest(asset).bytes.map!(&:ord).reduce(&:+)
|
|
"http://assets%d.example.com" % (hash % 4)
|
|
}
|
|
"""
|
|
And the Server is running
|
|
When I go to "/asset_host.html"
|
|
Then I should see 'src="https://code.jquery.com/jquery-2.1.3.min.js"'
|
|
Then I should see content matching %r{http://assets1.example.com/}
|
|
Then I should not see content matching %r{http://assets1.example.com//}
|
|
Then I should see content matching %r{<a href="https://github.com/angular/angular.js">Angular.js</a>}
|
|
Then I should see content matching %r{'//www.example.com/script.js'}
|
|
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: Hosts are not rewritten for rewrite ignored paths
|
|
Given a fixture app "asset-host-app"
|
|
And a file named "config.rb" with:
|
|
"""
|
|
activate :asset_host, host: "http://assets1.example.com", rewrite_ignore: [
|
|
'/stylesheets/asset_host.css',
|
|
]
|
|
"""
|
|
And the Server is running
|
|
When I go to "/asset_host.html"
|
|
Then I should see content matching %r{http://assets1.example.com/}
|
|
When I go to "/stylesheets/asset_host.css"
|
|
Then I should not see content matching %r{http://assets1.example.com/}
|