64d125afd9
Change method names to avoid doubling db Assert team test exists Assert team member test exists Assert task test exists Assert task relation test exists Assert task comment test exists Better tests for team namespaces Assert exists in namespace users tests Assert exists in namespace tests Assert exists in user list tests Assert exists in list tests Better team list tests Assert label tests exist in db Assert label task tests exist in db Assert label task tests exist in db Assert kanban tests exist in db Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/api/pulls/666 Co-Authored-By: konrad <konrad@kola-entertainments.de> Co-Committed-By: konrad <konrad@kola-entertainments.de>
129 lines
3.3 KiB
Go
129 lines
3.3 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/user"
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestTeamMember_Create(t *testing.T) {
|
|
|
|
doer := &user.User{
|
|
ID: 1,
|
|
}
|
|
|
|
t.Run("normal", func(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
tm := &TeamMember{
|
|
TeamID: 1,
|
|
Username: "user3",
|
|
}
|
|
err := tm.Create(doer)
|
|
assert.NoError(t, err)
|
|
db.AssertExists(t, "team_members", map[string]interface{}{
|
|
"id": tm.ID,
|
|
"team_id": 1,
|
|
"user_id": 3,
|
|
}, false)
|
|
})
|
|
t.Run("already existing", func(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
tm := &TeamMember{
|
|
TeamID: 1,
|
|
Username: "user1",
|
|
}
|
|
err := tm.Create(doer)
|
|
assert.Error(t, err)
|
|
assert.True(t, IsErrUserIsMemberOfTeam(err))
|
|
})
|
|
t.Run("nonexisting user", func(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
tm := &TeamMember{
|
|
TeamID: 1,
|
|
Username: "nonexistinguser",
|
|
}
|
|
err := tm.Create(doer)
|
|
assert.Error(t, err)
|
|
assert.True(t, user.IsErrUserDoesNotExist(err))
|
|
})
|
|
t.Run("nonexisting team", func(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
tm := &TeamMember{
|
|
TeamID: 9999999,
|
|
Username: "user1",
|
|
}
|
|
err := tm.Create(doer)
|
|
assert.Error(t, err)
|
|
assert.True(t, IsErrTeamDoesNotExist(err))
|
|
})
|
|
}
|
|
|
|
func TestTeamMember_Delete(t *testing.T) {
|
|
t.Run("normal", func(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
tm := &TeamMember{
|
|
TeamID: 1,
|
|
Username: "user1",
|
|
}
|
|
err := tm.Delete()
|
|
assert.NoError(t, err)
|
|
db.AssertMissing(t, "team_members", map[string]interface{}{
|
|
"team_id": 1,
|
|
"user_id": 1,
|
|
})
|
|
})
|
|
}
|
|
|
|
func TestTeamMember_Update(t *testing.T) {
|
|
t.Run("normal", func(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
tm := &TeamMember{
|
|
TeamID: 1,
|
|
Username: "user1",
|
|
Admin: true,
|
|
}
|
|
err := tm.Update()
|
|
assert.NoError(t, err)
|
|
assert.False(t, tm.Admin) // Since this endpoint toggles the right, we should get a false for admin back.
|
|
db.AssertExists(t, "team_members", map[string]interface{}{
|
|
"team_id": 1,
|
|
"user_id": 1,
|
|
"admin": false,
|
|
}, false)
|
|
})
|
|
// This should have the same result as the normal run as the update function
|
|
// should ignore what was passed.
|
|
t.Run("explicitly false in payload", func(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
tm := &TeamMember{
|
|
TeamID: 1,
|
|
Username: "user1",
|
|
Admin: true,
|
|
}
|
|
err := tm.Update()
|
|
assert.NoError(t, err)
|
|
assert.False(t, tm.Admin)
|
|
db.AssertExists(t, "team_members", map[string]interface{}{
|
|
"team_id": 1,
|
|
"user_id": 1,
|
|
"admin": false,
|
|
}, false)
|
|
})
|
|
}
|