Skip to content

Commit

Permalink
Update CLI client code and add tests
Browse files Browse the repository at this point in the history
This change is a major update to the CLI's client code for interacting with the Radius API.

The client grew organically over time as we added features. Since it's client code it wasn't
well tested because testing it would require a lot of mocking. Unfortunately in some places
we *do* have complex logic in this code and unfortunately we also have some bugs.

I'm working on another fix to address #7520, and encountered a lot of limitations with the client
code so I decided to fix it.

This change addresses the following:

- Reviewed the API and made updates for consistency.
- Added tests for ALL of the functions on the client.
- Updated each API to accept either a resource ID or a resource name (needed for #7520).

This update does the

Signed-off-by: Ryan Nowak <nowakra@gmail.com>
  • Loading branch information
rynowak committed May 14, 2024
1 parent 5fba423 commit 5c98df9
Show file tree
Hide file tree
Showing 65 changed files with 2,636 additions and 607 deletions.
2 changes: 1 addition & 1 deletion cmd/rad/cmd/resourceExpose.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ rad resource expose --application icecream-store containers orders --port 5000 -
}

// Ignore applicationresource as we only check for existence of application
_, err = managementClient.ShowApplication(cmd.Context(), application)
_, err = managementClient.GetApplication(cmd.Context(), application)
if err != nil {
appNotFound := clients.Is404Error(err)
if !appNotFound {
Expand Down
84 changes: 59 additions & 25 deletions pkg/cli/clients/clients.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,40 +137,74 @@ type LogStream struct {

// ApplicationsManagementClient is used to interface with management features like listing resources by app, show details of a resource.
type ApplicationsManagementClient interface {
ListAllResourcesByType(ctx context.Context, resourceType string) ([]generated.GenericResource, error)
ListAllResourcesOfTypeInApplication(ctx context.Context, applicationName string, resourceType string) ([]generated.GenericResource, error)
ListAllResourcesByApplication(ctx context.Context, applicationName string) ([]generated.GenericResource, error)
ListAllResourcesOfTypeInEnvironment(ctx context.Context, environmentName string, resourceType string) ([]generated.GenericResource, error)
ListAllResourcesByEnvironment(ctx context.Context, environmentName string) ([]generated.GenericResource, error)
ShowResource(ctx context.Context, resourceType string, resourceName string) (generated.GenericResource, error)
DeleteResource(ctx context.Context, resourceType string, resourceName string) (bool, error)
// ListResourcesOfType lists all resources of a given type in the configured scope.
ListResourcesOfType(ctx context.Context, resourceType string) ([]generated.GenericResource, error)

// ListResourcesOfTypeInApplication lists all resources of a given type in a given application in the configured scope.
ListResourcesOfTypeInApplication(ctx context.Context, applicationNameOrID string, resourceType string) ([]generated.GenericResource, error)

// ListResourcesOfTypeInEnvironment lists all resources of a given type in a given environment in the configured scope.
ListResourcesOfTypeInEnvironment(ctx context.Context, environmentNameOrID string, resourceType string) ([]generated.GenericResource, error)

// ListResourcesInApplication lists all resources in a given application in the configured scope.
ListResourcesInApplication(ctx context.Context, applicationNameOrID string) ([]generated.GenericResource, error)

// ListResourcesInEnvironment lists all resources in a given environment in the configured scope.
ListResourcesInEnvironment(ctx context.Context, environmentNameOrID string) ([]generated.GenericResource, error)

// GetResource retrieves a resource by its type and name (or id).
GetResource(ctx context.Context, resourceType string, resourceNameOrID string) (generated.GenericResource, error)

// DeleteResource deletes a resource by its type and name (or id).
DeleteResource(ctx context.Context, resourceType string, resourceNameOrID string) (bool, error)

// ListApplications lists all applications in the configured scope.
ListApplications(ctx context.Context) ([]corerp.ApplicationResource, error)
ShowApplication(ctx context.Context, applicationName string) (corerp.ApplicationResource, error)
GetGraph(ctx context.Context, applicationName string) (corerp.ApplicationGraphResponse, error)

// CreateOrUpdateApplication creates or updates an application.
CreateOrUpdateApplication(ctx context.Context, applicationName string, resource corerp.ApplicationResource) error
// GetApplication retrieves an application by its name (or id).
GetApplication(ctx context.Context, applicationNameOrID string) (corerp.ApplicationResource, error)

// GetApplicationGraph retrieves the application graph of an application by its name (or id).
GetApplicationGraph(ctx context.Context, applicationNameOrID string) (corerp.ApplicationGraphResponse, error)

// CreateOrUpdateApplication creates or updates an application by its name (or id).
CreateOrUpdateApplication(ctx context.Context, applicationNameOrID string, resource *corerp.ApplicationResource) error

// CreateApplicationIfNotFound creates an application if it does not exist.
CreateApplicationIfNotFound(ctx context.Context, applicationName string, resource corerp.ApplicationResource) error
CreateApplicationIfNotFound(ctx context.Context, applicationNameOrID string, resource *corerp.ApplicationResource) error

DeleteApplication(ctx context.Context, applicationName string) (bool, error)
CreateEnvironment(ctx context.Context, envName string, location string, envProperties *corerp.EnvironmentProperties) error
// DeleteApplication deletes an application and all of its resources by its name (or id).
DeleteApplication(ctx context.Context, applicationNameOrID string) (bool, error)

// ListEnvironmentsInResourceGroup lists all environments in the configured scope (assumes configured scope is a resource group)
ListEnvironmentsInResourceGroup(ctx context.Context) ([]corerp.EnvironmentResource, error)
// ListEnvironments lists all environments in the configured scope (assumes configured scope is a resource group).
ListEnvironments(ctx context.Context) ([]corerp.EnvironmentResource, error)

// ListEnvironmentsAll lists all environments across resource groups.
ListEnvironmentsAll(ctx context.Context) ([]corerp.EnvironmentResource, error)
GetEnvDetails(ctx context.Context, envName string) (corerp.EnvironmentResource, error)
DeleteEnv(ctx context.Context, envName string) (bool, error)
CreateUCPGroup(ctx context.Context, planeName string, resourceGroupName string, resourceGroup ucp_v20231001preview.ResourceGroupResource) error
DeleteUCPGroup(ctx context.Context, planeName string, resourceGroupName string) (bool, error)
ShowUCPGroup(ctx context.Context, planeName string, resourceGroupName string) (ucp_v20231001preview.ResourceGroupResource, error)
ListUCPGroup(ctx context.Context, planeName string) ([]ucp_v20231001preview.ResourceGroupResource, error)

// ShowRecipe shows recipe details including list of all parameters for a given recipe registered to an environment
ShowRecipe(ctx context.Context, environmentName string, recipe corerp.RecipeGetMetadata) (corerp.RecipeGetMetadataResponse, error)

// GetEnvironment retrieves an environment by its name (in the configured scope) or resource ID.
GetEnvironment(ctx context.Context, environmentNameOrID string) (corerp.EnvironmentResource, error)

// GetRecipeMetadata shows recipe details including list of all parameters for a given recipe registered to an environment.
GetRecipeMetadata(ctx context.Context, environmentNameOrID string, recipe corerp.RecipeGetMetadata) (corerp.RecipeGetMetadataResponse, error)

// CreateOrUpdateEnvironment creates an environment by its name (or id).
CreateOrUpdateEnvironment(ctx context.Context, environmentNameOrID string, resource *corerp.EnvironmentResource) error

// DeleteEnvironment deletes an environment and all of its resources by its name (in the configured scope) or resource ID.
DeleteEnvironment(ctx context.Context, environmentNameOrID string) (bool, error)

// ListResourceGroups lists all resource groups in the configured scope.
ListResourceGroups(ctx context.Context, planeName string) ([]ucp_v20231001preview.ResourceGroupResource, error)

// GetResourceGroup retrieves a resource group by its name.
GetResourceGroup(ctx context.Context, planeName string, resourceGroupName string) (ucp_v20231001preview.ResourceGroupResource, error)

// CreateOrUpdateResourceGroup creates a resource group by its name.
CreateOrUpdateResourceGroup(ctx context.Context, planeName string, resourceGroupName string, resource *ucp_v20231001preview.ResourceGroupResource) error

// DeleteResourceGroup deletes a resource group by its name.
DeleteResourceGroup(ctx context.Context, planeName string, resourceGroupName string) (bool, error)
}

// ShallowCopy creates a shallow copy of the DeploymentParameters object by iterating through the original object and
Expand Down
Loading

0 comments on commit 5c98df9

Please sign in to comment.