mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-28 15:55:26 +00:00
60 lines
1.3 KiB
Go
60 lines
1.3 KiB
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package structs
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gitea.dev/modules/json"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestPullRequestPayloadSynchronizeBeforeAfter(t *testing.T) {
|
|
payload := &PullRequestPayload{
|
|
Action: HookIssueSynchronized,
|
|
Before: "1111111111111111111111111111111111111111",
|
|
After: "2222222222222222222222222222222222222222",
|
|
Index: 12,
|
|
}
|
|
|
|
data, err := json.Marshal(payload)
|
|
require.NoError(t, err)
|
|
|
|
assert.JSONEq(t, `{
|
|
"action": "synchronized",
|
|
"before": "1111111111111111111111111111111111111111",
|
|
"after": "2222222222222222222222222222222222222222",
|
|
"number": 12,
|
|
"commit_id": "",
|
|
"pull_request": null,
|
|
"repository": null,
|
|
"requested_reviewer": null,
|
|
"review": null,
|
|
"sender": null
|
|
}`, string(data))
|
|
}
|
|
|
|
func TestPullRequestPayloadNonSynchronizeOmitsBeforeAfter(t *testing.T) {
|
|
payload := &PullRequestPayload{
|
|
Action: HookIssueOpened,
|
|
Index: 12,
|
|
}
|
|
|
|
data, err := json.Marshal(payload)
|
|
require.NoError(t, err)
|
|
|
|
assert.JSONEq(t, `{
|
|
"action": "opened",
|
|
"number": 12,
|
|
"commit_id": "",
|
|
"pull_request": null,
|
|
"repository": null,
|
|
"requested_reviewer": null,
|
|
"review": null,
|
|
"sender": null
|
|
}`, string(data))
|
|
}
|