mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
25c9d7371d
* fix(zitadelctl): implement takedown command * fix(zitadelctl): correct destroy flow * fix(zitadelctl): correct backup commands to read crds beforehand * fix: add of destroyfile * fix: clean for userlist * fix: determine mode by --gitops flag for backups * refactor: return error instead of higher order function * fix(destroy): needs no self-reconciling Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(destroy): needs no self-reconciling Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix(logs): fix double handled error Co-authored-by: Elio Bischof <eliobischof@gmail.com> Co-authored-by: Elio Bischof <eliobischof@gmail.com>
138 lines
3.4 KiB
Go
138 lines
3.4 KiB
Go
package clean
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/caos/orbos/mntr"
|
|
"github.com/caos/orbos/pkg/kubernetes"
|
|
kubernetesmock "github.com/caos/orbos/pkg/kubernetes/mock"
|
|
"github.com/caos/orbos/pkg/labels"
|
|
"github.com/golang/mock/gomock"
|
|
"github.com/stretchr/testify/assert"
|
|
corev1 "k8s.io/api/core/v1"
|
|
macherrs "k8s.io/apimachinery/pkg/api/errors"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
func TestBackup_Adapt1(t *testing.T) {
|
|
client := kubernetesmock.NewMockClientInt(gomock.NewController(t))
|
|
|
|
monitor := mntr.Monitor{}
|
|
namespace := "testNs"
|
|
databases := []string{"testDb"}
|
|
users := []string{"testUser"}
|
|
nodeselector := map[string]string{"test": "test"}
|
|
tolerations := []corev1.Toleration{
|
|
{Key: "testKey", Operator: "testOp"}}
|
|
backupName := "testName"
|
|
image := "testImage"
|
|
secretKey := "testKey"
|
|
secretName := "testSecretName"
|
|
jobName := GetJobName(backupName)
|
|
componentLabels := labels.MustForComponent(labels.MustForAPI(labels.MustForOperator("testProd", "testOp", "testVersion"), "testKind", "testVersion"), "testComponent")
|
|
nameLabels := labels.MustForName(componentLabels, jobName)
|
|
|
|
checkDBReady := func(k8sClient kubernetes.ClientInt) error {
|
|
return nil
|
|
}
|
|
|
|
jobDef := getJob(
|
|
namespace,
|
|
nameLabels,
|
|
nodeselector,
|
|
tolerations,
|
|
secretName,
|
|
secretKey,
|
|
getCommand(
|
|
databases,
|
|
users,
|
|
),
|
|
image,
|
|
)
|
|
|
|
client.EXPECT().ApplyJob(jobDef).Times(1).Return(nil)
|
|
client.EXPECT().GetJob(jobDef.Namespace, jobDef.Name).Times(1).Return(nil, macherrs.NewNotFound(schema.GroupResource{"batch", "jobs"}, jobName))
|
|
|
|
query, _, err := AdaptFunc(
|
|
monitor,
|
|
backupName,
|
|
namespace,
|
|
componentLabels,
|
|
databases,
|
|
users,
|
|
nodeselector,
|
|
tolerations,
|
|
checkDBReady,
|
|
secretName,
|
|
secretKey,
|
|
image,
|
|
)
|
|
|
|
assert.NoError(t, err)
|
|
queried := map[string]interface{}{}
|
|
ensure, err := query(client, queried)
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, ensure(client))
|
|
}
|
|
|
|
func TestBackup_Adapt2(t *testing.T) {
|
|
client := kubernetesmock.NewMockClientInt(gomock.NewController(t))
|
|
|
|
monitor := mntr.Monitor{}
|
|
namespace := "testNs2"
|
|
databases := []string{"testDb1", "testDb2"}
|
|
users := []string{"testUser1", "testUser2"}
|
|
nodeselector := map[string]string{"test2": "test2"}
|
|
tolerations := []corev1.Toleration{
|
|
{Key: "testKey2", Operator: "testOp2"}}
|
|
backupName := "testName2"
|
|
image := "testImage2"
|
|
secretKey := "testKey2"
|
|
secretName := "testSecretName2"
|
|
jobName := GetJobName(backupName)
|
|
componentLabels := labels.MustForComponent(labels.MustForAPI(labels.MustForOperator("testProd2", "testOp2", "testVersion2"), "testKind2", "testVersion2"), "testComponent2")
|
|
nameLabels := labels.MustForName(componentLabels, jobName)
|
|
|
|
checkDBReady := func(k8sClient kubernetes.ClientInt) error {
|
|
return nil
|
|
}
|
|
|
|
jobDef := getJob(
|
|
namespace,
|
|
nameLabels,
|
|
nodeselector,
|
|
tolerations,
|
|
secretName,
|
|
secretKey,
|
|
getCommand(
|
|
databases,
|
|
users,
|
|
),
|
|
image,
|
|
)
|
|
|
|
client.EXPECT().ApplyJob(jobDef).Times(1).Return(nil)
|
|
client.EXPECT().GetJob(jobDef.Namespace, jobDef.Name).Times(1).Return(nil, macherrs.NewNotFound(schema.GroupResource{"batch", "jobs"}, jobName))
|
|
|
|
query, _, err := AdaptFunc(
|
|
monitor,
|
|
backupName,
|
|
namespace,
|
|
componentLabels,
|
|
databases,
|
|
users,
|
|
nodeselector,
|
|
tolerations,
|
|
checkDBReady,
|
|
secretName,
|
|
secretKey,
|
|
image,
|
|
)
|
|
|
|
assert.NoError(t, err)
|
|
queried := map[string]interface{}{}
|
|
ensure, err := query(client, queried)
|
|
assert.NoError(t, err)
|
|
assert.NoError(t, ensure(client))
|
|
}
|