2020-01-26 18:08:06 +01:00
|
|
|
// Copyright2018-2020 Vikunja and contriubtors. All rights reserved.
|
2018-12-16 14:21:32 +01:00
|
|
|
//
|
2020-01-26 18:08:06 +01:00
|
|
|
// This file is part of Vikunja.
|
|
|
|
//
|
|
|
|
// Vikunja is free software: you can redistribute it and/or modify
|
2019-12-04 20:39:56 +01:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2018-12-16 14:21:32 +01:00
|
|
|
//
|
2020-01-26 18:08:06 +01:00
|
|
|
// Vikunja is distributed in the hope that it will be useful,
|
2019-12-04 20:39:56 +01:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2018-12-16 14:21:32 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// You should have received a copy of the GNU General Public License
|
2020-01-26 18:08:06 +01:00
|
|
|
// along with Vikunja. If not, see <https://www.gnu.org/licenses/>.
|
2018-12-16 14:21:32 +01:00
|
|
|
|
2020-01-26 18:08:06 +01:00
|
|
|
package user
|
2018-12-16 14:21:32 +01:00
|
|
|
|
2020-01-26 18:08:06 +01:00
|
|
|
import (
|
|
|
|
"testing"
|
2020-10-11 22:10:03 +02:00
|
|
|
|
|
|
|
"code.vikunja.io/api/pkg/db"
|
2020-01-26 18:08:06 +01:00
|
|
|
)
|
2018-12-16 14:21:32 +01:00
|
|
|
|
|
|
|
func TestUserEmailConfirm(t *testing.T) {
|
|
|
|
type args struct {
|
|
|
|
c *EmailConfirm
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
wantErr bool
|
|
|
|
errType func(error) bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Test Empty token",
|
|
|
|
args: args{
|
|
|
|
c: &EmailConfirm{
|
|
|
|
Token: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
errType: IsErrInvalidEmailConfirmToken,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Test invalid token",
|
|
|
|
args: args{
|
|
|
|
c: &EmailConfirm{
|
|
|
|
Token: "invalid",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
errType: IsErrInvalidEmailConfirmToken,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Test valid token",
|
|
|
|
args: args{
|
|
|
|
c: &EmailConfirm{
|
|
|
|
Token: "tiepiQueed8ahc7zeeFe1eveiy4Ein8osooxegiephauph2Ael",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2020-01-26 18:08:06 +01:00
|
|
|
db.LoadAndAssertFixtures(t)
|
|
|
|
if err := ConfirmEmail(tt.args.c); (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("ConfirmEmail() error = %v, wantErr %v", err, tt.wantErr)
|
2018-12-16 14:21:32 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|