mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
fbe0f311f2
* feat: comprehensive sentry instrumentation * test: pass * fix: only fetch zitadel dsn in zitadel-operator * chore: use dns for sentry environment as soon as parsed * fix: trust ca certs * ci: update orbos * docs: add usage data explanation * fix: dont send validation errors * docs: improve ingestion data explanation * style: rename flag --disable-ingestion to --disable-analytics * fix: pass --disable-analytics flag to self deployments * fix: destroy command for sentry * fix: update orbos * fix: only switch environment if analytics is enabled * fix: ensure SENTRY_DSN is always set * test: test empty sentry dsn * ci: invalidate build caches * chore: use zitadel-dev if no version is passed * chore: combine dev releases in sentry * refactor: only check for semrel if sentry is enabled
43 lines
1.4 KiB
Go
43 lines
1.4 KiB
Go
package backup
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/caos/orbos/mntr"
|
|
kubernetesmock "github.com/caos/orbos/pkg/kubernetes/mock"
|
|
)
|
|
|
|
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(errors.New("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(errors.New("fail"))
|
|
assert.Error(t, cleanupFunc(client))
|
|
}
|