Actions
Bug #21013
closedAPI params of type Integer are not converted properly
Difficulty:
Triaged:
Pull request:
Team Backlog:
Description
In the API doc the apipie-rails indicates that the parameter is numeric with attributes validator: 'Number' or 'Integer' and expected_type: 'numeric'.
In hammer core we test:
elsif param.expected_type.to_s == 'number' || param.validator =~ /Number/i
see: https://github.com/theforeman/hammer-cli/blob/master/lib/hammer_cli/apipie/option_builder.rb#L74
To reproduce you can watch the debug output for
hammer -d host update --id 1 --content-source-id 1
For this particular reproducer Katello is needed but the the issue is present for any Integer (type Number works, make sure it is not searchable id). content-source-id is defined as an Integer in the API and is not searchable.
[DEBUG 2017-09-19 11:56:33 API] Params: { "host" => { "compute_attributes" => { "volumes_attributes" => {} }, "content_facet_attributes" => { "content_source_id" => "1" }, "subscription_facet_attributes" => {}, "host_parameters_attributes" => [], "interfaces_attributes" => [] } }
Actions