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-16 14:21:32 +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-16 14:21:32 +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-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
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-12-16 14:21:32 +01:00
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2020-06-27 19:04:01 +02:00
|
|
|
"time"
|
2018-12-16 14:21:32 +01:00
|
|
|
|
2020-10-11 22:10:03 +02:00
|
|
|
"code.vikunja.io/api/pkg/db"
|
|
|
|
"code.vikunja.io/api/pkg/user"
|
|
|
|
|
2018-12-16 14:21:32 +01:00
|
|
|
"code.vikunja.io/web"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestTeamNamespace_CanDoSomething(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
ID int64
|
|
|
|
TeamID int64
|
|
|
|
NamespaceID int64
|
2019-01-21 23:08:04 +01:00
|
|
|
Right Right
|
2020-06-27 19:04:01 +02:00
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
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
|
|
|
|
want map[string]bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "CanDoSomething Normally",
|
|
|
|
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: map[string]bool{"CanCreate": true, "CanDelete": true, "CanUpdate": true},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "CanDoSomething for a nonexistant namespace",
|
|
|
|
fields: fields{
|
|
|
|
NamespaceID: 300,
|
|
|
|
},
|
|
|
|
args: args{
|
2020-01-26 18:08:06 +01:00
|
|
|
a: &user.User{ID: 3},
|
2018-12-16 14:21:32 +01:00
|
|
|
},
|
|
|
|
want: map[string]bool{"CanCreate": false, "CanDelete": false, "CanUpdate": false},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "CanDoSomething where the user does not have the rights",
|
|
|
|
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
|
|
|
},
|
|
|
|
want: map[string]bool{"CanCreate": false, "CanDelete": false, "CanUpdate": false},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
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
|
|
|
tn := &TeamNamespace{
|
|
|
|
ID: tt.fields.ID,
|
|
|
|
TeamID: tt.fields.TeamID,
|
|
|
|
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-03-24 13:35:50 +01:00
|
|
|
if got, _ := tn.CanCreate(tt.args.a); got != tt.want["CanCreate"] {
|
2018-12-16 14:21:32 +01:00
|
|
|
t.Errorf("TeamNamespace.CanCreate() = %v, want %v", got, tt.want["CanCreate"])
|
|
|
|
}
|
2019-03-24 13:35:50 +01:00
|
|
|
if got, _ := tn.CanDelete(tt.args.a); got != tt.want["CanDelete"] {
|
2018-12-16 14:21:32 +01:00
|
|
|
t.Errorf("TeamNamespace.CanDelete() = %v, want %v", got, tt.want["CanDelete"])
|
|
|
|
}
|
2019-03-24 13:35:50 +01:00
|
|
|
if got, _ := tn.CanUpdate(tt.args.a); got != tt.want["CanUpdate"] {
|
2018-12-16 14:21:32 +01:00
|
|
|
t.Errorf("TeamNamespace.CanUpdate() = %v, want %v", got, tt.want["CanUpdate"])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|