api/pkg/models/list_create_test.go

102 lines
2.7 KiB
Go
Raw Normal View History

2018-11-26 20:17:33 +00:00
// Vikunja is a todo-list application to facilitate your life.
// Copyright 2018 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/>.
2018-07-26 08:29:19 +00:00
package models
import (
"github.com/stretchr/testify/assert"
2018-07-26 08:50:03 +00:00
"testing"
2018-07-26 08:29:19 +00:00
)
func TestList_Create(t *testing.T) {
// Create test database
2018-07-27 13:52:50 +00:00
//assert.NoError(t, PrepareTestDatabase())
2018-07-26 08:29:19 +00:00
// Get our doer
2018-08-30 17:14:02 +00:00
doer, err := GetUserByID(1)
2018-07-26 08:29:19 +00:00
assert.NoError(t, err)
// Dummy list for testing
dummylist := List{
2018-07-26 08:50:03 +00:00
Title: "test",
2018-07-26 08:29:19 +00:00
Description: "Lorem Ipsum",
2018-07-26 08:49:17 +00:00
NamespaceID: 1,
2018-07-26 08:29:19 +00:00
}
2018-07-26 08:49:17 +00:00
// Check if the user can create
assert.True(t, dummylist.CanCreate(&doer))
2018-07-26 08:29:19 +00:00
// Create it
err = dummylist.Create(&doer)
assert.NoError(t, err)
// Get the list
2018-07-26 08:50:03 +00:00
newdummy := List{ID: dummylist.ID}
2018-07-26 08:29:19 +00:00
err = newdummy.ReadOne()
assert.NoError(t, err)
assert.Equal(t, dummylist.Title, newdummy.Title)
assert.Equal(t, dummylist.Description, newdummy.Description)
assert.Equal(t, dummylist.OwnerID, doer.ID)
2018-07-26 08:49:17 +00:00
// Check if the user can see it
assert.True(t, dummylist.CanRead(&doer))
2018-07-27 13:11:47 +00:00
// Try updating a list
assert.True(t, dummylist.CanUpdate(&doer))
dummylist.Description = "Lorem Ipsum dolor sit amet."
err = dummylist.Update()
assert.NoError(t, err)
2018-07-26 08:49:17 +00:00
// Delete it
assert.True(t, dummylist.CanDelete(&doer))
err = dummylist.Delete()
assert.NoError(t, err)
2018-07-27 13:11:47 +00:00
// Try updating a nonexistant list
err = dummylist.Update()
assert.Error(t, err)
assert.True(t, IsErrListDoesNotExist(err))
// Delete a nonexistant list
err = dummylist.Delete()
assert.Error(t, err)
assert.True(t, IsErrListDoesNotExist(err))
// Check failing with no title
list2 := List{}
err = list2.Create(&doer)
assert.Error(t, err)
assert.True(t, IsErrListTitleCannotBeEmpty(err))
2018-07-26 08:49:17 +00:00
// Check creation with a nonexistant namespace
list3 := List{
2018-07-26 08:50:03 +00:00
Title: "test",
2018-07-26 08:49:17 +00:00
Description: "Lorem Ipsum",
NamespaceID: 876694,
}
err = list3.Create(&doer)
assert.Error(t, err)
assert.True(t, IsErrNamespaceDoesNotExist(err))
2018-07-27 13:11:47 +00:00
// Try creating with a nonexistant owner
nUser := &User{ID: 9482385}
err = dummylist.Create(nUser)
assert.Error(t, err)
assert.True(t, IsErrUserDoesNotExist(err))
2018-07-26 08:29:19 +00:00
}