api/pkg/integrations/task_test.go

520 lines
25 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-04-21 18:18:17 +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
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
2019-04-21 18:18:17 +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-04-21 18:18:17 +00:00
//
2020-12-23 15:41:52 +00:00
// You should have received a copy of the GNU Affero General Public Licensee
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2019-04-21 18:18:17 +00:00
package integrations
import (
"testing"
"code.vikunja.io/api/pkg/db"
2019-04-21 18:18:17 +00:00
"code.vikunja.io/api/pkg/models"
"code.vikunja.io/web/handler"
2019-05-07 19:42:24 +00:00
"github.com/labstack/echo/v4"
2019-04-21 18:18:17 +00:00
"github.com/stretchr/testify/assert"
)
2019-08-14 20:19:04 +00:00
func TestTask(t *testing.T) {
2019-04-21 18:18:17 +00:00
testHandler := webHandlerTest{
user: &testuser1,
strFunc: func() handler.CObject {
2019-08-14 20:19:04 +00:00
return &models.Task{}
2019-04-21 18:18:17 +00:00
},
t: t,
}
testHandlerLinkShareWrite := webHandlerTest{
linkShare: &models.LinkSharing{
ID: 2,
Hash: "test2",
2022-11-13 16:07:01 +00:00
ProjectID: 2,
Right: models.RightWrite,
SharingType: models.SharingTypeWithoutPassword,
SharedByID: 1,
},
strFunc: func() handler.CObject {
return &models.Task{}
},
t: t,
}
2019-04-21 18:18:17 +00:00
// Only run specific nested tests:
2019-08-14 20:19:04 +00:00
// ^TestTask$/^Update$/^Update_task_items$/^Removing_Assignees_null$
2019-04-21 18:18:17 +00:00
t.Run("Update", func(t *testing.T) {
t.Run("Update task items", func(t *testing.T) {
t.Run("Title", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
assert.NotContains(t, rec.Body.String(), `"title":"task #1"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Description", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"description":"Dolor sit amet"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"description":"Dolor sit amet"`)
assert.NotContains(t, rec.Body.String(), `"description":"Lorem Ipsum"`)
})
t.Run("Description to empty", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"description":""}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"description":""`)
assert.NotContains(t, rec.Body.String(), `"description":"Lorem Ipsum"`)
})
t.Run("Done", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"done":true}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"done":true`)
assert.NotContains(t, rec.Body.String(), `"done":false`)
})
t.Run("Undone", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "2"}, `{"done":false}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"done":false`)
assert.NotContains(t, rec.Body.String(), `"done":true`)
})
t.Run("Due date", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"due_date": "2020-02-10T10:00:00Z"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"due_date":"2020-02-10T10:00:00Z"`)
assert.NotContains(t, rec.Body.String(), `"due_date":0`)
2019-04-21 18:18:17 +00:00
})
t.Run("Due date unset", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "5"}, `{"due_date": null}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"due_date":"0001-01-01T00:00:00Z"`)
assert.NotContains(t, rec.Body.String(), `"due_date":"2020-02-10T10:00:00Z"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Reminders", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"reminder_dates": ["2020-02-10T10:00:00Z","2020-02-11T10:00:00Z"]}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"reminder_dates":["2020-02-10T10:00:00Z","2020-02-11T10:00:00Z"]`)
assert.NotContains(t, rec.Body.String(), `"reminder_dates": null`)
2019-04-21 18:18:17 +00:00
})
t.Run("Reminders unset to empty array", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "27"}, `{"reminder_dates": []}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"reminder_dates":null`)
assert.NotContains(t, rec.Body.String(), `"reminder_dates":[1543626724,1543626824]`)
2019-04-21 18:18:17 +00:00
})
t.Run("Reminders unset to null", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "27"}, `{"reminder_dates": null}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"reminder_dates":null`)
assert.NotContains(t, rec.Body.String(), `"reminder_dates":[1543626724,1543626824]`)
2019-04-21 18:18:17 +00:00
})
t.Run("Repeat after", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"repeat_after":3600}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"repeat_after":3600`)
assert.NotContains(t, rec.Body.String(), `"repeat_after":0`)
2019-04-21 18:18:17 +00:00
})
t.Run("Repeat after unset", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "28"}, `{"repeat_after":0}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"repeat_after":0`)
assert.NotContains(t, rec.Body.String(), `"repeat_after":3600`)
2019-04-21 18:18:17 +00:00
})
t.Run("Repeat after update done", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "28"}, `{"done":true}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"done":false`)
assert.NotContains(t, rec.Body.String(), `"done":true`)
})
t.Run("Assignees", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"assignees":[{"id":1}]}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"assignees":[{"id":1`)
assert.NotContains(t, rec.Body.String(), `"assignees":[]`)
})
t.Run("Removing Assignees empty array", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "30"}, `{"assignees":[]}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"assignees":null`)
assert.NotContains(t, rec.Body.String(), `"assignees":[{"id":1`)
})
t.Run("Removing Assignees null", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "30"}, `{"assignees":null}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"assignees":null`)
assert.NotContains(t, rec.Body.String(), `"assignees":[{"id":1`)
})
t.Run("Priority", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"priority":100}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"priority":100`)
assert.NotContains(t, rec.Body.String(), `"priority":0`)
})
t.Run("Priority to 0", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "3"}, `{"priority":0}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"priority":0`)
assert.NotContains(t, rec.Body.String(), `"priority":100`)
})
t.Run("Start date", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"start_date":"2020-02-10T10:00:00Z"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"start_date":"2020-02-10T10:00:00Z"`)
assert.NotContains(t, rec.Body.String(), `"start_date":0`)
2019-04-21 18:18:17 +00:00
})
t.Run("Start date unset", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "7"}, `{"start_date":"0001-01-01T00:00:00Z"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"start_date":"0001-01-01T00:00:00Z"`)
assert.NotContains(t, rec.Body.String(), `"start_date":"2020-02-10T10:00:00Z"`)
2019-04-21 18:18:17 +00:00
})
t.Run("End date", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"end_date":"2020-02-10T12:00:00Z"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"end_date":"2020-02-10T12:00:00Z"`)
assert.NotContains(t, rec.Body.String(), `"end_date":""`)
2019-04-21 18:18:17 +00:00
})
t.Run("End date unset", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "8"}, `{"end_date":"0001-01-01T00:00:00Z"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"end_date":"0001-01-01T00:00:00Z"`)
assert.NotContains(t, rec.Body.String(), `"end_date":"2020-02-10T10:00:00Z"`)
2019-04-21 18:18:17 +00:00
})
2019-04-30 09:26:37 +00:00
t.Run("Color", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"hex_color":"f0f0f0"}`)
2019-04-30 09:26:37 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"hex_color":"f0f0f0"`)
assert.NotContains(t, rec.Body.String(), `"hex_color":""`)
2019-04-30 09:26:37 +00:00
})
t.Run("Color unset", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "31"}, `{"hex_color":""}`)
2019-04-30 09:26:37 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"hex_color":""`)
assert.NotContains(t, rec.Body.String(), `"hex_color":"f0f0f0"`)
2019-04-30 09:26:37 +00:00
})
2019-09-21 10:52:10 +00:00
t.Run("Percent Done", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"percent_done":0.1}`)
2019-09-21 10:52:10 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"percent_done":0.1`)
assert.NotContains(t, rec.Body.String(), `"percent_done":0,`)
2019-09-21 10:52:10 +00:00
})
t.Run("Percent Done unset", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "33"}, `{"percent_done":0}`)
2019-09-21 10:52:10 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"percent_done":0,`)
assert.NotContains(t, rec.Body.String(), `"percent_done":0.1`)
2019-09-21 10:52:10 +00:00
})
2019-04-21 18:18:17 +00:00
})
t.Run("Nonexisting", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "99999"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
2019-08-14 20:19:04 +00:00
assertHandlerErrorCode(t, err, models.ErrCodeTaskDoesNotExist)
2019-04-21 18:18:17 +00:00
})
t.Run("Rights check", func(t *testing.T) {
t.Run("Forbidden", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "14"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via Team readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "15"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via Team write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "16"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via Team admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "17"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via User readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "18"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via User write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "19"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via User admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "20"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via NamespaceTeam readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "21"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via NamespaceTeam write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "22"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via NamespaceTeam admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "23"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via NamespaceUser readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "24"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via NamespaceUser write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "25"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via NamespaceUser admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "26"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
})
2022-11-13 16:07:01 +00:00
t.Run("Move to other project", func(t *testing.T) {
t.Run("normal", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"project_id":7}`)
assert.NoError(t, err)
2022-11-13 16:07:01 +00:00
assert.Contains(t, rec.Body.String(), `"project_id":7`)
assert.NotContains(t, rec.Body.String(), `"project_id":1`)
})
t.Run("Forbidden", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"project_id":20}`)
assert.Error(t, err)
assertHandlerErrorCode(t, err, models.ErrorCodeGenericForbidden)
})
t.Run("Read Only", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"project_id":6}`)
assert.Error(t, err)
assertHandlerErrorCode(t, err, models.ErrorCodeGenericForbidden)
})
})
t.Run("Bucket", func(t *testing.T) {
t.Run("Normal", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"bucket_id":3}`)
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"bucket_id":3`)
assert.NotContains(t, rec.Body.String(), `"bucket_id":1`)
})
2022-11-13 16:07:01 +00:00
t.Run("Different Project", func(t *testing.T) {
_, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"bucket_id":4}`)
assert.Error(t, err)
2022-11-13 16:07:01 +00:00
assertHandlerErrorCode(t, err, models.ErrCodeBucketDoesNotBelongToProject)
})
t.Run("Nonexisting Bucket", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testUpdateWithUser(nil, map[string]string{"projecttask": "1"}, `{"bucket_id":9999}`)
assert.Error(t, err)
assertHandlerErrorCode(t, err, models.ErrCodeBucketDoesNotExist)
})
})
2019-04-21 18:18:17 +00:00
})
t.Run("Delete", func(t *testing.T) {
t.Run("Normal", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "1"})
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `Successfully deleted.`)
})
t.Run("Nonexisting", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "99999"})
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
2019-08-14 20:19:04 +00:00
assertHandlerErrorCode(t, err, models.ErrCodeTaskDoesNotExist)
2019-04-21 18:18:17 +00:00
})
t.Run("Rights check", func(t *testing.T) {
t.Run("Forbidden", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "14"})
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via Team readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "15"})
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via Team write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "16"})
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `Successfully deleted.`)
})
t.Run("Shared Via Team admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "17"})
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `Successfully deleted.`)
})
t.Run("Shared Via User readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "18"})
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via User write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "19"})
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `Successfully deleted.`)
})
t.Run("Shared Via User admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "20"})
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `Successfully deleted.`)
})
t.Run("Shared Via NamespaceTeam readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "21"})
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via NamespaceTeam write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "22"})
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `Successfully deleted.`)
})
t.Run("Shared Via NamespaceTeam admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "23"})
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `Successfully deleted.`)
})
t.Run("Shared Via NamespaceUser readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "24"})
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via NamespaceUser write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "25"})
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `Successfully deleted.`)
})
t.Run("Shared Via NamespaceUser admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testDeleteWithUser(nil, map[string]string{"projecttask": "26"})
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `Successfully deleted.`)
})
})
})
t.Run("Create", func(t *testing.T) {
t.Run("Normal", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "1"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Nonexisting", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "9999"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
2022-11-13 16:07:01 +00:00
assertHandlerErrorCode(t, err, models.ErrCodeProjectDoesNotExist)
2019-04-21 18:18:17 +00:00
})
t.Run("Rights check", func(t *testing.T) {
t.Run("Forbidden", func(t *testing.T) {
2019-08-14 20:19:04 +00:00
// Owned by user13
2022-11-13 16:07:01 +00:00
_, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "20"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via Team readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "6"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via Team write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "7"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via Team admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "8"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via User readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "9"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via User write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "10"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via User admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "11"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via NamespaceTeam readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "12"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via NamespaceTeam write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "13"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via NamespaceTeam admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "14"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via NamespaceUser readonly", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "15"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.Error(t, err)
assert.Contains(t, err.(*echo.HTTPError).Message, `Forbidden`)
})
t.Run("Shared Via NamespaceUser write", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "16"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
t.Run("Shared Via NamespaceUser admin", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "17"}, `{"title":"Lorem Ipsum"}`)
2019-04-21 18:18:17 +00:00
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
2019-04-21 18:18:17 +00:00
})
})
t.Run("Bucket", func(t *testing.T) {
t.Run("Normal", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "1"}, `{"title":"Lorem Ipsum","bucket_id":3}`)
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"bucket_id":3`)
assert.NotContains(t, rec.Body.String(), `"bucket_id":1`)
})
2022-11-13 16:07:01 +00:00
t.Run("Different Project", func(t *testing.T) {
_, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "1"}, `{"title":"Lorem Ipsum","bucket_id":4}`)
assert.Error(t, err)
2022-11-13 16:07:01 +00:00
assertHandlerErrorCode(t, err, models.ErrCodeBucketDoesNotBelongToProject)
})
t.Run("Nonexisting Bucket", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
_, err := testHandler.testCreateWithUser(nil, map[string]string{"project": "1"}, `{"title":"Lorem Ipsum","bucket_id":9999}`)
assert.Error(t, err)
assertHandlerErrorCode(t, err, models.ErrCodeBucketDoesNotExist)
})
})
t.Run("Link Share", func(t *testing.T) {
2022-11-13 16:07:01 +00:00
rec, err := testHandlerLinkShareWrite.testCreateWithLinkShare(nil, map[string]string{"project": "2"}, `{"title":"Lorem Ipsum"}`)
assert.NoError(t, err)
assert.Contains(t, rec.Body.String(), `"title":"Lorem Ipsum"`)
db.AssertExists(t, "tasks", map[string]interface{}{
2022-11-13 16:07:01 +00:00
"project_id": 2,
"title": "Lorem Ipsum",
"created_by_id": -2,
}, false)
})
2019-04-21 18:18:17 +00:00
})
}