Some checks failed
Build and Release / Create Release (push) Successful in 0s
Trigger Vault Plugin Rebuild / Trigger Vault Rebuild (push) Successful in 0s
Build and Release / Integration Tests (PostgreSQL) (push) Successful in 2m48s
Build and Release / Lint (push) Failing after 5m2s
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, darwin, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (arm64, darwin, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (arm64, linux, linux-latest) (push) Has been skipped
Build and Release / Unit Tests (push) Successful in 5m37s
Go's semantic import versioning requires v2+ modules to include the major version in the module path. This enables using proper version tags (v3.x.x) instead of pseudo-versions. Updated module path: code.gitcaddy.com/server/v3
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package issue
|
|
|
|
import (
|
|
"testing"
|
|
|
|
issues_model "code.gitcaddy.com/server/v3/models/issues"
|
|
"code.gitcaddy.com/server/v3/models/unittest"
|
|
user_model "code.gitcaddy.com/server/v3/models/user"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDeleteNotPassedAssignee(t *testing.T) {
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
// Fake issue with assignees
|
|
issue, err := issues_model.GetIssueByID(t.Context(), 1)
|
|
assert.NoError(t, err)
|
|
|
|
err = issue.LoadAttributes(t.Context())
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, issue.Assignees, 1)
|
|
|
|
user1, err := user_model.GetUserByID(t.Context(), 1) // This user is already assigned (see the definition in fixtures), so running UpdateAssignee should unassign him
|
|
assert.NoError(t, err)
|
|
|
|
// Check if he got removed
|
|
isAssigned, err := issues_model.IsUserAssignedToIssue(t.Context(), issue, user1)
|
|
assert.NoError(t, err)
|
|
assert.True(t, isAssigned)
|
|
|
|
// Clean everyone
|
|
err = DeleteNotPassedAssignee(t.Context(), issue, user1, []*user_model.User{})
|
|
assert.NoError(t, err)
|
|
assert.Empty(t, issue.Assignees)
|
|
|
|
// Reload to check they're gone
|
|
issue.ResetAttributesLoaded()
|
|
assert.NoError(t, issue.LoadAssignees(t.Context()))
|
|
assert.Empty(t, issue.Assignees)
|
|
assert.Empty(t, issue.Assignee)
|
|
}
|