db2d868eed
Remove traces of unix timestamp Revert renaming reminder table column Fix staticcheck Remove unused table call Add migration for renaming reminders table Fix issues with using TimeStamp Fix lint Updated all created / updated fields to use TimeStamps Add comments Convert all created / updated fields to datetime Add time util package Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/api/pulls/130
104 lines
2.9 KiB
Go
104 lines
2.9 KiB
Go
// Vikunja is a to-do list application to facilitate your life.
|
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
|
//
|
|
// 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/>.
|
|
|
|
package models
|
|
|
|
import (
|
|
"code.vikunja.io/api/pkg/db"
|
|
"code.vikunja.io/api/pkg/timeutil"
|
|
"code.vikunja.io/api/pkg/user"
|
|
"testing"
|
|
|
|
"code.vikunja.io/web"
|
|
)
|
|
|
|
func TestNamespaceUser_CanDoSomething(t *testing.T) {
|
|
type fields struct {
|
|
ID int64
|
|
UserID int64
|
|
NamespaceID int64
|
|
Right Right
|
|
Created timeutil.TimeStamp
|
|
Updated timeutil.TimeStamp
|
|
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{
|
|
a: &user.User{ID: 3},
|
|
},
|
|
want: map[string]bool{"CanCreate": true, "CanDelete": true, "CanUpdate": true},
|
|
},
|
|
{
|
|
name: "CanDoSomething for a nonexistant namespace",
|
|
fields: fields{
|
|
NamespaceID: 300,
|
|
},
|
|
args: args{
|
|
a: &user.User{ID: 3},
|
|
},
|
|
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{
|
|
a: &user.User{ID: 4},
|
|
},
|
|
want: map[string]bool{"CanCreate": false, "CanDelete": false, "CanUpdate": false},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
|
|
nu := &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,
|
|
}
|
|
if got, _ := nu.CanCreate(tt.args.a); got != tt.want["CanCreate"] {
|
|
t.Errorf("NamespaceUser.CanCreate() = %v, want %v", got, tt.want["CanCreate"])
|
|
}
|
|
if got, _ := nu.CanDelete(tt.args.a); got != tt.want["CanDelete"] {
|
|
t.Errorf("NamespaceUser.CanDelete() = %v, want %v", got, tt.want["CanDelete"])
|
|
}
|
|
if got, _ := nu.CanUpdate(tt.args.a); got != tt.want["CanUpdate"] {
|
|
t.Errorf("NamespaceUser.CanUpdate() = %v, want %v", got, tt.want["CanUpdate"])
|
|
}
|
|
})
|
|
}
|
|
}
|