api/pkg/models/task_collection_sort_test.go

94 lines
2.5 KiB
Go
Raw Normal View History

2020-02-07 16:27:45 +00:00
// Vikunja is a to-do list application to facilitate your life.
2021-02-02 19:19:13 +00:00
// Copyright 2018-2021 Vikunja and contributors. All rights reserved.
2019-12-07 14:30:51 +00:00
//
2020-01-09 17:33:22 +00:00
// This program is free software: you can redistribute it and/or modify
2020-12-23 15:41:52 +00:00
// it under the terms of the GNU Affero General Public Licensee as published by
2020-01-09 17:33:22 +00:00
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
2019-12-07 14:30:51 +00:00
//
2020-01-09 17:33:22 +00: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
2020-12-23 15:41:52 +00:00
// GNU Affero General Public Licensee for more details.
2019-12-07 14:30:51 +00:00
//
2020-12-23 15:41:52 +00:00
// You should have received a copy of the GNU Affero General Public Licensee
2020-01-09 17:33:22 +00:00
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2019-12-07 14:30:51 +00:00
package models
import (
"testing"
"github.com/stretchr/testify/assert"
2019-12-07 14:30:51 +00:00
)
func TestSortParamValidation(t *testing.T) {
t.Run("Test valid order by", func(t *testing.T) {
t.Run(orderAscending.String(), func(t *testing.T) {
s := &sortParam{
orderBy: orderAscending,
sortBy: "id",
}
err := s.validate()
assert.NoError(t, err)
})
t.Run(orderDescending.String(), func(t *testing.T) {
s := &sortParam{
orderBy: orderDescending,
sortBy: "id",
}
err := s.validate()
assert.NoError(t, err)
})
})
t.Run("Test valid sort by", func(t *testing.T) {
for _, test := range []string{
2019-12-07 14:30:51 +00:00
taskPropertyID,
taskPropertyTitle,
2019-12-07 14:30:51 +00:00
taskPropertyDescription,
taskPropertyDone,
taskPropertyDoneAt,
taskPropertyDueDate,
2019-12-07 14:30:51 +00:00
taskPropertyCreatedByID,
2022-11-13 16:07:01 +00:00
taskPropertyProjectID,
2019-12-07 14:30:51 +00:00
taskPropertyRepeatAfter,
taskPropertyPriority,
taskPropertyStartDate,
taskPropertyEndDate,
2019-12-07 14:30:51 +00:00
taskPropertyHexColor,
taskPropertyPercentDone,
taskPropertyUID,
taskPropertyCreated,
taskPropertyUpdated,
taskPropertyPosition,
2019-12-07 14:30:51 +00:00
} {
t.Run(test, func(t *testing.T) {
2019-12-07 14:30:51 +00:00
s := &sortParam{
orderBy: orderAscending,
sortBy: test,
2019-12-07 14:30:51 +00:00
}
err := s.validate()
assert.NoError(t, err)
})
}
})
t.Run("Test invalid order by", func(t *testing.T) {
s := &sortParam{
orderBy: "somethingInvalid",
sortBy: "id",
}
err := s.validate()
assert.Error(t, err)
assert.True(t, IsErrInvalidSortOrder(err))
})
t.Run("Test invalid sort by", func(t *testing.T) {
s := &sortParam{
orderBy: orderAscending,
sortBy: "somethingInvalid",
}
err := s.validate()
assert.Error(t, err)
assert.True(t, IsErrInvalidTaskField(err))
2019-12-07 14:30:51 +00:00
})
}