2018-12-31 02:18:41 +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"
|
2019-04-21 20:18:17 +02:00
|
|
|
"gopkg.in/d4l3k/messagediff.v1"
|
2018-12-31 02:18:41 +01:00
|
|
|
"reflect"
|
|
|
|
"runtime"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.vikunja.io/web"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestLabelTask_ReadAll(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
|
|
|
TaskID int64
|
|
|
|
LabelID int64
|
2020-02-08 13:48:49 +01:00
|
|
|
Created timeutil.TimeStamp
|
2018-12-31 02:18:41 +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
|
|
|
|
wantLabels interface{}
|
|
|
|
wantErr bool
|
|
|
|
errType func(error) bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "normal",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 1,
|
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
wantLabels: []*labelWithTaskID{
|
|
|
|
{
|
|
|
|
TaskID: 1,
|
|
|
|
Label: Label{
|
|
|
|
ID: 4,
|
|
|
|
Title: "Label #4 - visible via other task",
|
|
|
|
CreatedByID: 2,
|
2020-01-26 18:08:06 +01:00
|
|
|
CreatedBy: &user.User{
|
2020-03-01 21:30:37 +01:00
|
|
|
ID: 2,
|
|
|
|
Username: "user2",
|
|
|
|
Password: "$2a$14$dcadBoMBL9jQoOcZK8Fju.cy0Ptx2oZECkKLnaa8ekRoTFe1w7To.",
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no right to see the task",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 14,
|
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
errType: IsErrNoRightToSeeTask,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nonexistant task",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 9999,
|
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
wantErr: true,
|
2019-08-14 22:19:04 +02:00
|
|
|
errType: IsErrTaskDoesNotExist,
|
2018-12-31 02:18:41 +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-31 02:18:41 +01:00
|
|
|
l := &LabelTask{
|
|
|
|
ID: tt.fields.ID,
|
|
|
|
TaskID: tt.fields.TaskID,
|
|
|
|
LabelID: tt.fields.LabelID,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
CRUDable: tt.fields.CRUDable,
|
|
|
|
Rights: tt.fields.Rights,
|
|
|
|
}
|
2019-10-23 23:11:40 +02:00
|
|
|
gotLabels, _, _, err := l.ReadAll(tt.args.a, tt.args.search, tt.args.page, 0)
|
2018-12-31 02:18:41 +01:00
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("LabelTask.ReadAll() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (err != nil) && tt.wantErr && !tt.errType(err) {
|
|
|
|
t.Errorf("LabelTask.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(gotLabels, tt.wantLabels); !equal {
|
|
|
|
t.Errorf("LabelTask.ReadAll() = %v, want %v, diff: %v", l, tt.wantLabels, diff)
|
2018-12-31 02:18:41 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLabelTask_Create(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
|
|
|
TaskID int64
|
|
|
|
LabelID int64
|
2020-02-08 13:48:49 +01:00
|
|
|
Created timeutil.TimeStamp
|
2018-12-31 02:18:41 +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(error) bool
|
|
|
|
wantForbidden bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "normal",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 1,
|
|
|
|
LabelID: 1,
|
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "already existing",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 1,
|
2020-01-26 18:08:06 +01:00
|
|
|
LabelID: 4,
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
errType: IsErrLabelIsAlreadyOnTask,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nonexisting label",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 1,
|
|
|
|
LabelID: 9999,
|
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
wantForbidden: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nonexisting task",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 9999,
|
|
|
|
LabelID: 1,
|
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
wantForbidden: true,
|
2019-05-22 19:48:48 +02:00
|
|
|
wantErr: true,
|
2019-08-14 22:19:04 +02:00
|
|
|
errType: IsErrTaskDoesNotExist,
|
2018-12-31 02:18:41 +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-31 02:18:41 +01:00
|
|
|
l := &LabelTask{
|
|
|
|
ID: tt.fields.ID,
|
|
|
|
TaskID: tt.fields.TaskID,
|
|
|
|
LabelID: tt.fields.LabelID,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
CRUDable: tt.fields.CRUDable,
|
|
|
|
Rights: tt.fields.Rights,
|
|
|
|
}
|
2019-03-24 13:35:50 +01:00
|
|
|
allowed, _ := l.CanCreate(tt.args.a)
|
|
|
|
if !allowed && !tt.wantForbidden {
|
2018-12-31 02:18:41 +01:00
|
|
|
t.Errorf("LabelTask.CanCreate() forbidden, want %v", tt.wantForbidden)
|
|
|
|
}
|
|
|
|
err := l.Create(tt.args.a)
|
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("LabelTask.Create() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
}
|
|
|
|
if (err != nil) && tt.wantErr && !tt.errType(err) {
|
|
|
|
t.Errorf("LabelTask.Create() Wrong error type! Error = %v, want = %v", err, runtime.FuncForPC(reflect.ValueOf(tt.errType).Pointer()).Name())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLabelTask_Delete(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
|
|
|
TaskID int64
|
|
|
|
LabelID int64
|
2020-02-08 13:48:49 +01:00
|
|
|
Created timeutil.TimeStamp
|
2018-12-31 02:18:41 +01:00
|
|
|
CRUDable web.CRUDable
|
|
|
|
Rights web.Rights
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
wantErr bool
|
|
|
|
errType func(error) bool
|
|
|
|
auth web.Auth
|
|
|
|
wantForbidden bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "normal",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 1,
|
2020-01-26 18:08:06 +01:00
|
|
|
LabelID: 4,
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "delete nonexistant",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 1,
|
|
|
|
LabelID: 1,
|
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
wantForbidden: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nonexisting label",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 1,
|
|
|
|
LabelID: 9999,
|
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
wantForbidden: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nonexisting task",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 9999,
|
|
|
|
LabelID: 1,
|
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
wantForbidden: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "existing, but forbidden task",
|
|
|
|
fields: fields{
|
|
|
|
TaskID: 14,
|
|
|
|
LabelID: 1,
|
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
wantForbidden: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
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-31 02:18:41 +01:00
|
|
|
l := &LabelTask{
|
|
|
|
ID: tt.fields.ID,
|
|
|
|
TaskID: tt.fields.TaskID,
|
|
|
|
LabelID: tt.fields.LabelID,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
CRUDable: tt.fields.CRUDable,
|
|
|
|
Rights: tt.fields.Rights,
|
|
|
|
}
|
2019-03-24 13:35:50 +01:00
|
|
|
allowed, _ := l.CanDelete(tt.auth)
|
|
|
|
if !allowed && !tt.wantForbidden {
|
2018-12-31 02:18:41 +01:00
|
|
|
t.Errorf("LabelTask.CanDelete() forbidden, want %v", tt.wantForbidden)
|
|
|
|
}
|
|
|
|
err := l.Delete()
|
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("LabelTask.Delete() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
}
|
|
|
|
if (err != nil) && tt.wantErr && !tt.errType(err) {
|
|
|
|
t.Errorf("LabelTask.Delete() Wrong error type! Error = %v, want = %v", err, runtime.FuncForPC(reflect.ValueOf(tt.errType).Pointer()).Name())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|