// Copyright 2025 Woodpecker Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package fixtures import ( _ "embed" "net/http" "net/url" ) var ( ServiceHookMethod = http.MethodPost ServiceHookURL, _ = url.Parse( "http://10.40.8.5:8000/hook?owner=test&name=woodpecker&access_token=dummyToken." + "eyJ0ZXh0IjoidGVzdC93b29kcGVja2VyIiwidHlwZSI6Imhvb2sifQ.x3kPnmZtxZQ_9_eMhfQ1HSmj_SLhdT_Lu2hMczWjKh0") ServiceHookHeaders = http.Header{ "Content-Type": []string{"application/json"}, "User-Agent": []string{"GitLab/14.3.0"}, "X-Gitlab-Event": []string{"Service Hook"}, } ReleaseHookHeaders = http.Header{ "Content-Type": []string{"application/json"}, "User-Agent": []string{"GitLab/14.3.0"}, "X-Gitlab-Event": []string{"Release Hook"}, } MergeRequestHookHeaders = http.Header{ "Content-Type": []string{"application/json"}, "User-Agent": []string{"GitLab/18.3.0-pre"}, "X-Gitlab-Event": []string{"Merge Request Hook"}, } ) // HookPush is payload of a push event // //go:embed HookPush.json var HookPush []byte // HookTag is payload of a TAG event // //go:embed HookTag.json var HookTag []byte // HookPullRequest is payload of a PULL_REQUEST event // //go:embed HookPullRequestUpdated.json var HookPullRequestUpdated []byte //go:embed HookPullRequestOpened.json var HookPullRequestOpened []byte //go:embed HookPullRequestWithoutChanges.json var HookPullRequestWithoutChanges []byte //go:embed HookPullRequestApproved.json var HookPullRequestApproved []byte //go:embed HookPullRequestEdited.json var HookPullRequestEdited []byte //go:embed HookPullRequestClosed.json var HookPullRequestClosed []byte //go:embed HookPullRequestMerged.json var HookPullRequestMerged []byte //go:embed WebhookReleaseBody.json var WebhookReleaseBody []byte //go:embed HookPullRequestReopened.json var HookPullRequestReopened []byte //go:embed HookPullRequestUnsupportedAction.json var HookPullRequestUnsupportedAction []byte //go:embed HookPullRequestReviewRequested.json var HookPullRequestReviewRequested []byte //go:embed HookPullRequestReviewRequestDel.json var HookPullRequestReviewRequestDel []byte //go:embed HookPullRequestAssigned.json var HookPullRequestAssigned []byte //go:embed HookPullRequestDemilestoned.json var HookPullRequestDemilestoned []byte //go:embed HookPullRequestLabelsAdded.json var HookPullRequestLabelsAdded []byte //go:embed HookPullRequestLabelsCleared.json var HookPullRequestLabelsCleared []byte //go:embed HookPullRequestLabelsUpdated.json var HookPullRequestLabelsUpdated []byte //go:embed HookPullRequestMilestoned.json var HookPullRequestMilestoned []byte //go:embed HookPullRequestUnapproved.json var HookPullRequestUnapproved []byte //go:embed HookPullRequestUnassigned.json var HookPullRequestUnassigned []byte