-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Description Relates to #2512 ## Checklist before merging - [ ] Test, docs, adr added or updated as needed - [ ] [Contributor Guide Steps](https://github.com/defenseunicorns/zarf/blob/main/.github/CONTRIBUTING.md#developer-workflow) followed --------- Co-authored-by: Lucas Rodriguez <lucas.rodriguez@defenseunicorns.com> Co-authored-by: razzle <razzle@defenseunicorns.com> Co-authored-by: schristoff <167717759+schristoff-du@users.noreply.github.com>
- Loading branch information
1 parent
c8c52d9
commit 1dcc140
Showing
8 changed files
with
338 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// SPDX-FileCopyrightText: 2021-Present The Zarf Authors | ||
|
||
package hooks | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
"net/http" | ||
"testing" | ||
|
||
"github.com/defenseunicorns/zarf/src/internal/agent/http/admission" | ||
"github.com/defenseunicorns/zarf/src/internal/agent/operations" | ||
"github.com/defenseunicorns/zarf/src/types" | ||
"github.com/stretchr/testify/require" | ||
v1 "k8s.io/api/admission/v1" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
) | ||
|
||
func createArgoAppAdmissionRequest(t *testing.T, op v1.Operation, argoApp *Application) *v1.AdmissionRequest { | ||
t.Helper() | ||
raw, err := json.Marshal(argoApp) | ||
require.NoError(t, err) | ||
return &v1.AdmissionRequest{ | ||
Operation: op, | ||
Object: runtime.RawExtension{ | ||
Raw: raw, | ||
}, | ||
} | ||
} | ||
|
||
func TestArgoAppWebhook(t *testing.T) { | ||
t.Parallel() | ||
|
||
ctx := context.Background() | ||
state := &types.ZarfState{GitServer: types.GitServerInfo{ | ||
Address: "https://git-server.com", | ||
PushUsername: "a-push-user", | ||
}} | ||
c := createTestClientWithZarfState(ctx, t, state) | ||
handler := admission.NewHandler().Serve(NewApplicationMutationHook(ctx, c)) | ||
|
||
tests := []admissionTest{ | ||
{ | ||
name: "should be mutated", | ||
admissionReq: createArgoAppAdmissionRequest(t, v1.Create, &Application{ | ||
Spec: ApplicationSpec{ | ||
Source: &ApplicationSource{RepoURL: "https://diff-git-server.com/peanuts"}, | ||
Sources: []ApplicationSource{ | ||
{ | ||
RepoURL: "https://diff-git-server.com/cashews", | ||
}, | ||
{ | ||
RepoURL: "https://diff-git-server.com/almonds", | ||
}, | ||
}, | ||
}, | ||
}), | ||
patch: []operations.PatchOperation{ | ||
operations.ReplacePatchOperation( | ||
"/spec/source/repoURL", | ||
"https://git-server.com/a-push-user/peanuts-3883081014", | ||
), | ||
operations.ReplacePatchOperation( | ||
"/spec/sources/0/repoURL", | ||
"https://git-server.com/a-push-user/cashews-580170494", | ||
), | ||
operations.ReplacePatchOperation( | ||
"/spec/sources/1/repoURL", | ||
"https://git-server.com/a-push-user/almonds-640159520", | ||
), | ||
}, | ||
code: http.StatusOK, | ||
}, | ||
{ | ||
name: "should return internal server error on bad git URL", | ||
admissionReq: createArgoAppAdmissionRequest(t, v1.Create, &Application{ | ||
Spec: ApplicationSpec{ | ||
Source: &ApplicationSource{RepoURL: "https://bad-url"}, | ||
}, | ||
}), | ||
code: http.StatusInternalServerError, | ||
errContains: AgentErrTransformGitURL, | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
tt := tt | ||
t.Run(tt.name, func(t *testing.T) { | ||
t.Parallel() | ||
rr := sendAdmissionRequest(t, tt.admissionReq, handler) | ||
verifyAdmission(t, rr, tt) | ||
}) | ||
} | ||
} |
Oops, something went wrong.