Skip to content

Commit

Permalink
use OPTIONS /api/providers
Browse files Browse the repository at this point in the history
  • Loading branch information
Erez Freiberger committed Aug 8, 2017
1 parent 673664d commit c256d49
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/controllers/api/providers_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ def import_vm_resource(type, id = nil, data = {})
end
end

def options
ems_class = ExtManagementSystem.descendants.select { |ems| ems.ems_type == params[:ems_type] }.first
render_options(:providers, ems_class.respond_to?(:provider_settings) ? ems_class.provider_settings : {})
end

private

def format_provider_custom_attributes(attribute)
Expand Down
10 changes: 10 additions & 0 deletions spec/requests/api/providers_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1116,4 +1116,14 @@ def gen_import_request
end
end
end

context "#options" do
it "returns options for queried provider class" do
api_basic_authorize
ExtManagementSystem.descendants.select { |ems| ems.respond_to?(:provider_settings) }.each do |ems_type|
run_options("#{providers_url}?ems_type=#{ems_type.ems_type}")
expect(response.parsed_body.to_json).to eq(ems_type.provider_settings.to_json)
end
end
end
end

0 comments on commit c256d49

Please sign in to comment.