Allow cross-origin requests to API
This commit is contained in:
parent
31dae1bac1
commit
7751973871
4 changed files with 49 additions and 0 deletions
32
test/integration/cors_test.rb
Normal file
32
test/integration/cors_test.rb
Normal file
|
@ -0,0 +1,32 @@
|
|||
require File.dirname(__FILE__) + '/../test_helper'
|
||||
|
||||
class CORSTest < ActionController::IntegrationTest
|
||||
# Rails 4 adds a built-in `options` method. When we upgrade, we can remove
|
||||
# this definition.
|
||||
unless instance_method_names.include?("options")
|
||||
def options(*args)
|
||||
reset! unless integration_session
|
||||
@html_document = nil
|
||||
integration_session.send(:process, :options, *args).tap do
|
||||
copy_session_variables!
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def test_api_routes_allow_cross_origin_requests
|
||||
options "/api/capabilities", nil,
|
||||
'HTTP_ORIGIN' => "http://www.example.com",
|
||||
'HTTP_ACCESS_CONTROL_REQUEST_METHOD' => 'GET'
|
||||
|
||||
assert_response :success
|
||||
assert_equal "http://www.example.com", response.headers['Access-Control-Allow-Origin']
|
||||
end
|
||||
|
||||
def test_non_api_routes_dont_allow_cross_origin_requests
|
||||
assert_raises ActionController::RoutingError do
|
||||
options "/", nil,
|
||||
'HTTP_ORIGIN' => "http://www.example.com",
|
||||
'HTTP_ACCESS_CONTROL_REQUEST_METHOD' => 'GET'
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue