1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe API::Helpers::CommonHelpers do
include Rack::Test::Methods
subject do
Class.new(Grape::API) do
helpers API::Helpers::CommonHelpers
before do
coerce_nil_params_to_array!
end
params do
requires :id, type: String
optional :array, type: Array, coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce
optional :array_of_strings, type: Array[String], coerce_with: ::API::Validations::Types::CommaSeparatedToArray.coerce
optional :array_of_ints, type: Array[Integer], coerce_with: ::API::Validations::Types::CommaSeparatedToIntegerArray.coerce
end
get ":id" do
params.to_json
end
end
end
def app
subject
end
describe '.coerce_nil_params_to_array!' do
let(:json_response) { Gitlab::Json.parse(last_response.body) }
it 'converts all nil parameters to empty arrays' do
get '/test?array=&array_of_strings=&array_of_ints='
expect(json_response['array']).to eq([])
expect(json_response['array_of_strings']).to eq([])
expect(json_response['array_of_ints']).to eq([])
end
it 'leaves non-nil parameters alone' do
get '/test?array=&array_of_strings=test,me&array_of_ints=1,2'
expect(json_response['array']).to eq([])
expect(json_response['array_of_strings']).to eq(%w[test me])
expect(json_response['array_of_ints']).to eq([1, 2])
end
end
end
|