mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-04 07:08:19 +00:00
* chore: Upgrade Go module to v2 Signed-off-by: jannfis <jann@mistrust.net> * Restore import order Signed-off-by: jannfis <jann@mistrust.net> * fix knowntypes_normalizer codegen error Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> * fix codegen Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> * fix Procfile Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> Co-authored-by: Alexander Matyushentsev <AMatyushentsev@gmail.com>
27 lines
529 B
Go
27 lines
529 B
Go
package e2e
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/argoproj/gitops-engine/pkg/sync/common"
|
|
|
|
. "github.com/argoproj/argo-cd/v2/test/e2e/fixture/app"
|
|
)
|
|
|
|
// check we fail with message if we delete a non-prunable resource
|
|
func TestPruningRequired(t *testing.T) {
|
|
Given(t).
|
|
Path("two-nice-pods").
|
|
Prune(false).
|
|
When().
|
|
IgnoreErrors().
|
|
Create().
|
|
Sync().
|
|
Then().
|
|
Expect(OperationPhaseIs(OperationSucceeded)).
|
|
When().
|
|
DeleteFile("pod-2.yaml").
|
|
Sync().
|
|
Then().
|
|
Expect(Error("", "1 resources require pruning"))
|
|
}
|