diff options
author | elijah <elijah@riseup.net> | 2013-12-29 19:25:05 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-12-29 19:25:05 -0800 |
commit | f619178085d0c2729e275fa4f46f9cd981189d3e (patch) | |
tree | e6c715c21723e54d2742bf97238e2e01abe8fc2a /test/functional | |
parent | 314d6cce723558497165103658cbf013f1eb8e9a (diff) |
Return 'provider.json' via a controller, to better be able to control the response headers (in particular, 'X-Minimum-Client-Version'). It must now be placed in config/provider/provider.json
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/static_config_controller_test.rb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/functional/static_config_controller_test.rb b/test/functional/static_config_controller_test.rb new file mode 100644 index 0000000..9c2cfef --- /dev/null +++ b/test/functional/static_config_controller_test.rb @@ -0,0 +1,27 @@ +require 'test_helper' + +# use minitest for stubbing, rather than bloated mocha +require 'minitest/stub_const' + +class StaticConfigControllerTest < ActionController::TestCase + + def setup + end + + def test_provider_success + StaticConfigController.stub_const(:PROVIDER_JSON, file_path('provider.json')) do + get :provider, format: :json + assert_equal 'application/json', @response.content_type + assert_response :success + end + end + + def test_provider_not_modified + StaticConfigController.stub_const(:PROVIDER_JSON, file_path('provider.json')) do + request.env["HTTP_IF_MODIFIED_SINCE"] = File.mtime(file_path('provider.json')).rfc2822() + get :provider, format: :json + assert_response 304 + end + end + +end |