How can I mock the UUID generation for the CreateFolderAdapter function, where the generated UUID is dynamically appended to a path, while encountering an “Interaction Not Found” error for the mocked CreateFolder operation?
func (FolderAdapter) CreateFolderAdapter(
svc *quicksight.QuickSight, createFolderParams models.CreateFolderRequest) (*quicksight.CreateFolderOutput, error) {
createFolderInput := &quicksight.CreateFolderInput{
AwsAccountId: aws.String(appConfig.AwsAccountId),
FolderId: aws.String(uuid.New().String()),
FolderType: aws.String(“SHARED”),
Name: aws.String(createFolderParams.FolderName),
}
result, err := svc.CreateFolder(createFolderInput)
return result, err
}
path: /accounts/{accountId}/folders/{dynamic-folder-Id}