|
|
|
@ -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) { |
|
|
|
@ -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) |
|
|
|
|
} |
|
|
|
|