Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the correct client in HooksSuccessTest #8808

Merged
merged 1 commit into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions esti/hooks.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func HooksSuccessTest(ctx context.Context, t *testing.T, repo string, lakeFSClie
server := StartWebhookServer(t)
defer func() { _ = server.Server().Shutdown(ctx) }()
parseAndUploadActions(t, ctx, repo, mainBranch, server, lakeFSClient)
commitResp, err := client.CommitWithResponse(ctx, repo, mainBranch, &apigen.CommitParams{}, apigen.CommitJSONRequestBody{
commitResp, err := lakeFSClient.CommitWithResponse(ctx, repo, mainBranch, &apigen.CommitParams{}, apigen.CommitJSONRequestBody{
Message: "Initial content",
})
require.NoError(t, err, "failed to commit initial content")
Expand All @@ -48,13 +48,13 @@ func HooksSuccessTest(ctx context.Context, t *testing.T, repo string, lakeFSClie
hvd.appendRes(&preCommitEvent)

t.Run("commit merge test", func(t *testing.T) {
testCommitMerge(t, ctx, repo, &hvd, server)
testCommitMerge(t, ctx, repo, &hvd, server, lakeFSClient)
})
t.Run("create delete branch test", func(t *testing.T) {
testCreateDeleteBranch(t, ctx, repo, &hvd, server)
testCreateDeleteBranch(t, ctx, repo, &hvd, server, lakeFSClient)
})
t.Run("create delete tag test", func(t *testing.T) {
testCreateDeleteTag(t, ctx, repo, &hvd, server)
testCreateDeleteTag(t, ctx, repo, &hvd, server, lakeFSClient)
})

t.Log("check runs are sorted in descending order")
Expand All @@ -67,11 +67,11 @@ func HooksSuccessTest(ctx context.Context, t *testing.T, repo string, lakeFSClie
}
}

func testCommitMerge(t *testing.T, ctx context.Context, repo string, hvd *hooksValidationData, server *WebhookServer) {
func testCommitMerge(t *testing.T, ctx context.Context, repo string, hvd *hooksValidationData, server *WebhookServer, lakeFSClient apigen.ClientWithResponsesInterface) {
const branch = "feature-1"

t.Log("Create branch", branch)
createBranchResp, err := client.CreateBranchWithResponse(ctx, repo, apigen.CreateBranchJSONRequestBody{
createBranchResp, err := lakeFSClient.CreateBranchWithResponse(ctx, repo, apigen.CreateBranchJSONRequestBody{
Name: branch,
Source: mainBranch,
})
Expand All @@ -85,7 +85,7 @@ func testCommitMerge(t *testing.T, ctx context.Context, repo string, hvd *hooksV
require.Equal(t, http.StatusCreated, resp.StatusCode())

t.Log("Commit content", branch)
commitResp, err := client.CommitWithResponse(ctx, repo, branch, &apigen.CommitParams{}, apigen.CommitJSONRequestBody{
commitResp, err := lakeFSClient.CommitWithResponse(ctx, repo, branch, &apigen.CommitParams{}, apigen.CommitJSONRequestBody{
Message: "Initial content",
})
require.NoError(t, err, "failed to commit initial content")
Expand Down Expand Up @@ -138,7 +138,7 @@ func testCommitMerge(t *testing.T, ctx context.Context, repo string, hvd *hooksV
Metadata: commitRecord.Metadata.AdditionalProperties,
}, postCommitEvent)

mergeResp, err := client.MergeIntoBranchWithResponse(ctx, repo, branch, mainBranch, apigen.MergeIntoBranchJSONRequestBody{})
mergeResp, err := lakeFSClient.MergeIntoBranchWithResponse(ctx, repo, branch, mainBranch, apigen.MergeIntoBranchJSONRequestBody{})
require.NoError(t, err)

webhookData, err = ResponseWithTimeout(server, 1*time.Minute)
Expand Down Expand Up @@ -205,16 +205,16 @@ func testCommitMerge(t *testing.T, ctx context.Context, repo string, hvd *hooksV
}
}

func testCreateDeleteBranch(t *testing.T, ctx context.Context, repo string, hvd *hooksValidationData, server *WebhookServer) {
func testCreateDeleteBranch(t *testing.T, ctx context.Context, repo string, hvd *hooksValidationData, server *WebhookServer, lakeFSClient apigen.ClientWithResponsesInterface) {
const testBranch = "test_branch_delete"
createBranchResp, err := client.CreateBranchWithResponse(ctx, repo, apigen.CreateBranchJSONRequestBody{
createBranchResp, err := lakeFSClient.CreateBranchWithResponse(ctx, repo, apigen.CreateBranchJSONRequestBody{
Name: testBranch,
Source: mainBranch,
})
require.NoError(t, err, "failed to create branch")
require.Equal(t, http.StatusCreated, createBranchResp.StatusCode())

resp, err := client.GetBranchWithResponse(ctx, repo, mainBranch)
resp, err := lakeFSClient.GetBranchWithResponse(ctx, repo, mainBranch)
require.NoError(t, err)
require.Equal(t, http.StatusOK, resp.StatusCode())
commitID := resp.JSON200.CommitId
Expand Down Expand Up @@ -260,7 +260,7 @@ func testCreateDeleteBranch(t *testing.T, ctx context.Context, repo string, hvd
}, postCreateBranchEvent)

// Delete branch
deleteBranchResp, err := client.DeleteBranchWithResponse(ctx, repo, testBranch, &apigen.DeleteBranchParams{})
deleteBranchResp, err := lakeFSClient.DeleteBranchWithResponse(ctx, repo, testBranch, &apigen.DeleteBranchParams{})

require.NoError(t, err, "failed to delete branch")
require.Equal(t, http.StatusNoContent, deleteBranchResp.StatusCode())
Expand Down Expand Up @@ -304,15 +304,15 @@ func testCreateDeleteBranch(t *testing.T, ctx context.Context, repo string, hvd
}, postDeleteBranchEvent)
}

func testCreateDeleteTag(t *testing.T, ctx context.Context, repo string, hvd *hooksValidationData, server *WebhookServer) {
func testCreateDeleteTag(t *testing.T, ctx context.Context, repo string, hvd *hooksValidationData, server *WebhookServer, lakeFSClient apigen.ClientWithResponsesInterface) {
const tagID = "tag_test_hooks"

resp, err := client.GetBranchWithResponse(ctx, repo, mainBranch)
resp, err := lakeFSClient.GetBranchWithResponse(ctx, repo, mainBranch)
require.NoError(t, err)
require.Equal(t, http.StatusOK, resp.StatusCode())
commitID := resp.JSON200.CommitId

createTagResp, err := client.CreateTagWithResponse(ctx, repo, apigen.CreateTagJSONRequestBody{
createTagResp, err := lakeFSClient.CreateTagWithResponse(ctx, repo, apigen.CreateTagJSONRequestBody{
Id: tagID,
Ref: commitID,
})
Expand Down Expand Up @@ -361,7 +361,7 @@ func testCreateDeleteTag(t *testing.T, ctx context.Context, repo string, hvd *ho
}, postCreateTagEvent)

// Delete tag
deleteTagResp, err := client.DeleteTagWithResponse(ctx, repo, tagID, &apigen.DeleteTagParams{})
deleteTagResp, err := lakeFSClient.DeleteTagWithResponse(ctx, repo, tagID, &apigen.DeleteTagParams{})

require.NoError(t, err, "failed to delete tag")
require.Equal(t, http.StatusNoContent, deleteTagResp.StatusCode())
Expand Down
2 changes: 1 addition & 1 deletion esti/hooks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ import (
func TestHooksSuccess(t *testing.T) {
ctx, _, repo := setupTest(t)
defer tearDownTest(repo)
HooksSuccessTest(ctx, t, repo, nil)
HooksSuccessTest(ctx, t, repo, client)
}
Loading