mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 08:23:48 +02:00
9b687a923e
Fix various typos found via `codespell -q 3 -S vendor -L pullrequest,pullrequests`
306 lines
9.7 KiB
Go
306 lines
9.7 KiB
Go
// Copyright 2021 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 testdata
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
)
|
|
|
|
var (
|
|
ServiceHookMethod = http.MethodPost
|
|
ServiceHookURL, _ = url.Parse(
|
|
"http://10.40.8.5:8000/hook?owner=test&name=woodpecker&access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9." +
|
|
"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"},
|
|
}
|
|
)
|
|
|
|
// ServiceHookPushBody is payload of ServiceHook: Push
|
|
var ServiceHookPushBody = []byte(`{
|
|
"object_kind": "push",
|
|
"event_name": "push",
|
|
"before": "ffe8eb4f91d1fe6bc49f1e610e50e4b5767f0104",
|
|
"after": "16862e368d8ab812e48833b741dad720d6e2cb7f",
|
|
"ref": "refs/heads/master",
|
|
"checkout_sha": "16862e368d8ab812e48833b741dad720d6e2cb7f",
|
|
"message": null,
|
|
"user_id": 2,
|
|
"user_name": "the test",
|
|
"user_username": "test",
|
|
"user_email": "",
|
|
"user_avatar": "https://www.gravatar.com/avatar/dd46a756faad4727fb679320751f6dea?s=80&d=identicon",
|
|
"project_id": 2,
|
|
"project": {
|
|
"id": 2,
|
|
"name": "Woodpecker",
|
|
"description": "",
|
|
"web_url": "http://10.40.8.5:3200/test/woodpecker",
|
|
"avatar_url": "http://example.com/uploads/project/avatar/555/Outh-20-Logo.jpg",
|
|
"git_ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"git_http_url": "http://10.40.8.5:3200/test/woodpecker.git",
|
|
"namespace": "the test",
|
|
"visibility_level": 20,
|
|
"path_with_namespace": "test/woodpecker",
|
|
"default_branch": "develop",
|
|
"ci_config_path": null,
|
|
"homepage": "http://10.40.8.5:3200/test/woodpecker",
|
|
"url": "git@10.40.8.5:test/woodpecker.git",
|
|
"ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"http_url": "http://10.40.8.5:3200/test/woodpecker.git"
|
|
},
|
|
"commits": [
|
|
{
|
|
"id": "16862e368d8ab812e48833b741dad720d6e2cb7f",
|
|
"message": "Update main.go",
|
|
"title": "Update main.go",
|
|
"timestamp": "2021-09-27T04:46:14+00:00",
|
|
"url": "http://10.40.8.5:3200/test/woodpecker/-/commit/16862e368d8ab812e48833b741dad720d6e2cb7f",
|
|
"author": {
|
|
"name": "the test",
|
|
"email": "test@test.test"
|
|
},
|
|
"added": [
|
|
|
|
],
|
|
"modified": [
|
|
"cmd/cli/main.go"
|
|
],
|
|
"removed": [
|
|
|
|
]
|
|
}
|
|
],
|
|
"total_commits_count": 1,
|
|
"push_options": {
|
|
},
|
|
"repository": {
|
|
"name": "Woodpecker",
|
|
"url": "git@10.40.8.5:test/woodpecker.git",
|
|
"description": "",
|
|
"homepage": "http://10.40.8.5:3200/test/woodpecker",
|
|
"git_http_url": "http://10.40.8.5:3200/test/woodpecker.git",
|
|
"git_ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"visibility_level": 20
|
|
}
|
|
}`)
|
|
|
|
// ServiceHookTagPushBody is payload of ServiceHook: TagPush
|
|
var ServiceHookTagPushBody = []byte(`{
|
|
"object_kind": "tag_push",
|
|
"event_name": "tag_push",
|
|
"before": "0000000000000000000000000000000000000000",
|
|
"after": "fabed3d94cd03e6c2b7958afa9569c18a24d301f",
|
|
"ref": "refs/tags/v22",
|
|
"checkout_sha": "16862e368d8ab812e48833b741dad720d6e2cb7f",
|
|
"message": "hi",
|
|
"user_id": 2,
|
|
"user_name": "the test",
|
|
"user_username": "test",
|
|
"user_email": "",
|
|
"user_avatar": "https://www.gravatar.com/avatar/dd46a756faad4727fb679320751f6dea?s=80&d=identicon",
|
|
"project_id": 2,
|
|
"project": {
|
|
"id": 2,
|
|
"name": "Woodpecker",
|
|
"description": "",
|
|
"web_url": "http://10.40.8.5:3200/test/woodpecker",
|
|
"avatar_url": "http://example.com/uploads/project/avatar/555/Outh-20-Logo.jpg",
|
|
"git_ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"git_http_url": "http://10.40.8.5:3200/test/woodpecker.git",
|
|
"namespace": "the test",
|
|
"visibility_level": 20,
|
|
"path_with_namespace": "test/woodpecker",
|
|
"default_branch": "develop",
|
|
"ci_config_path": null,
|
|
"homepage": "http://10.40.8.5:3200/test/woodpecker",
|
|
"url": "git@10.40.8.5:test/woodpecker.git",
|
|
"ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"http_url": "http://10.40.8.5:3200/test/woodpecker.git"
|
|
},
|
|
"commits": [
|
|
{
|
|
"id": "16862e368d8ab812e48833b741dad720d6e2cb7f",
|
|
"message": "Update main.go",
|
|
"title": "Update main.go",
|
|
"timestamp": "2021-09-27T04:46:14+00:00",
|
|
"url": "http://10.40.8.5:3200/test/woodpecker/-/commit/16862e368d8ab812e48833b741dad720d6e2cb7f",
|
|
"author": {
|
|
"name": "the test",
|
|
"email": "test@test.test"
|
|
},
|
|
"added": [
|
|
|
|
],
|
|
"modified": [
|
|
"cmd/cli/main.go"
|
|
],
|
|
"removed": [
|
|
|
|
]
|
|
}
|
|
],
|
|
"total_commits_count": 1,
|
|
"push_options": {
|
|
},
|
|
"repository": {
|
|
"name": "Woodpecker",
|
|
"url": "git@10.40.8.5:test/woodpecker.git",
|
|
"description": "",
|
|
"homepage": "http://10.40.8.5:3200/test/woodpecker",
|
|
"git_http_url": "http://10.40.8.5:3200/test/woodpecker.git",
|
|
"git_ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"visibility_level": 20
|
|
}
|
|
}`)
|
|
|
|
// ServiceHookMergeRequestBody is payload of ServiceHook: MergeRequest
|
|
var ServiceHookMergeRequestBody = []byte(`{
|
|
"object_kind": "merge_request",
|
|
"event_type": "merge_request",
|
|
"user": {
|
|
"id": 2,
|
|
"name": "the test",
|
|
"username": "test",
|
|
"avatar_url": "https://www.gravatar.com/avatar/dd46a756faad4727fb679320751f6dea?s=80&d=identicon",
|
|
"email": "test@test.test"
|
|
},
|
|
"project": {
|
|
"id": 2,
|
|
"name": "Woodpecker",
|
|
"description": "",
|
|
"web_url": "http://10.40.8.5:3200/test/woodpecker",
|
|
"avatar_url": null,
|
|
"git_ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"git_http_url": "http://10.40.8.5:3200/test/woodpecker.git",
|
|
"namespace": "the test",
|
|
"visibility_level": 20,
|
|
"path_with_namespace": "test/woodpecker",
|
|
"default_branch": "master",
|
|
"ci_config_path": null,
|
|
"homepage": "http://10.40.8.5:3200/test/woodpecker",
|
|
"url": "git@10.40.8.5:test/woodpecker.git",
|
|
"ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"http_url": "http://10.40.8.5:3200/test/woodpecker.git"
|
|
},
|
|
"object_attributes": {
|
|
"assignee_id": null,
|
|
"author_id": 2,
|
|
"created_at": "2021-09-27 05:00:01 UTC",
|
|
"description": "",
|
|
"head_pipeline_id": 5,
|
|
"id": 2,
|
|
"iid": 2,
|
|
"last_edited_at": null,
|
|
"last_edited_by_id": null,
|
|
"merge_commit_sha": null,
|
|
"merge_error": null,
|
|
"merge_params": {
|
|
"force_remove_source_branch": "1"
|
|
},
|
|
"merge_status": "unchecked",
|
|
"merge_user_id": null,
|
|
"merge_when_pipeline_succeeds": false,
|
|
"milestone_id": null,
|
|
"source_branch": "masterfdsafds",
|
|
"source_project_id": 2,
|
|
"state_id": 1,
|
|
"target_branch": "master",
|
|
"target_project_id": 2,
|
|
"time_estimate": 0,
|
|
"title": "Update client.go 🎉",
|
|
"updated_at": "2021-09-27 05:01:21 UTC",
|
|
"updated_by_id": null,
|
|
"url": "http://10.40.8.5:3200/test/woodpecker/-/merge_requests/2",
|
|
"source": {
|
|
"id": 2,
|
|
"name": "Woodpecker",
|
|
"description": "",
|
|
"web_url": "http://10.40.8.5:3200/test/woodpecker",
|
|
"avatar_url": "http://example.com/uploads/project/avatar/555/Outh-20-Logo.jpg",
|
|
"git_ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"git_http_url": "http://10.40.8.5:3200/test/woodpecker.git",
|
|
"namespace": "the test",
|
|
"visibility_level": 20,
|
|
"path_with_namespace": "test/woodpecker",
|
|
"default_branch": "develop",
|
|
"ci_config_path": null,
|
|
"homepage": "http://10.40.8.5:3200/test/woodpecker",
|
|
"url": "git@10.40.8.5:test/woodpecker.git",
|
|
"ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"http_url": "http://10.40.8.5:3200/test/woodpecker.git"
|
|
},
|
|
"target": {
|
|
"id": 2,
|
|
"name": "Woodpecker",
|
|
"description": "",
|
|
"web_url": "http://10.40.8.5:3200/test/woodpecker",
|
|
"avatar_url": "http://example.com/uploads/project/avatar/555/Outh-20-Logo.jpg",
|
|
"git_ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"git_http_url": "http://10.40.8.5:3200/test/woodpecker.git",
|
|
"namespace": "the test",
|
|
"visibility_level": 20,
|
|
"path_with_namespace": "test/woodpecker",
|
|
"default_branch": "develop",
|
|
"ci_config_path": null,
|
|
"homepage": "http://10.40.8.5:3200/test/woodpecker",
|
|
"url": "git@10.40.8.5:test/woodpecker.git",
|
|
"ssh_url": "git@10.40.8.5:test/woodpecker.git",
|
|
"http_url": "http://10.40.8.5:3200/test/woodpecker.git"
|
|
},
|
|
"last_commit": {
|
|
"id": "0ab96a10266b95b4b533dcfd98738015fbe70889",
|
|
"message": "Update state.go",
|
|
"title": "Update state.go",
|
|
"timestamp": "2021-09-27T05:01:20+00:00",
|
|
"url": "http://10.40.8.5:3200/test/woodpecker/-/commit/0ab96a10266b95b4b533dcfd98738015fbe70889",
|
|
"author": {
|
|
"name": "the test",
|
|
"email": "test@test.test"
|
|
}
|
|
},
|
|
"work_in_progress": false,
|
|
"total_time_spent": 0,
|
|
"time_change": 0,
|
|
"human_total_time_spent": null,
|
|
"human_time_change": null,
|
|
"human_time_estimate": null,
|
|
"assignee_ids": [
|
|
|
|
],
|
|
"state": "opened",
|
|
"action": "update",
|
|
"oldrev": "6ef047571374c96a2bf13c361efd1fb008b0063e"
|
|
},
|
|
"labels": [
|
|
|
|
],
|
|
"changes": {
|
|
"updated_at": {
|
|
"previous": "2021-09-27 05:00:01 UTC",
|
|
"current": "2021-09-27 05:01:21 UTC"
|
|
}
|
|
},
|
|
"repository": {
|
|
"name": "Woodpecker",
|
|
"url": "git@10.40.8.5:test/woodpecker.git",
|
|
"description": "",
|
|
"homepage": "http://10.40.8.5:3200/test/woodpecker"
|
|
}
|
|
}`)
|