X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0561bd0c3c07257fd58ded6c7cfa5feeae97af57..bc14c62ad1528dbddc26781c5cea6a7968c93f2e:/apps/workbench/test/controllers/application_controller_test.rb diff --git a/apps/workbench/test/controllers/application_controller_test.rb b/apps/workbench/test/controllers/application_controller_test.rb index d38e88f2a6..b908c46def 100644 --- a/apps/workbench/test/controllers/application_controller_test.rb +++ b/apps/workbench/test/controllers/application_controller_test.rb @@ -325,24 +325,24 @@ class ApplicationControllerTest < ActionController::TestCase # Each pdh has more than one collection; however, we should get only one for each assert collections.size == 2, 'Expected two objects in the preloaded collection hash' assert collections[pdh1], 'Expected collections for the passed in pdh #{pdh1}' - assert_equal collections[pdh1].size, 1, 'Expected one collection for the passed in pdh #{pdh1}' + assert_equal collections[pdh1].size, 1, "Expected one collection for the passed in pdh #{pdh1}" assert collections[pdh2], 'Expected collections for the passed in pdh #{pdh2}' - assert_equal collections[pdh2].size, 1, 'Expected one collection for the passed in pdh #{pdh2}' + assert_equal collections[pdh2].size, 1, "Expected one collection for the passed in pdh #{pdh2}" end test "requesting a nonexistent object returns 404" do # We're really testing ApplicationController's find_object_by_uuid. # It's easiest to do that by instantiating a concrete controller. @controller = NodesController.new - get(:show, {id: "zzzzz-zzzzz-zzzzzzzzzzzzzzz"}, session_for(:admin)) + get(:show, params: {id: "zzzzz-zzzzz-zzzzzzzzzzzzzzz"}, session: session_for(:admin)) assert_response 404 end - test "requesting to the API server includes client_session_id param" do - got_query = nil + test "requesting to the API server includes X-Request-Id header" do + got_header = nil stub_api_calls - stub_api_client.stubs(:post).with do |url, query, opts={}| - got_query = query + stub_api_client.stubs(:post).with do |url, query, header={}| + got_header = header true end.returns fake_api_response('{}', 200, {}) @@ -350,16 +350,23 @@ class ApplicationControllerTest < ActionController::TestCase api_fixture("api_client_authorizations", "anonymous", "api_token") @controller = ProjectsController.new test_uuid = "zzzzz-j7d0g-zzzzzzzzzzzzzzz" - get(:show, {id: test_uuid}) + get(:show, params: {id: test_uuid}) - assert_includes got_query, 'current_request_id' - assert_match /\d{10}-\d{9}/, got_query['current_request_id'] + assert_not_nil got_header + assert_includes got_header, 'X-Request-Id' + assert_match /^req-[0-9a-zA-Z]{20}$/, got_header["X-Request-Id"] end - test "current_request_id is nil after a request" do + test "current request_id is nil after a request" do @controller = NodesController.new - get(:index, {}, session_for(:active)) - assert_nil Thread.current[:current_request_id] + get(:index, params: {}, session: session_for(:active)) + assert_nil Thread.current[:request_id] + end + + test "X-Request-Id header" do + @controller = NodesController.new + get(:index, params: {}, session: session_for(:active)) + assert_match /^req-[0-9a-zA-Z]{20}$/, response.headers['X-Request-Id'] end [".navbar .login-menu a", @@ -371,10 +378,10 @@ class ApplicationControllerTest < ActionController::TestCase api_fixture("api_client_authorizations", "anonymous", "api_token") @controller = ProjectsController.new test_uuid = "zzzzz-j7d0g-zzzzzzzzzzzzzzz" - get(:show, {id: test_uuid}) + get(:show, params: {id: test_uuid}) login_link = css_select(css_selector).first assert_not_nil(login_link, "failed to select login link") - login_href = URI.unescape(login_link.attributes["href"]) + login_href = URI.unescape(login_link.attributes["href"].value) # The parameter needs to include the full URL to work. assert_includes(login_href, "://") assert_match(/[\?&]return_to=[^&]*\/projects\/#{test_uuid}(&|$)/, @@ -392,7 +399,7 @@ class ApplicationControllerTest < ActionController::TestCase # network. 100::/64 is the IPv6 discard prefix, so it's perfect. Rails.configuration.arvados_v1_base = "https://[100::f]:1/" @controller = NodesController.new - get(:index, {}, session_for(:active)) + get(:index, params: {}, session: session_for(:active)) assert_includes(405..422, @response.code.to_i, "bad response code when API server is unreachable") ensure @@ -421,7 +428,7 @@ class ApplicationControllerTest < ActionController::TestCase @controller = controller - get(:show, {id: fixture['uuid']}) + get(:show, params: {id: fixture['uuid']}) if anon_config assert_response 200 @@ -445,7 +452,7 @@ class ApplicationControllerTest < ActionController::TestCase Rails.configuration.include_accept_encoding_header_in_api_requests = config @controller = CollectionsController.new - get(:show, {id: api_fixture('collections')['foo_file']['uuid']}, session_for(:admin)) + get(:show, params: {id: api_fixture('collections')['foo_file']['uuid']}, session: session_for(:admin)) assert_equal([['.', 'foo', 3]], assigns(:object).files) end @@ -454,13 +461,13 @@ class ApplicationControllerTest < ActionController::TestCase test 'Edit name and verify that a duplicate is not created' do @controller = ProjectsController.new project = api_fixture("groups")["aproject"] - post :update, { + post :update, params: { id: project["uuid"], project: { name: 'test name' }, format: :json - }, session_for(:active) + }, session: session_for(:active) assert_includes @response.body, 'test name' updated = assigns(:object) assert_equal updated.uuid, project["uuid"] @@ -474,7 +481,7 @@ class ApplicationControllerTest < ActionController::TestCase test "access #{controller.controller_name} index as admin and verify Home link is#{' not' if !expect_home_link} shown" do @controller = controller - get :index, {}, session_for(:admin) + get :index, params: {}, session: session_for(:admin) assert_response 200 assert_includes @response.body, expect_str @@ -496,7 +503,7 @@ class ApplicationControllerTest < ActionController::TestCase test "access #{controller.controller_name} index as admin and verify Delete option is#{' not' if !expect_delete_link} shown" do @controller = controller - get :index, {}, session_for(:admin) + get :index, params: {}, session: session_for(:admin) assert_response 200 assert_includes @response.body, expect_str