summaryrefslogtreecommitdiff
path: root/test/functional/static_config_controller_test.rb
diff options
context:
space:
mode:
authorjessib <jessib@riseup.net>2013-12-30 13:32:11 -0800
committerjessib <jessib@riseup.net>2013-12-30 13:32:11 -0800
commit8db811678404aa9a33c54805f8fba4afb932c1f4 (patch)
treee94f2d44be2af63999fb1b332f8a795bb8a35b26 /test/functional/static_config_controller_test.rb
parent7f12c795207ac818bffac42aa581bf1165f9e424 (diff)
parent62f31ab0358bc165c9a83806db1828365cb96572 (diff)
Merge branch 'develop' into feature/messages_api
Diffstat (limited to 'test/functional/static_config_controller_test.rb')
-rw-r--r--test/functional/static_config_controller_test.rb27
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