Skip to content

Commit

Permalink
Test webhook email (go-gitea#33033)
Browse files Browse the repository at this point in the history
  • Loading branch information
wxiaoguang authored Dec 29, 2024
1 parent a96776b commit 1dbf0d7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions services/webhook/webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ import (
"code.gitea.io/gitea/models/db"
repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/models/unittest"
user_model "code.gitea.io/gitea/models/user"
webhook_model "code.gitea.io/gitea/models/webhook"
"code.gitea.io/gitea/modules/setting"
api "code.gitea.io/gitea/modules/structs"
webhook_module "code.gitea.io/gitea/modules/webhook"
"code.gitea.io/gitea/services/convert"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

func TestWebhook_GetSlackHook(t *testing.T) {
Expand Down Expand Up @@ -77,3 +81,11 @@ func TestPrepareWebhooksBranchFilterNoMatch(t *testing.T) {
unittest.AssertNotExistsBean(t, hookTask)
}
}

func TestWebhookUserMail(t *testing.T) {
require.NoError(t, unittest.PrepareTestDatabase())
setting.Service.NoReplyAddress = "no-reply.com"
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
assert.Equal(t, user.GetPlaceholderEmail(), convert.ToUser(db.DefaultContext, user, nil).Email)
assert.Equal(t, user.Email, convert.ToUser(db.DefaultContext, user, user).Email)
}

0 comments on commit 1dbf0d7

Please sign in to comment.