mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 20:38:00 +00:00
425a8b5fd5
* 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: change backup and restore to crdb native * fix: timeout for delete pvc for cockroachdb * fix: corrected unit tests * fix: add ignored file for scale * fix: correct handling of gitops in backup command * feat: add s3 backup kind * fix: backuplist for s3 and timeout for pv deletion * fix(database): fix nil pointer with binary version * fix(database): cleanup of errors which cam with merging of the s3 logic * fix: correct unit tests * fix: cleanup monitor output Co-authored-by: Elio Bischof <eliobischof@gmail.com> * fix: backup imagepullpolixy to ifnotpresent Co-authored-by: Elio Bischof <eliobischof@gmail.com>
42 lines
1.4 KiB
Go
42 lines
1.4 KiB
Go
package backup
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/caos/orbos/mntr"
|
|
kubernetesmock "github.com/caos/orbos/pkg/kubernetes/mock"
|
|
"github.com/golang/mock/gomock"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestBackup_Cleanup1(t *testing.T) {
|
|
client := kubernetesmock.NewMockClientInt(gomock.NewController(t))
|
|
monitor := mntr.Monitor{}
|
|
name := "test"
|
|
namespace := "testNs"
|
|
|
|
cleanupFunc := GetCleanupFunc(monitor, namespace, name)
|
|
client.EXPECT().WaitUntilJobCompleted(namespace, GetJobName(name), timeout).Times(1).Return(nil)
|
|
client.EXPECT().DeleteJob(namespace, GetJobName(name)).Times(1)
|
|
assert.NoError(t, cleanupFunc(client))
|
|
|
|
client.EXPECT().WaitUntilJobCompleted(namespace, GetJobName(name), timeout).Times(1).Return(fmt.Errorf("fail"))
|
|
assert.Error(t, cleanupFunc(client))
|
|
}
|
|
|
|
func TestBackup_Cleanup2(t *testing.T) {
|
|
client := kubernetesmock.NewMockClientInt(gomock.NewController(t))
|
|
monitor := mntr.Monitor{}
|
|
name := "test2"
|
|
namespace := "testNs2"
|
|
|
|
cleanupFunc := GetCleanupFunc(monitor, namespace, name)
|
|
client.EXPECT().WaitUntilJobCompleted(namespace, GetJobName(name), timeout).Times(1).Return(nil)
|
|
client.EXPECT().DeleteJob(namespace, GetJobName(name)).Times(1)
|
|
assert.NoError(t, cleanupFunc(client))
|
|
|
|
client.EXPECT().WaitUntilJobCompleted(namespace, GetJobName(name), timeout).Times(1).Return(fmt.Errorf("fail"))
|
|
assert.Error(t, cleanupFunc(client))
|
|
}
|