699d3d6060
Increase golangci timeout Fix installing golangci-lint in ci Remove mage targets replaced by golangci Run golint in ci Add goheader linter Enable & fix more linters Fix lint issues Add mage target to automagically fix issues found by golangci golangci-lint run --fix Add golangci config Add golangci mage target Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/api/pulls/676 Co-Authored-By: konrad <konrad@kola-entertainments.de> Co-Committed-By: konrad <konrad@kola-entertainments.de>
101 lines
3.1 KiB
Go
101 lines
3.1 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 (
|
|
"testing"
|
|
|
|
"code.vikunja.io/api/pkg/db"
|
|
"code.vikunja.io/api/pkg/user"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestBucket_ReadAll(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
|
|
testuser := &user.User{ID: 1}
|
|
b := &Bucket{ListID: 1}
|
|
bucketsInterface, _, _, err := b.ReadAll(testuser, "", 0, 0)
|
|
assert.NoError(t, err)
|
|
|
|
buckets, is := bucketsInterface.([]*Bucket)
|
|
assert.True(t, is)
|
|
|
|
// Assert that we have a user for each bucket
|
|
assert.Equal(t, testuser.ID, buckets[0].CreatedBy.ID)
|
|
assert.Equal(t, testuser.ID, buckets[1].CreatedBy.ID)
|
|
assert.Equal(t, testuser.ID, buckets[2].CreatedBy.ID)
|
|
|
|
// Assert our three test buckets
|
|
assert.Len(t, buckets, 3)
|
|
|
|
// Assert all tasks are in the right bucket
|
|
assert.Len(t, buckets[0].Tasks, 12)
|
|
assert.Len(t, buckets[1].Tasks, 3)
|
|
assert.Len(t, buckets[2].Tasks, 3)
|
|
|
|
// Assert we have bucket 0, 1, 2, 3 but not 4 (that belongs to a different list)
|
|
assert.Equal(t, int64(1), buckets[0].ID)
|
|
assert.Equal(t, int64(2), buckets[1].ID)
|
|
assert.Equal(t, int64(3), buckets[2].ID)
|
|
|
|
// Kinda assert all tasks are in the right buckets
|
|
assert.Equal(t, int64(1), buckets[0].Tasks[0].BucketID)
|
|
assert.Equal(t, int64(1), buckets[0].Tasks[1].BucketID)
|
|
assert.Equal(t, int64(2), buckets[1].Tasks[0].BucketID)
|
|
assert.Equal(t, int64(2), buckets[1].Tasks[1].BucketID)
|
|
assert.Equal(t, int64(2), buckets[1].Tasks[2].BucketID)
|
|
assert.Equal(t, int64(3), buckets[2].Tasks[0].BucketID)
|
|
assert.Equal(t, int64(3), buckets[2].Tasks[1].BucketID)
|
|
assert.Equal(t, int64(3), buckets[2].Tasks[2].BucketID)
|
|
}
|
|
|
|
func TestBucket_Delete(t *testing.T) {
|
|
t.Run("normal", func(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
b := &Bucket{
|
|
ID: 2, // The second bucket only has 3 tasks
|
|
ListID: 1,
|
|
}
|
|
err := b.Delete()
|
|
assert.NoError(t, err)
|
|
|
|
// Assert all tasks have been moved to bucket 1 as that one is the first
|
|
tasks := []*Task{}
|
|
err = x.Where("bucket_id = ?", 1).Find(&tasks)
|
|
assert.NoError(t, err)
|
|
assert.Len(t, tasks, 15)
|
|
db.AssertMissing(t, "buckets", map[string]interface{}{
|
|
"id": 2,
|
|
"list_id": 1,
|
|
})
|
|
})
|
|
t.Run("last bucket in list", func(t *testing.T) {
|
|
db.LoadAndAssertFixtures(t)
|
|
b := &Bucket{
|
|
ID: 34,
|
|
ListID: 18,
|
|
}
|
|
err := b.Delete()
|
|
assert.Error(t, err)
|
|
assert.True(t, IsErrCannotRemoveLastBucket(err))
|
|
db.AssertExists(t, "buckets", map[string]interface{}{
|
|
"id": 34,
|
|
"list_id": 18,
|
|
}, false)
|
|
})
|
|
}
|