caching/vendor/knative.dev/pkg/test/gke/fake/client.go

206 lines
5.9 KiB
Go

/*
Copyright 2019 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package fake
import (
"errors"
"fmt"
"strconv"
"strings"
"sync"
"time"
container "google.golang.org/api/container/v1beta1"
"knative.dev/pkg/test/gke"
)
// Timeout for fake client.
// Need to be changed dynamically in the tests, so make them public.
var (
CreationTimeout = 1000 * time.Millisecond
DeletionTimeout = 10 * time.Minute
)
// GKESDKClient is a fake client for unit tests.
type GKESDKClient struct {
// map of parent: clusters slice
clusters map[string][]*container.Cluster
// map of operationID: operation
ops map[string]*container.Operation
// An incremental number for new ops
opNumber int
// A lookup table for determining ops statuses
OpStatus map[string]string
mutex sync.Mutex
}
// NewGKESDKClient returns a new fake gkeSDKClient that can be used in unit tests.
func NewGKESDKClient() *GKESDKClient {
return &GKESDKClient{
clusters: make(map[string][]*container.Cluster),
ops: make(map[string]*container.Operation),
OpStatus: make(map[string]string),
}
}
// automatically registers new ops, and mark it "DONE" by default. Update
// fgsc.opStatus by fgsc.opStatus[string(fgsc.opNumber+1)]="PENDING" to make the
// next operation pending
func (fgsc *GKESDKClient) newOp() *container.Operation {
opName := strconv.Itoa(fgsc.opNumber)
op := &container.Operation{
Name: opName,
Status: "DONE",
}
if status, ok := fgsc.OpStatus[opName]; ok {
op.Status = status
}
fgsc.opNumber++
fgsc.ops[opName] = op
return op
}
// CreateCluster creates a new cluster, and wait until it finishes or timeout or there is an error.
func (fgsc *GKESDKClient) CreateCluster(
project, region, zone string,
rb *container.CreateClusterRequest,
) error {
op, err := fgsc.CreateClusterAsync(project, region, zone, rb)
if err == nil {
err = gke.Wait(fgsc, project, region, zone, op.Name, CreationTimeout)
}
return err
}
// CreateClusterAsync creates a new cluster asynchronously.
func (fgsc *GKESDKClient) CreateClusterAsync(
project, region, zone string,
rb *container.CreateClusterRequest,
) (*container.Operation, error) {
fgsc.mutex.Lock()
defer fgsc.mutex.Unlock()
location := gke.GetClusterLocation(region, zone)
parent := fmt.Sprintf("projects/%s/locations/%s", project, location)
name := rb.Cluster.Name
if cls, ok := fgsc.clusters[parent]; ok {
for _, cl := range cls {
if cl.Name == name {
return nil, errors.New("cluster already exist")
}
}
} else {
fgsc.clusters[parent] = make([]*container.Cluster, 0)
}
cluster := &container.Cluster{
Name: name,
Location: location,
Status: "RUNNING",
AddonsConfig: rb.Cluster.AddonsConfig,
NodePools: rb.Cluster.NodePools,
}
if rb.Cluster.NodePools != nil {
cluster.NodePools = rb.Cluster.NodePools
}
if rb.Cluster.MasterAuth != nil {
cluster.MasterAuth = &container.MasterAuth{
Username: rb.Cluster.MasterAuth.Username,
}
}
fgsc.clusters[parent] = append(fgsc.clusters[parent], cluster)
return fgsc.newOp(), nil
}
// DeleteCluster deletes the cluster, and wait until it finishes or timeout or there is an error.
func (fgsc *GKESDKClient) DeleteCluster(
project, region, zone, clusterName string,
) error {
op, err := fgsc.DeleteClusterAsync(project, region, zone, clusterName)
if err == nil {
err = gke.Wait(fgsc, project, region, zone, op.Name, DeletionTimeout)
}
return err
}
// DeleteClusterAsync deletes the cluster asynchronously.
func (fgsc *GKESDKClient) DeleteClusterAsync(
project, region, zone, clusterName string,
) (*container.Operation, error) {
fgsc.mutex.Lock()
defer fgsc.mutex.Unlock()
location := gke.GetClusterLocation(region, zone)
parent := fmt.Sprintf("projects/%s/locations/%s", project, location)
found := -1
if clusters, ok := fgsc.clusters[parent]; ok {
for i, cluster := range clusters {
if cluster.Name == clusterName {
found = i
}
}
}
if found == -1 {
return nil, fmt.Errorf("cluster %q not found for deletion", clusterName)
}
// Delete this cluster
fgsc.clusters[parent] = append(fgsc.clusters[parent][:found], fgsc.clusters[parent][found+1:]...)
return fgsc.newOp(), nil
}
// GetCluster gets the cluster with the given settings.
func (fgsc *GKESDKClient) GetCluster(project, region, zone, cluster string) (*container.Cluster, error) {
fgsc.mutex.Lock()
defer fgsc.mutex.Unlock()
location := gke.GetClusterLocation(region, zone)
parent := fmt.Sprintf("projects/%s/locations/%s", project, location)
if cls, ok := fgsc.clusters[parent]; ok {
for _, cl := range cls {
if cl.Name == cluster {
return cl, nil
}
}
}
return nil, fmt.Errorf("cluster not found")
}
// ListClustersInProject lists all the GKE clusters created in the given project.
func (fgsc *GKESDKClient) ListClustersInProject(project string) ([]*container.Cluster, error) {
fgsc.mutex.Lock()
defer fgsc.mutex.Unlock()
allClusters := make([]*container.Cluster, 0)
projectPath := fmt.Sprintf("projects/%s", project)
for location, cls := range fgsc.clusters {
// If the clusters are under this project
if strings.HasPrefix(location, projectPath) {
allClusters = append(allClusters, cls...)
}
}
return allClusters, nil
}
// GetOperation gets the operation with the given settings.
func (fgsc *GKESDKClient) GetOperation(project, region, zone, opName string) (*container.Operation, error) {
fgsc.mutex.Lock()
op, ok := fgsc.ops[opName]
fgsc.mutex.Unlock()
if ok {
return op, nil
}
return nil, errors.New(opName + " operation not found")
}