Bug 2196436 - Can't query plugin CRs via GraphQL
Summary: Can't query plugin CRs via GraphQL
Keywords:
Status: VERIFIED
Alias: None
Product: Red Hat Satellite
Classification: Red Hat
Component: Compute Resources
Version: 6.13.0
Hardware: Unspecified
OS: Unspecified
unspecified
medium
Target Milestone: 6.14.0
Assignee: Evgeni Golov
QA Contact: sganar
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2023-05-09 07:03 UTC by Evgeni Golov
Modified: 2023-07-12 10:48 UTC (History)
3 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed:
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Foreman Issue Tracker 36370 0 Normal New Can't query plugin CRs via GraphQL 2023-05-09 07:12:18 UTC
Red Hat Issue Tracker SAT-17692 0 None None None 2023-05-11 14:24:35 UTC

Description Evgeni Golov 2023-05-09 07:03:43 UTC
Description of problem:
When trying to query a CR that was created from a plugin (like Azure or Google) via GraphQL, an error occurs.

Version-Release number of selected component (if applicable):
6.13.0, but should happen on any other too

How reproducible:
100%

Steps to Reproduce:
1. create an Azure (or in 6.13 Google) CR
2.  curl -X POST -H "Content-Type: application/json" -d '{"query": "{ computeResource(id: \"MDE6Rm9yZW1hbkF6dXJlUm06OkF6dXJlUm0tMTI=\") \{id, provider\} }"}' -u admin:changeme https://$(hostname -f)/api/graphql (replace the ID with the right for your install

Actual results:
{"error":"An error occurred."}

Expected results:
{"data":"computeResource":"id":"MDE6Rm9yZW1hbkF6dXJlUm06OkF6dXJlUm0tMTI=","provider":"AzureRm"}}}

Additional info:
In production log, we see the following error:
2023-05-09T06:43:41 [W|app|02510a9d] Action failed
2023-05-09T06:43:41 [I|app|02510a9d] Backtrace for 'Action failed' error (Types::ProviderEnum::UnresolvedValueError): `ComputeResource.provider` returned `"AzureRm"` at `computeResource.provider`, but this isn't a valid value for `
ProviderEnum`. Update the field or resolver to return one of `ProviderEnum`'s values instead.
 02510a9d | /usr/share/gems/gems/graphql-1.13.16/lib/graphql/schema/enum.rb:161:in `coerce_result'

This is because app/graphql/types/provider_enum.rb uses `supported_providers` and not `all_providers` to obtain the list of providers.

irb(main):001:0> ::ComputeResource.supported_providers.keys
=> ["Libvirt", "Ovirt", "EC2", "Vmware", "Openstack"]
irb(main):002:0> ::ComputeResource.all_providers.keys
=> ["Libvirt", "Ovirt", "EC2", "Vmware", "Openstack", "AzureRm", "GCE"]

Comment 1 Evgeni Golov 2023-05-09 07:08:42 UTC
The same is also true for the ProviderFriendlyNameEnum, but changing that my Satellite refuses to start due to BZ#2196242

Comment 2 Evgeni Golov 2023-05-09 07:12:17 UTC
Created redmine issue https://projects.theforeman.org/issues/36370 from this bug

Comment 3 Bryan Kearney 2023-05-09 08:03:35 UTC
Upstream bug assigned to egolov

Comment 4 Bryan Kearney 2023-05-09 08:03:37 UTC
Upstream bug assigned to egolov

Comment 5 Bryan Kearney 2023-05-10 16:03:24 UTC
Moving this bug to POST for triage into Satellite since the upstream issue https://projects.theforeman.org/issues/36370 has been resolved.

Comment 6 sganar 2023-07-12 10:48:47 UTC
Verified.

Tested on Satellite 6.14.0 Snap 6.0

Steps followed: 
1. create an Azure (or Google) CR
2. curl -X POST -H "Content-Type: application/json" -d '{"query": "{ computeResource(id: \"MDE6Q29tcHV0ZVJlc291cmNlLTE=\") \{id, provider\} }"}' -u admin:passwd https://$(hostname -f)/api/graphql

Observation:
No error observed.
 
{"data":{"computeResource":{"id":"MDE6Q29tcHV0ZVJlc291cmNlLTE=","provider":"AzureRm"}}}


Note You need to log in before you can comment on or make changes to this bug.