mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
255 lines
8.6 KiB
Go
255 lines
8.6 KiB
Go
//
|
|
// DISCLAIMER
|
|
//
|
|
// Copyright 2018 ArangoDB GmbH, Cologne, Germany
|
|
//
|
|
// 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.
|
|
//
|
|
// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
//
|
|
// Author Ewout Prangsma
|
|
//
|
|
|
|
package tests
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/dchest/uniuri"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
driver "github.com/arangodb/go-driver"
|
|
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1alpha"
|
|
"github.com/arangodb/kube-arangodb/pkg/client"
|
|
"github.com/arangodb/kube-arangodb/pkg/generated/clientset/versioned"
|
|
"github.com/arangodb/kube-arangodb/pkg/util"
|
|
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
|
|
"github.com/arangodb/kube-arangodb/pkg/util/retry"
|
|
)
|
|
|
|
// waitUntilReplicationNotFound waits until a replication resource is deleted
|
|
func waitUntilReplicationNotFound(ns, name string, cli versioned.Interface) error {
|
|
return retry.Retry(func() error {
|
|
if _, err := cli.Replication().ArangoDeploymentReplications(ns).Get(name, metav1.GetOptions{}); k8sutil.IsNotFound(err) {
|
|
return nil
|
|
} else if err != nil {
|
|
return err
|
|
}
|
|
return fmt.Errorf("Resource not yet gone")
|
|
}, time.Minute)
|
|
}
|
|
|
|
// TestSyncSimple create two clusters and configures sync between them.
|
|
// Then it creates a test collection in source and waits for it to appear in dest.
|
|
func TestSyncSimple(t *testing.T) {
|
|
longOrSkip(t)
|
|
img := getEnterpriseImageOrSkip(t)
|
|
c := client.MustNewInCluster()
|
|
kubecli := mustNewKubeClient(t)
|
|
ns := getNamespace(t)
|
|
|
|
apname := "test-sync-sdc-a-access-package"
|
|
|
|
depla := newDeployment("test-sync-sdc-a-" + uniuri.NewLen(4))
|
|
depla.Spec.Mode = api.NewMode(api.DeploymentModeCluster)
|
|
depla.Spec.Image = util.NewString(img)
|
|
depla.Spec.Sync.Enabled = util.NewBool(true)
|
|
depla.Spec.Sync.ExternalAccess.Type = api.NewExternalAccessType(api.ExternalAccessTypeNone)
|
|
depla.Spec.Sync.ExternalAccess.AccessPackageSecretNames = []string{apname}
|
|
|
|
// Create deployment
|
|
_, err := c.DatabaseV1alpha().ArangoDeployments(ns).Create(depla)
|
|
if err != nil {
|
|
t.Fatalf("Create deployment a failed: %v", err)
|
|
}
|
|
// Prepare cleanup
|
|
defer deferedCleanupDeployment(c, depla.GetName(), ns)
|
|
|
|
deplb := newDeployment("test-sync-sdc-b-" + uniuri.NewLen(4))
|
|
deplb.Spec.Mode = api.NewMode(api.DeploymentModeCluster)
|
|
deplb.Spec.Image = util.NewString(img)
|
|
deplb.Spec.Sync.Enabled = util.NewBool(true)
|
|
deplb.Spec.Sync.ExternalAccess.Type = api.NewExternalAccessType(api.ExternalAccessTypeNone)
|
|
|
|
// Create deployment
|
|
_, err = c.DatabaseV1alpha().ArangoDeployments(ns).Create(deplb)
|
|
if err != nil {
|
|
t.Fatalf("Create deployment b failed: %v", err)
|
|
}
|
|
// Prepare cleanup
|
|
defer deferedCleanupDeployment(c, deplb.GetName(), ns)
|
|
|
|
// Wait for deployments to be ready
|
|
// Wait for access package
|
|
// Deploy access package
|
|
_, err = waitUntilSecret(kubecli, apname, ns, nil, deploymentReadyTimeout)
|
|
if err != nil {
|
|
t.Fatalf("Failed to get access package: %v", err)
|
|
}
|
|
|
|
// Deploy Replication Resource
|
|
repl := newReplication("test-sync-sdc-repl")
|
|
repl.Spec.Source.DeploymentName = util.NewString(depla.GetName())
|
|
repl.Spec.Source.Authentication.KeyfileSecretName = util.NewString(apname)
|
|
repl.Spec.Source.TLS.CASecretName = util.NewString(apname)
|
|
repl.Spec.Destination.DeploymentName = util.NewString(deplb.GetName())
|
|
_, err = c.ReplicationV1alpha().ArangoDeploymentReplications(ns).Create(repl)
|
|
if err != nil {
|
|
t.Fatalf("Create replication resource failed: %v", err)
|
|
}
|
|
defer deferedCleanupReplication(c, repl.GetName(), ns)
|
|
|
|
deplaobj, err := waitUntilDeployment(c, depla.GetName(), ns, deploymentIsReady())
|
|
if err != nil {
|
|
t.Fatalf("Deployment A not running in time: %v", err)
|
|
}
|
|
|
|
deplbobj, err := waitUntilDeployment(c, deplb.GetName(), ns, deploymentIsReady())
|
|
if err != nil {
|
|
t.Fatalf("Deployment B not running in time: %v", err)
|
|
}
|
|
|
|
// Create a database in DC-A
|
|
// Wait for database in DC-B
|
|
time.Sleep(10 * time.Second)
|
|
testdbname := "replicated-db"
|
|
|
|
ctx := context.Background()
|
|
clienta := mustNewArangodDatabaseClient(ctx, kubecli, deplaobj, t, nil)
|
|
if _, err := clienta.CreateDatabase(ctx, testdbname, nil); err != nil {
|
|
t.Fatalf("Failed to create database in a: %v", err)
|
|
}
|
|
|
|
clientb := mustNewArangodDatabaseClient(ctx, kubecli, deplbobj, t, nil)
|
|
retry.Retry(func() error {
|
|
if ok, err := clientb.DatabaseExists(ctx, testdbname); err != nil {
|
|
return err
|
|
} else if !ok {
|
|
return fmt.Errorf("Database does not exist")
|
|
}
|
|
return nil
|
|
}, time.Minute)
|
|
|
|
// Disable replication
|
|
removeReplication(c, repl.GetName(), ns)
|
|
if err := waitUntilReplicationNotFound(ns, repl.GetName(), c); err != nil {
|
|
t.Errorf("Could not remove replication resource: %v", err)
|
|
}
|
|
|
|
// Cleanup
|
|
removeDeployment(c, deplb.GetName(), ns)
|
|
removeDeployment(c, depla.GetName(), ns)
|
|
}
|
|
|
|
// TestSyncToggleEnabled tests a normal cluster and enables sync later.
|
|
// Once sync is active, it is disabled again.
|
|
func TestSyncToggleEnabled(t *testing.T) {
|
|
longOrSkip(t)
|
|
img := getEnterpriseImageOrSkip(t)
|
|
c := client.MustNewInCluster()
|
|
kubecli := mustNewKubeClient(t)
|
|
ns := getNamespace(t)
|
|
|
|
// Prepare deployment config
|
|
depl := newDeployment("test-sync-toggle-" + uniuri.NewLen(4))
|
|
depl.Spec.Mode = api.NewMode(api.DeploymentModeCluster)
|
|
depl.Spec.Image = util.NewString(img)
|
|
|
|
// Create deployment
|
|
_, err := c.DatabaseV1alpha().ArangoDeployments(ns).Create(depl)
|
|
if err != nil {
|
|
t.Fatalf("Create deployment failed: %v", err)
|
|
}
|
|
// Prepare cleanup
|
|
defer deferedCleanupDeployment(c, depl.GetName(), ns)
|
|
|
|
// Wait for deployment to be ready
|
|
apiObject, err := waitUntilDeployment(c, depl.GetName(), ns, deploymentIsReady())
|
|
if err != nil {
|
|
t.Fatalf("Deployment not running in time: %v", err)
|
|
}
|
|
|
|
// Create a database client
|
|
ctx := context.Background()
|
|
client := mustNewArangodDatabaseClient(ctx, kubecli, apiObject, t, nil)
|
|
|
|
// Wait for cluster to be completely ready
|
|
if err := waitUntilClusterHealth(client, func(h driver.ClusterHealth) error {
|
|
return clusterHealthEqualsSpec(h, apiObject.Spec)
|
|
}); err != nil {
|
|
t.Fatalf("Cluster not running in expected health in time: %v", err)
|
|
}
|
|
|
|
// Enable sync
|
|
updated, err := updateDeployment(c, depl.GetName(), ns, func(spec *api.DeploymentSpec) {
|
|
spec.Sync.Enabled = util.NewBool(true)
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("Failed to update deployment: %v", err)
|
|
}
|
|
|
|
// Wait until sync jwt secret has been created
|
|
if _, err := waitUntilSecret(kubecli, updated.Spec.Sync.Authentication.GetJWTSecretName(), ns, nil, deploymentReadyTimeout); err != nil {
|
|
t.Fatalf("Sync JWT secret not created in time: %v", err)
|
|
}
|
|
|
|
// Create a syncmaster client
|
|
syncClient := mustNewArangoSyncClient(ctx, kubecli, apiObject, t)
|
|
|
|
// Wait for syncmasters to be available
|
|
if err := waitUntilSyncVersionUp(syncClient, nil); err != nil {
|
|
t.Fatalf("SyncMasters not running returning version in time: %v", err)
|
|
}
|
|
|
|
// Wait for cluster to reach new size
|
|
if err := waitUntilClusterHealth(client, func(h driver.ClusterHealth) error {
|
|
return clusterHealthEqualsSpec(h, updated.Spec)
|
|
}); err != nil {
|
|
t.Fatalf("Cluster not running, after scale-up, in expected health in time: %v", err)
|
|
}
|
|
// Check number of syncmasters
|
|
if err := waitUntilSyncMasterCountReached(syncClient, 3); err != nil {
|
|
t.Fatalf("Unexpected #syncmasters, after enabling sync: %v", err)
|
|
}
|
|
// Check number of syncworkers
|
|
if err := waitUntilSyncWorkerCountReached(syncClient, 3); err != nil {
|
|
t.Fatalf("Unexpected #syncworkers, after enabling sync: %v", err)
|
|
}
|
|
|
|
// Disable sync
|
|
updated, err = updateDeployment(c, depl.GetName(), ns, func(spec *api.DeploymentSpec) {
|
|
spec.Sync.Enabled = util.NewBool(false)
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("Failed to update deployment: %v", err)
|
|
}
|
|
|
|
// Wait for deployment to have no more syncmasters & workers
|
|
if _, err := waitUntilDeployment(c, depl.GetName(), ns, func(apiObject *api.ArangoDeployment) error {
|
|
if cnt := len(apiObject.Status.Members.SyncMasters); cnt > 0 {
|
|
return maskAny(fmt.Errorf("Expected 0 syncmasters, got %d", cnt))
|
|
}
|
|
if cnt := len(apiObject.Status.Members.SyncWorkers); cnt > 0 {
|
|
return maskAny(fmt.Errorf("Expected 0 syncworkers, got %d", cnt))
|
|
}
|
|
return nil
|
|
}); err != nil {
|
|
t.Fatalf("Failed to reach deployment state without syncmasters & syncworkers: %v", err)
|
|
}
|
|
|
|
// Cleanup
|
|
removeDeployment(c, depl.GetName(), ns)
|
|
}
|