mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
95 lines
2.8 KiB
Go
95 lines
2.8 KiB
Go
package e2e
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/argoproj/argo-cd/gitops-engine/pkg/health"
|
|
. "github.com/argoproj/argo-cd/gitops-engine/pkg/sync/common"
|
|
|
|
. "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/app"
|
|
)
|
|
|
|
func TestOCIImage(t *testing.T) {
|
|
Given(t).
|
|
RepoURLType(fixture.RepoURLTypeOCI).
|
|
PushImageToOCIRegistry("testdata/guestbook", "1.0.0").
|
|
OCIRepoAdded("guestbook", "guestbook").
|
|
Revision("1.0.0").
|
|
OCIRegistry(fixture.OCIHostURL).
|
|
OCIRegistryPath("guestbook").
|
|
Path(".").
|
|
When().
|
|
CreateApp().
|
|
Then().
|
|
Expect(SyncStatusIs(SyncStatusCodeOutOfSync)).
|
|
Expect(Success("")).
|
|
When().
|
|
Sync().
|
|
Then().
|
|
Expect(Success("")).
|
|
Expect(OperationPhaseIs(OperationSucceeded)).
|
|
Expect(SyncStatusIs(SyncStatusCodeSynced)).
|
|
Expect(HealthIs(health.HealthStatusHealthy))
|
|
}
|
|
|
|
func TestOCIWithOCIHelmRegistryDependencies(t *testing.T) {
|
|
Given(t).
|
|
RepoURLType(fixture.RepoURLTypeOCI).
|
|
PushChartToOCIRegistry("testdata/helm-values", "helm-values", "1.0.0").
|
|
PushImageToOCIRegistry("testdata/helm-oci-with-dependencies", "1.0.0").
|
|
OCIRegistry(fixture.OCIHostURL).
|
|
OCIRepoAdded("helm-oci-with-dependencies", "helm-oci-with-dependencies").
|
|
OCIRegistryPath("helm-oci-with-dependencies").
|
|
Revision("1.0.0").
|
|
Path(".").
|
|
When().
|
|
CreateApp().
|
|
Then().
|
|
When().
|
|
Sync().
|
|
Then().
|
|
Expect(OperationPhaseIs(OperationSucceeded)).
|
|
Expect(HealthIs(health.HealthStatusHealthy)).
|
|
Expect(SyncStatusIs(SyncStatusCodeSynced))
|
|
}
|
|
|
|
func TestOCIWithAuthedOCIHelmRegistryDeps(t *testing.T) {
|
|
Given(t).
|
|
RepoURLType(fixture.RepoURLTypeOCI).
|
|
PushChartToAuthenticatedOCIRegistry("testdata/helm-values", "helm-values", "1.0.0").
|
|
PushImageToOCIRegistry("testdata/helm-oci-authed-with-dependencies", "1.0.0").
|
|
OCIRepoAdded("helm-oci-authed-with-dependencies", "helm-oci-authed-with-dependencies").
|
|
AuthenticatedOCIRepoAdded("helm-values", "myrepo/helm-values").
|
|
OCIRegistry(fixture.OCIHostURL).
|
|
OCIRegistryPath("helm-oci-authed-with-dependencies").
|
|
Revision("1.0.0").
|
|
Path(".").
|
|
When().
|
|
CreateApp().
|
|
Then().
|
|
When().
|
|
Sync().
|
|
Then().
|
|
Expect(OperationPhaseIs(OperationSucceeded)).
|
|
Expect(HealthIs(health.HealthStatusHealthy)).
|
|
Expect(SyncStatusIs(SyncStatusCodeSynced))
|
|
}
|
|
|
|
func TestOCIImageWithOutOfBoundsSymlink(t *testing.T) {
|
|
Given(t).
|
|
RepoURLType(fixture.RepoURLTypeOCI).
|
|
PushImageToOCIRegistry("testdata3/symlink-out-of-bounds", "1.0.0").
|
|
OCIRepoAdded("symlink-out-of-bounds", "symlink-out-of-bounds").
|
|
Revision("1.0.0").
|
|
OCIRegistry(fixture.OCIHostURL).
|
|
OCIRegistryPath("symlink-out-of-bounds").
|
|
Path(".").
|
|
When().
|
|
IgnoreErrors().
|
|
CreateApp().
|
|
Then().
|
|
Expect(Error("", "could not decompress layer: illegal filepath in symlink"))
|
|
}
|