2020-02-07 17:27:45 +01:00
|
|
|
// Vikunja is a to-do list application to facilitate your life.
|
2020-01-09 18:33:22 +01:00
|
|
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
2019-12-04 20:39:56 +01:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-12-16 14:21:32 +01:00
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2020-01-26 18:08:06 +01:00
|
|
|
"code.vikunja.io/api/pkg/db"
|
2020-02-08 13:48:49 +01:00
|
|
|
"code.vikunja.io/api/pkg/timeutil"
|
2020-01-26 18:08:06 +01:00
|
|
|
"code.vikunja.io/api/pkg/user"
|
2018-12-16 14:21:32 +01:00
|
|
|
"code.vikunja.io/web"
|
2019-04-21 20:18:17 +02:00
|
|
|
"gopkg.in/d4l3k/messagediff.v1"
|
2018-12-16 14:21:32 +01:00
|
|
|
"reflect"
|
|
|
|
"runtime"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestNamespaceUser_Create(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
2019-05-25 11:47:16 +02:00
|
|
|
Username string
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID int64
|
2019-01-21 23:08:04 +01:00
|
|
|
Right Right
|
2020-02-08 13:48:49 +01:00
|
|
|
Created timeutil.TimeStamp
|
|
|
|
Updated timeutil.TimeStamp
|
2018-12-16 14:21:32 +01:00
|
|
|
CRUDable web.CRUDable
|
|
|
|
Rights web.Rights
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
a web.Auth
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
wantErr bool
|
|
|
|
errType func(err error) bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "NamespaceUsers Create normally",
|
|
|
|
fields: fields{
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: "user1",
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "NamespaceUsers Create for duplicate",
|
|
|
|
fields: fields{
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: "user1",
|
2020-01-26 18:08:06 +01:00
|
|
|
NamespaceID: 3,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
errType: IsErrUserAlreadyHasNamespaceAccess,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "NamespaceUsers Create with invalid right",
|
|
|
|
fields: fields{
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: "user1",
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: 2,
|
|
|
|
Right: 500,
|
|
|
|
},
|
|
|
|
wantErr: true,
|
2019-01-21 23:08:04 +01:00
|
|
|
errType: IsErrInvalidRight,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "NamespaceUsers Create with inexisting list",
|
|
|
|
fields: fields{
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: "user1",
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: 2000,
|
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
errType: IsErrNamespaceDoesNotExist,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "NamespaceUsers Create with inexisting user",
|
|
|
|
fields: fields{
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: "user500",
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: 2,
|
|
|
|
},
|
|
|
|
wantErr: true,
|
2020-01-26 18:08:06 +01:00
|
|
|
errType: user.IsErrUserDoesNotExist,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "NamespaceUsers Create with the owner as shared user",
|
|
|
|
fields: fields{
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: "user1",
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: 1,
|
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
errType: IsErrUserAlreadyHasNamespaceAccess,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2020-01-26 18:08:06 +01:00
|
|
|
db.LoadAndAssertFixtures(t)
|
|
|
|
|
2018-12-16 14:21:32 +01:00
|
|
|
un := &NamespaceUser{
|
|
|
|
ID: tt.fields.ID,
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: tt.fields.Username,
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: tt.fields.NamespaceID,
|
|
|
|
Right: tt.fields.Right,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
Updated: tt.fields.Updated,
|
|
|
|
CRUDable: tt.fields.CRUDable,
|
|
|
|
Rights: tt.fields.Rights,
|
|
|
|
}
|
|
|
|
err := un.Create(tt.args.a)
|
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("NamespaceUser.Create() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
}
|
|
|
|
if (err != nil) && tt.wantErr && !tt.errType(err) {
|
|
|
|
t.Errorf("NamespaceUser.Create() Wrong error type! Error = %v, want = %v", err, runtime.FuncForPC(reflect.ValueOf(tt.errType).Pointer()).Name())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNamespaceUser_ReadAll(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
|
|
|
UserID int64
|
|
|
|
NamespaceID int64
|
2019-01-21 23:08:04 +01:00
|
|
|
Right Right
|
2020-02-08 13:48:49 +01:00
|
|
|
Created timeutil.TimeStamp
|
|
|
|
Updated timeutil.TimeStamp
|
2018-12-16 14:21:32 +01:00
|
|
|
CRUDable web.CRUDable
|
|
|
|
Rights web.Rights
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
search string
|
|
|
|
a web.Auth
|
|
|
|
page int
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
want interface{}
|
|
|
|
wantErr bool
|
|
|
|
errType func(err error) bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Test readall normal",
|
|
|
|
fields: fields{
|
|
|
|
NamespaceID: 3,
|
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 3},
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
want: []*UserWithRight{
|
|
|
|
{
|
2020-01-26 18:08:06 +01:00
|
|
|
User: user.User{
|
2020-03-01 21:30:37 +01:00
|
|
|
ID: 1,
|
|
|
|
Username: "user1",
|
|
|
|
Password: "$2a$14$dcadBoMBL9jQoOcZK8Fju.cy0Ptx2oZECkKLnaa8ekRoTFe1w7To.",
|
|
|
|
IsActive: true,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
2019-01-21 23:08:04 +01:00
|
|
|
Right: RightRead,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
{
|
2020-01-26 18:08:06 +01:00
|
|
|
User: user.User{
|
2020-03-01 21:30:37 +01:00
|
|
|
ID: 2,
|
|
|
|
Username: "user2",
|
|
|
|
Password: "$2a$14$dcadBoMBL9jQoOcZK8Fju.cy0Ptx2oZECkKLnaa8ekRoTFe1w7To.",
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
2019-01-21 23:08:04 +01:00
|
|
|
Right: RightRead,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Test ReadAll by a user who does not have access to the list",
|
|
|
|
fields: fields{
|
|
|
|
NamespaceID: 3,
|
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 4},
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
errType: IsErrNeedToHaveNamespaceReadAccess,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2020-01-26 18:08:06 +01:00
|
|
|
db.LoadAndAssertFixtures(t)
|
|
|
|
|
2018-12-16 14:21:32 +01:00
|
|
|
un := &NamespaceUser{
|
|
|
|
ID: tt.fields.ID,
|
|
|
|
UserID: tt.fields.UserID,
|
|
|
|
NamespaceID: tt.fields.NamespaceID,
|
|
|
|
Right: tt.fields.Right,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
Updated: tt.fields.Updated,
|
|
|
|
CRUDable: tt.fields.CRUDable,
|
|
|
|
Rights: tt.fields.Rights,
|
|
|
|
}
|
2019-10-23 23:11:40 +02:00
|
|
|
got, _, _, err := un.ReadAll(tt.args.a, tt.args.search, tt.args.page, 50)
|
2018-12-16 14:21:32 +01:00
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("NamespaceUser.ReadAll() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (err != nil) && tt.wantErr && !tt.errType(err) {
|
|
|
|
t.Errorf("NamespaceUser.ReadAll() Wrong error type! Error = %v, want = %v", err, runtime.FuncForPC(reflect.ValueOf(tt.errType).Pointer()).Name())
|
|
|
|
}
|
2019-04-21 20:18:17 +02:00
|
|
|
if diff, equal := messagediff.PrettyDiff(got, tt.want); !equal {
|
|
|
|
t.Errorf("NamespaceUser.ReadAll() = %v, want %v, diff: %v", got, tt.want, diff)
|
2018-12-16 14:21:32 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNamespaceUser_Update(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
2019-05-25 12:16:55 +02:00
|
|
|
Username string
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID int64
|
2019-01-21 23:08:04 +01:00
|
|
|
Right Right
|
2020-02-08 13:48:49 +01:00
|
|
|
Created timeutil.TimeStamp
|
|
|
|
Updated timeutil.TimeStamp
|
2018-12-16 14:21:32 +01:00
|
|
|
CRUDable web.CRUDable
|
|
|
|
Rights web.Rights
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
wantErr bool
|
|
|
|
errType func(err error) bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Test Update Normally",
|
|
|
|
fields: fields{
|
|
|
|
NamespaceID: 3,
|
2019-05-25 12:16:55 +02:00
|
|
|
Username: "user1",
|
2019-01-21 23:08:04 +01:00
|
|
|
Right: RightAdmin,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Test Update to write",
|
|
|
|
fields: fields{
|
|
|
|
NamespaceID: 3,
|
2019-05-25 12:16:55 +02:00
|
|
|
Username: "user1",
|
2019-01-21 23:08:04 +01:00
|
|
|
Right: RightWrite,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Test Update to Read",
|
|
|
|
fields: fields{
|
|
|
|
NamespaceID: 3,
|
2019-05-25 12:16:55 +02:00
|
|
|
Username: "user1",
|
2019-01-21 23:08:04 +01:00
|
|
|
Right: RightRead,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Test Update with invalid right",
|
|
|
|
fields: fields{
|
|
|
|
NamespaceID: 3,
|
2019-05-25 12:16:55 +02:00
|
|
|
Username: "user1",
|
2018-12-16 14:21:32 +01:00
|
|
|
Right: 500,
|
|
|
|
},
|
|
|
|
wantErr: true,
|
2019-01-21 23:08:04 +01:00
|
|
|
errType: IsErrInvalidRight,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2020-01-26 18:08:06 +01:00
|
|
|
db.LoadAndAssertFixtures(t)
|
|
|
|
|
2018-12-16 14:21:32 +01:00
|
|
|
nu := &NamespaceUser{
|
|
|
|
ID: tt.fields.ID,
|
2019-05-25 12:16:55 +02:00
|
|
|
Username: tt.fields.Username,
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: tt.fields.NamespaceID,
|
|
|
|
Right: tt.fields.Right,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
Updated: tt.fields.Updated,
|
|
|
|
CRUDable: tt.fields.CRUDable,
|
|
|
|
Rights: tt.fields.Rights,
|
|
|
|
}
|
|
|
|
err := nu.Update()
|
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("NamespaceUser.Update() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
}
|
|
|
|
if (err != nil) && tt.wantErr && !tt.errType(err) {
|
|
|
|
t.Errorf("NamespaceUser.Update() Wrong error type! Error = %v, want = %v", err, runtime.FuncForPC(reflect.ValueOf(tt.errType).Pointer()).Name())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNamespaceUser_Delete(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
2019-05-25 11:47:16 +02:00
|
|
|
Username string
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID int64
|
2019-01-21 23:08:04 +01:00
|
|
|
Right Right
|
2020-02-08 13:48:49 +01:00
|
|
|
Created timeutil.TimeStamp
|
|
|
|
Updated timeutil.TimeStamp
|
2018-12-16 14:21:32 +01:00
|
|
|
CRUDable web.CRUDable
|
|
|
|
Rights web.Rights
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
wantErr bool
|
|
|
|
errType func(err error) bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Try deleting some unexistant user",
|
|
|
|
fields: fields{
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: "user1000",
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: 2,
|
|
|
|
},
|
|
|
|
wantErr: true,
|
2020-01-26 18:08:06 +01:00
|
|
|
errType: user.IsErrUserDoesNotExist,
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Try deleting a user which does not has access but exists",
|
|
|
|
fields: fields{
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: "user1",
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: 4,
|
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
errType: IsErrUserDoesNotHaveAccessToNamespace,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Try deleting normally",
|
|
|
|
fields: fields{
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: "user1",
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: 3,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2020-01-26 18:08:06 +01:00
|
|
|
db.LoadAndAssertFixtures(t)
|
|
|
|
|
2018-12-16 14:21:32 +01:00
|
|
|
nu := &NamespaceUser{
|
|
|
|
ID: tt.fields.ID,
|
2019-05-25 11:47:16 +02:00
|
|
|
Username: tt.fields.Username,
|
2018-12-16 14:21:32 +01:00
|
|
|
NamespaceID: tt.fields.NamespaceID,
|
|
|
|
Right: tt.fields.Right,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
Updated: tt.fields.Updated,
|
|
|
|
CRUDable: tt.fields.CRUDable,
|
|
|
|
Rights: tt.fields.Rights,
|
|
|
|
}
|
|
|
|
err := nu.Delete()
|
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("NamespaceUser.Delete() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
}
|
|
|
|
if (err != nil) && tt.wantErr && !tt.errType(err) {
|
|
|
|
t.Errorf("NamespaceUser.Delete() Wrong error type! Error = %v, want = %v", err, runtime.FuncForPC(reflect.ValueOf(tt.errType).Pointer()).Name())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|