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.
|
2018-12-31 02:18:41 +01:00
|
|
|
//
|
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.
|
2018-12-31 02:18:41 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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.
|
2018-12-31 02:18:41 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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-31 02:18:41 +01:00
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"runtime"
|
|
|
|
"testing"
|
2020-06-27 19:04:01 +02:00
|
|
|
"time"
|
2018-12-31 02:18:41 +01:00
|
|
|
|
2020-10-11 22:10:03 +02:00
|
|
|
"code.vikunja.io/api/pkg/db"
|
|
|
|
"code.vikunja.io/api/pkg/user"
|
|
|
|
"gopkg.in/d4l3k/messagediff.v1"
|
|
|
|
|
2018-12-31 02:18:41 +01:00
|
|
|
"code.vikunja.io/web"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestLabel_ReadAll(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
|
|
|
Title string
|
|
|
|
Description string
|
|
|
|
HexColor string
|
|
|
|
CreatedByID int64
|
2020-01-26 18:08:06 +01:00
|
|
|
CreatedBy *user.User
|
2020-06-27 19:04:01 +02:00
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
2018-12-31 02:18:41 +01:00
|
|
|
CRUDable web.CRUDable
|
|
|
|
Rights web.Rights
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
search string
|
|
|
|
a web.Auth
|
|
|
|
page int
|
|
|
|
}
|
2020-01-26 18:08:06 +01:00
|
|
|
user1 := &user.User{
|
2020-03-01 21:30:37 +01:00
|
|
|
ID: 1,
|
|
|
|
Username: "user1",
|
|
|
|
Password: "$2a$14$dcadBoMBL9jQoOcZK8Fju.cy0Ptx2oZECkKLnaa8ekRoTFe1w7To.",
|
|
|
|
IsActive: true,
|
2020-11-21 17:38:58 +01:00
|
|
|
Issuer: "local",
|
2020-06-27 19:04:01 +02:00
|
|
|
Created: testCreatedTime,
|
|
|
|
Updated: testUpdatedTime,
|
2018-12-31 02:18:41 +01:00
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
wantLs interface{}
|
|
|
|
wantErr bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "normal",
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
wantLs: []*labelWithTaskID{
|
|
|
|
{
|
|
|
|
Label: Label{
|
|
|
|
ID: 1,
|
|
|
|
Title: "Label #1",
|
|
|
|
CreatedByID: 1,
|
|
|
|
CreatedBy: user1,
|
2020-06-27 19:04:01 +02:00
|
|
|
Created: testCreatedTime,
|
|
|
|
Updated: testUpdatedTime,
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Label: Label{
|
|
|
|
ID: 2,
|
|
|
|
Title: "Label #2",
|
|
|
|
CreatedByID: 1,
|
|
|
|
CreatedBy: user1,
|
2020-06-27 19:04:01 +02:00
|
|
|
Created: testCreatedTime,
|
|
|
|
Updated: testUpdatedTime,
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Label: Label{
|
|
|
|
ID: 4,
|
|
|
|
Title: "Label #4 - visible via other task",
|
2020-06-27 19:04:01 +02:00
|
|
|
Created: testCreatedTime,
|
|
|
|
Updated: testUpdatedTime,
|
2018-12-31 02:18:41 +01:00
|
|
|
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.",
|
2020-11-21 17:38:58 +01:00
|
|
|
Issuer: "local",
|
2020-06-27 19:04:01 +02:00
|
|
|
Created: testCreatedTime,
|
|
|
|
Updated: testUpdatedTime,
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2019-06-28 10:21:48 +02:00
|
|
|
name: "invalid user",
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: -1},
|
2019-06-28 10:21:48 +02:00
|
|
|
},
|
2018-12-31 02:18:41 +01:00
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
l := &Label{
|
|
|
|
ID: tt.fields.ID,
|
|
|
|
Title: tt.fields.Title,
|
|
|
|
Description: tt.fields.Description,
|
|
|
|
HexColor: tt.fields.HexColor,
|
|
|
|
CreatedByID: tt.fields.CreatedByID,
|
|
|
|
CreatedBy: tt.fields.CreatedBy,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
Updated: tt.fields.Updated,
|
|
|
|
CRUDable: tt.fields.CRUDable,
|
|
|
|
Rights: tt.fields.Rights,
|
|
|
|
}
|
2020-02-14 17:34:25 +01:00
|
|
|
db.LoadAndAssertFixtures(t)
|
2019-10-23 23:11:40 +02:00
|
|
|
gotLs, _, _, 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("Label.ReadAll() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
return
|
|
|
|
}
|
2019-04-21 20:18:17 +02:00
|
|
|
if diff, equal := messagediff.PrettyDiff(gotLs, tt.wantLs); !equal {
|
|
|
|
t.Errorf("Label.ReadAll() = %v, want %v, diff: %v", gotLs, tt.wantLs, diff)
|
2018-12-31 02:18:41 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLabel_ReadOne(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
|
|
|
Title string
|
|
|
|
Description string
|
|
|
|
HexColor string
|
|
|
|
CreatedByID int64
|
2020-01-26 18:08:06 +01:00
|
|
|
CreatedBy *user.User
|
2020-06-27 19:04:01 +02:00
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
2018-12-31 02:18:41 +01:00
|
|
|
CRUDable web.CRUDable
|
|
|
|
Rights web.Rights
|
|
|
|
}
|
2020-01-26 18:08:06 +01:00
|
|
|
user1 := &user.User{
|
2020-03-01 21:30:37 +01:00
|
|
|
ID: 1,
|
|
|
|
Username: "user1",
|
|
|
|
Password: "$2a$14$dcadBoMBL9jQoOcZK8Fju.cy0Ptx2oZECkKLnaa8ekRoTFe1w7To.",
|
|
|
|
IsActive: true,
|
2020-11-21 17:38:58 +01:00
|
|
|
Issuer: "local",
|
2020-06-27 19:04:01 +02:00
|
|
|
Created: testCreatedTime,
|
|
|
|
Updated: testUpdatedTime,
|
2018-12-31 02:18:41 +01:00
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
want *Label
|
|
|
|
wantErr bool
|
|
|
|
errType func(error) bool
|
|
|
|
auth web.Auth
|
|
|
|
wantForbidden bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Get label #1",
|
|
|
|
fields: fields{
|
|
|
|
ID: 1,
|
|
|
|
},
|
|
|
|
want: &Label{
|
|
|
|
ID: 1,
|
|
|
|
Title: "Label #1",
|
|
|
|
CreatedByID: 1,
|
|
|
|
CreatedBy: user1,
|
2020-06-27 19:04:01 +02:00
|
|
|
Created: testCreatedTime,
|
|
|
|
Updated: testUpdatedTime,
|
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: "Get nonexistant label",
|
|
|
|
fields: fields{
|
|
|
|
ID: 9999,
|
|
|
|
},
|
|
|
|
wantErr: true,
|
|
|
|
errType: IsErrLabelDoesNotExist,
|
|
|
|
wantForbidden: true,
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no rights",
|
|
|
|
fields: fields{
|
|
|
|
ID: 3,
|
|
|
|
},
|
|
|
|
wantForbidden: true,
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Get label #4 - other user",
|
|
|
|
fields: fields{
|
|
|
|
ID: 4,
|
|
|
|
},
|
|
|
|
want: &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.",
|
2020-11-21 17:38:58 +01:00
|
|
|
Issuer: "local",
|
2020-06-27 19:04:01 +02:00
|
|
|
Created: testCreatedTime,
|
|
|
|
Updated: testUpdatedTime,
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
2020-06-27 19:04:01 +02:00
|
|
|
Created: testCreatedTime,
|
|
|
|
Updated: testUpdatedTime,
|
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
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
l := &Label{
|
|
|
|
ID: tt.fields.ID,
|
|
|
|
Title: tt.fields.Title,
|
|
|
|
Description: tt.fields.Description,
|
|
|
|
HexColor: tt.fields.HexColor,
|
|
|
|
CreatedByID: tt.fields.CreatedByID,
|
|
|
|
CreatedBy: tt.fields.CreatedBy,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
Updated: tt.fields.Updated,
|
|
|
|
CRUDable: tt.fields.CRUDable,
|
|
|
|
Rights: tt.fields.Rights,
|
|
|
|
}
|
|
|
|
|
2020-08-10 14:11:43 +02:00
|
|
|
allowed, _, _ := l.CanRead(tt.auth)
|
2019-03-24 13:35:50 +01:00
|
|
|
if !allowed && !tt.wantForbidden {
|
2018-12-31 02:18:41 +01:00
|
|
|
t.Errorf("Label.CanRead() forbidden, want %v", tt.wantForbidden)
|
|
|
|
}
|
|
|
|
err := l.ReadOne()
|
|
|
|
if (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("Label.ReadOne() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
}
|
|
|
|
if (err != nil) && tt.wantErr && !tt.errType(err) {
|
|
|
|
t.Errorf("Label.ReadOne() 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(l, tt.want); !equal && !tt.wantErr && !tt.wantForbidden {
|
|
|
|
t.Errorf("Label.ReadAll() = %v, want %v, diff: %v", l, tt.want, diff)
|
2018-12-31 02:18:41 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLabel_Create(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
|
|
|
Title string
|
|
|
|
Description string
|
|
|
|
HexColor string
|
|
|
|
CreatedByID int64
|
2020-01-26 18:08:06 +01:00
|
|
|
CreatedBy *user.User
|
2020-06-27 19:04:01 +02:00
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
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
|
|
|
|
wantForbidden bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "normal",
|
|
|
|
fields: fields{
|
|
|
|
Title: "Test #1",
|
|
|
|
Description: "Lorem Ipsum",
|
|
|
|
HexColor: "ffccff",
|
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
l := &Label{
|
|
|
|
ID: tt.fields.ID,
|
|
|
|
Title: tt.fields.Title,
|
|
|
|
Description: tt.fields.Description,
|
|
|
|
HexColor: tt.fields.HexColor,
|
|
|
|
CreatedByID: tt.fields.CreatedByID,
|
|
|
|
CreatedBy: tt.fields.CreatedBy,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
Updated: tt.fields.Updated,
|
|
|
|
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("Label.CanCreate() forbidden, want %v", tt.wantForbidden)
|
|
|
|
}
|
|
|
|
if err := l.Create(tt.args.a); (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("Label.Create() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
}
|
2020-09-27 17:45:17 +02:00
|
|
|
if !tt.wantErr {
|
|
|
|
db.AssertExists(t, "labels", map[string]interface{}{
|
|
|
|
"id": l.ID,
|
|
|
|
"title": l.Title,
|
|
|
|
"description": l.Description,
|
|
|
|
"hex_color": l.HexColor,
|
|
|
|
}, false)
|
|
|
|
}
|
2018-12-31 02:18:41 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLabel_Update(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
|
|
|
Title string
|
|
|
|
Description string
|
|
|
|
HexColor string
|
|
|
|
CreatedByID int64
|
2020-01-26 18:08:06 +01:00
|
|
|
CreatedBy *user.User
|
2020-06-27 19:04:01 +02:00
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
2018-12-31 02:18:41 +01:00
|
|
|
CRUDable web.CRUDable
|
|
|
|
Rights web.Rights
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
wantErr bool
|
|
|
|
auth web.Auth
|
|
|
|
wantForbidden bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "normal",
|
|
|
|
fields: fields{
|
|
|
|
ID: 1,
|
|
|
|
Title: "new and better",
|
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nonexisting",
|
|
|
|
fields: fields{
|
|
|
|
ID: 99999,
|
|
|
|
Title: "new and better",
|
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
wantForbidden: true,
|
|
|
|
wantErr: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no rights",
|
|
|
|
fields: fields{
|
|
|
|
ID: 3,
|
|
|
|
Title: "new and better",
|
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
wantForbidden: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no rights other creator but access",
|
|
|
|
fields: fields{
|
|
|
|
ID: 4,
|
|
|
|
Title: "new and better",
|
|
|
|
},
|
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) {
|
|
|
|
l := &Label{
|
|
|
|
ID: tt.fields.ID,
|
|
|
|
Title: tt.fields.Title,
|
|
|
|
Description: tt.fields.Description,
|
|
|
|
HexColor: tt.fields.HexColor,
|
|
|
|
CreatedByID: tt.fields.CreatedByID,
|
|
|
|
CreatedBy: tt.fields.CreatedBy,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
Updated: tt.fields.Updated,
|
|
|
|
CRUDable: tt.fields.CRUDable,
|
|
|
|
Rights: tt.fields.Rights,
|
|
|
|
}
|
2019-03-24 13:35:50 +01:00
|
|
|
allowed, _ := l.CanUpdate(tt.auth)
|
|
|
|
if !allowed && !tt.wantForbidden {
|
2018-12-31 02:18:41 +01:00
|
|
|
t.Errorf("Label.CanUpdate() forbidden, want %v", tt.wantForbidden)
|
|
|
|
}
|
|
|
|
if err := l.Update(); (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("Label.Update() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
}
|
2020-09-27 17:45:17 +02:00
|
|
|
if !tt.wantErr && !tt.wantForbidden {
|
|
|
|
db.AssertExists(t, "labels", map[string]interface{}{
|
|
|
|
"id": tt.fields.ID,
|
|
|
|
"title": tt.fields.Title,
|
|
|
|
}, false)
|
|
|
|
}
|
2018-12-31 02:18:41 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLabel_Delete(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
|
|
|
Title string
|
|
|
|
Description string
|
|
|
|
HexColor string
|
|
|
|
CreatedByID int64
|
2020-01-26 18:08:06 +01:00
|
|
|
CreatedBy *user.User
|
2020-06-27 19:04:01 +02:00
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
2018-12-31 02:18:41 +01:00
|
|
|
CRUDable web.CRUDable
|
|
|
|
Rights web.Rights
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
wantErr bool
|
|
|
|
auth web.Auth
|
|
|
|
wantForbidden bool
|
|
|
|
}{
|
|
|
|
|
|
|
|
{
|
|
|
|
name: "normal",
|
|
|
|
fields: fields{
|
|
|
|
ID: 1,
|
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "nonexisting",
|
|
|
|
fields: fields{
|
|
|
|
ID: 99999,
|
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
wantForbidden: true, // When the label does not exist, it is forbidden. We should fix this, but for everything.
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no rights",
|
|
|
|
fields: fields{
|
|
|
|
ID: 3,
|
|
|
|
},
|
2020-01-26 18:08:06 +01:00
|
|
|
auth: &user.User{ID: 1},
|
2018-12-31 02:18:41 +01:00
|
|
|
wantForbidden: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no rights but visible",
|
|
|
|
fields: fields{
|
|
|
|
ID: 4,
|
|
|
|
},
|
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) {
|
|
|
|
l := &Label{
|
|
|
|
ID: tt.fields.ID,
|
|
|
|
Title: tt.fields.Title,
|
|
|
|
Description: tt.fields.Description,
|
|
|
|
HexColor: tt.fields.HexColor,
|
|
|
|
CreatedByID: tt.fields.CreatedByID,
|
|
|
|
CreatedBy: tt.fields.CreatedBy,
|
|
|
|
Created: tt.fields.Created,
|
|
|
|
Updated: tt.fields.Updated,
|
|
|
|
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("Label.CanDelete() forbidden, want %v", tt.wantForbidden)
|
|
|
|
}
|
|
|
|
if err := l.Delete(); (err != nil) != tt.wantErr {
|
|
|
|
t.Errorf("Label.Delete() error = %v, wantErr %v", err, tt.wantErr)
|
|
|
|
}
|
2020-09-27 17:45:17 +02:00
|
|
|
if !tt.wantErr && !tt.wantForbidden {
|
|
|
|
db.AssertMissing(t, "labels", map[string]interface{}{
|
|
|
|
"id": l.ID,
|
|
|
|
})
|
|
|
|
}
|
2018-12-31 02:18:41 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|