X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ac4cdfc2577b9d25ccbc9ac5d8f0333a81102367..55aafbb07904ca24390dd47ea960eae7cb2b909a:/services/api/test/functional/application_controller_test.rb diff --git a/services/api/test/functional/application_controller_test.rb b/services/api/test/functional/application_controller_test.rb index 9aad981caf..af090f9536 100644 --- a/services/api/test/functional/application_controller_test.rb +++ b/services/api/test/functional/application_controller_test.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' class ApplicationControllerTest < ActionController::TestCase @@ -49,12 +53,45 @@ class ApplicationControllerTest < ActionController::TestCase ['foo', '', 'FALSE', 'TRUE', nil, [true], {a:true}, '"true"'].each do |bogus| test "bogus boolean parameter #{bogus.inspect} returns error" do + @controller = Arvados::V1::GroupsController.new authorize_with :active post :create, { - specimen: {}, + group: {}, ensure_unique_name: bogus } assert_response 422 + assert_match(/parameter must be a boolean/, json_response['errors'].first, + 'Helpful error message not found') + end + end + + [[true, [true, 'true', 1, '1']], + [false, [false, 'false', 0, '0']]].each do |bool, boolparams| + boolparams.each do |boolparam| + # Ensure boolparam is acceptable as a boolean + test "boolean parameter #{boolparam.inspect} acceptable" do + @controller = Arvados::V1::GroupsController.new + authorize_with :active + post :create, { + group: {}, + ensure_unique_name: boolparam + } + assert_response :success + end + + # Ensure boolparam is acceptable as the _intended_ boolean + test "boolean parameter #{boolparam.inspect} accepted as #{bool.inspect}" do + @controller = Arvados::V1::GroupsController.new + authorize_with :active + post :create, { + group: { + name: groups(:aproject).name, + owner_uuid: groups(:aproject).owner_uuid + }, + ensure_unique_name: boolparam + } + assert_response (bool ? :success : 422) + end end end end