2018-05-16 22:05:00 -06:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2017-12-02 10:11:22 -07:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2018-05-16 22:05:00 -06:00
|
|
|
package setting
|
2017-12-02 10:11:22 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/test"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestChangePassword(t *testing.T) {
|
|
|
|
oldPassword := "password"
|
|
|
|
setting.MinPasswordLength = 6
|
2019-10-15 21:09:58 -06:00
|
|
|
var pcALL = []string{"lower", "upper", "digit", "spec"}
|
|
|
|
var pcLUN = []string{"lower", "upper", "digit"}
|
|
|
|
var pcLU = []string{"lower", "upper"}
|
2017-12-02 10:11:22 -07:00
|
|
|
|
|
|
|
for _, req := range []struct {
|
2019-10-14 09:24:26 -06:00
|
|
|
OldPassword string
|
|
|
|
NewPassword string
|
|
|
|
Retype string
|
|
|
|
Message string
|
2019-10-15 21:09:58 -06:00
|
|
|
PasswordComplexity []string
|
2017-12-02 10:11:22 -07:00
|
|
|
}{
|
|
|
|
{
|
2019-10-14 09:24:26 -06:00
|
|
|
OldPassword: oldPassword,
|
|
|
|
NewPassword: "Qwerty123456-",
|
|
|
|
Retype: "Qwerty123456-",
|
|
|
|
Message: "",
|
2019-10-15 21:09:58 -06:00
|
|
|
PasswordComplexity: pcALL,
|
2019-10-14 09:24:26 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
OldPassword: oldPassword,
|
|
|
|
NewPassword: "12345",
|
|
|
|
Retype: "12345",
|
|
|
|
Message: "auth.password_too_short",
|
2019-10-15 21:09:58 -06:00
|
|
|
PasswordComplexity: pcALL,
|
2019-10-14 09:24:26 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
OldPassword: "12334",
|
|
|
|
NewPassword: "123456",
|
|
|
|
Retype: "123456",
|
|
|
|
Message: "settings.password_incorrect",
|
2019-10-15 21:09:58 -06:00
|
|
|
PasswordComplexity: pcALL,
|
2019-10-14 09:24:26 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
OldPassword: oldPassword,
|
|
|
|
NewPassword: "123456",
|
|
|
|
Retype: "12345",
|
|
|
|
Message: "form.password_not_match",
|
2019-10-15 21:09:58 -06:00
|
|
|
PasswordComplexity: pcALL,
|
2017-12-02 10:11:22 -07:00
|
|
|
},
|
|
|
|
{
|
2019-10-14 09:24:26 -06:00
|
|
|
OldPassword: oldPassword,
|
|
|
|
NewPassword: "Qwerty",
|
|
|
|
Retype: "Qwerty",
|
2019-10-15 21:09:58 -06:00
|
|
|
Message: "form.password_complexity",
|
|
|
|
PasswordComplexity: pcALL,
|
2017-12-02 10:11:22 -07:00
|
|
|
},
|
|
|
|
{
|
2019-10-14 09:24:26 -06:00
|
|
|
OldPassword: oldPassword,
|
|
|
|
NewPassword: "Qwerty",
|
|
|
|
Retype: "Qwerty",
|
2019-10-15 21:09:58 -06:00
|
|
|
Message: "form.password_complexity",
|
2019-10-14 09:24:26 -06:00
|
|
|
PasswordComplexity: pcLUN,
|
2017-12-02 10:11:22 -07:00
|
|
|
},
|
|
|
|
{
|
2019-10-14 09:24:26 -06:00
|
|
|
OldPassword: oldPassword,
|
|
|
|
NewPassword: "QWERTY",
|
|
|
|
Retype: "QWERTY",
|
2019-10-15 21:09:58 -06:00
|
|
|
Message: "form.password_complexity",
|
2019-10-14 09:24:26 -06:00
|
|
|
PasswordComplexity: pcLU,
|
2017-12-02 10:11:22 -07:00
|
|
|
},
|
|
|
|
} {
|
|
|
|
models.PrepareTestEnv(t)
|
|
|
|
ctx := test.MockContext(t, "user/settings/security")
|
|
|
|
test.LoadUser(t, ctx, 2)
|
|
|
|
test.LoadRepo(t, ctx, 1)
|
|
|
|
|
2018-05-16 22:05:00 -06:00
|
|
|
AccountPost(ctx, auth.ChangePasswordForm{
|
2017-12-02 10:11:22 -07:00
|
|
|
OldPassword: req.OldPassword,
|
|
|
|
Password: req.NewPassword,
|
|
|
|
Retype: req.Retype,
|
|
|
|
})
|
|
|
|
|
2019-11-19 15:44:58 -07:00
|
|
|
assert.Contains(t, ctx.Flash.ErrorMsg, req.Message)
|
2017-12-02 10:11:22 -07:00
|
|
|
assert.EqualValues(t, http.StatusFound, ctx.Resp.Status())
|
|
|
|
}
|
|
|
|
}
|