mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
84 lines
3.0 KiB
Go
84 lines
3.0 KiB
Go
package e2e
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/argoproj/argo-cd/gitops-engine/pkg/utils/kube"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
. "github.com/argoproj/argo-cd/v3/pkg/apis/application/v1alpha1"
|
|
"github.com/argoproj/argo-cd/v3/test/e2e/fixture"
|
|
. "github.com/argoproj/argo-cd/v3/test/e2e/fixture/admin"
|
|
. "github.com/argoproj/argo-cd/v3/test/e2e/fixture/admin/utils"
|
|
appfixture "github.com/argoproj/argo-cd/v3/test/e2e/fixture/app"
|
|
)
|
|
|
|
func TestBackupExportImport(t *testing.T) {
|
|
var exportRawOutput string
|
|
ctx := Given(t)
|
|
// Create application in argocd namespace
|
|
appctx := appfixture.GivenWithSameState(ctx)
|
|
|
|
var appTestNamespace Application
|
|
var appOtherNamespace Application
|
|
|
|
// Create application in test namespace
|
|
appctx.
|
|
Path(guestbookPath).
|
|
Name("exported-app1").
|
|
When().
|
|
CreateApp().
|
|
Then().
|
|
And(func(app *Application) {
|
|
assert.Equal(t, appctx.AppName(), app.Name)
|
|
assert.Equal(t, appctx.AppNamespace(), app.Namespace)
|
|
appTestNamespace = *app
|
|
})
|
|
|
|
// Create app in other namespace
|
|
appctx.
|
|
Path(guestbookPath).
|
|
Name("exported-app-other-namespace").
|
|
SetAppNamespace(fixture.AppNamespace()).
|
|
When().
|
|
CreateApp().
|
|
Then().
|
|
And(func(app *Application) {
|
|
assert.Equal(t, appctx.AppName(), app.Name)
|
|
assert.Equal(t, appctx.AppNamespace(), app.Namespace)
|
|
appOtherNamespace = *app
|
|
})
|
|
|
|
ctx.
|
|
When().
|
|
RunExport().
|
|
Then().
|
|
AndCLIOutput(func(output string, err error) {
|
|
require.NoError(t, err, "export finished with error")
|
|
exportRawOutput = output
|
|
}).
|
|
AndExportedResources(func(exportResources *ExportedResources, err error) {
|
|
require.NoError(t, err, "export format not valid")
|
|
assert.True(t, exportResources.HasResource(kube.NewResourceKey("", "ConfigMap", "", "argocd-cm")), "argocd-cm not found in export")
|
|
assert.True(t, exportResources.HasResource(kube.NewResourceKey(ApplicationSchemaGroupVersionKind.Group, ApplicationSchemaGroupVersionKind.Kind, "", appTestNamespace.GetName())), "test namespace application not in export")
|
|
assert.True(t, exportResources.HasResource(kube.NewResourceKey(ApplicationSchemaGroupVersionKind.Group, ApplicationSchemaGroupVersionKind.Kind, appOtherNamespace.GetNamespace(), appOtherNamespace.GetName())), "app namespace application not in export")
|
|
})
|
|
|
|
// Test import - clean state
|
|
ctx = Given(t)
|
|
|
|
ctx.
|
|
When().
|
|
RunImport(exportRawOutput).
|
|
Then().
|
|
AndCLIOutput(func(_ string, err error) {
|
|
require.NoError(t, err, "import finished with error")
|
|
_, err = fixture.AppClientset.ArgoprojV1alpha1().Applications(appTestNamespace.GetNamespace()).Get(t.Context(), appTestNamespace.GetName(), metav1.GetOptions{})
|
|
require.NoError(t, err, "failed getting test namespace application after import")
|
|
_, err = fixture.AppClientset.ArgoprojV1alpha1().Applications(appOtherNamespace.GetNamespace()).Get(t.Context(), appOtherNamespace.GetName(), metav1.GetOptions{})
|
|
require.NoError(t, err, "failed getting app namespace application after import")
|
|
})
|
|
}
|