2022-04-08 11:11:15 +02:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-04-08 11:11:15 +02:00
|
|
|
|
|
|
|
package issue
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestChangeMilestoneAssign(t *testing.T) {
|
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2022-08-16 04:22:25 +02:00
|
|
|
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{RepoID: 1})
|
|
|
|
doer := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
2022-04-08 11:11:15 +02:00
|
|
|
assert.NotNil(t, issue)
|
|
|
|
assert.NotNil(t, doer)
|
|
|
|
|
|
|
|
oldMilestoneID := issue.MilestoneID
|
|
|
|
issue.MilestoneID = 2
|
|
|
|
assert.NoError(t, ChangeMilestoneAssign(issue, doer, oldMilestoneID))
|
2022-06-13 11:37:59 +02:00
|
|
|
unittest.AssertExistsAndLoadBean(t, &issues_model.Comment{
|
2022-04-08 11:11:15 +02:00
|
|
|
IssueID: issue.ID,
|
2022-06-13 11:37:59 +02:00
|
|
|
Type: issues_model.CommentTypeMilestone,
|
2022-04-08 11:11:15 +02:00
|
|
|
MilestoneID: issue.MilestoneID,
|
|
|
|
OldMilestoneID: oldMilestoneID,
|
|
|
|
})
|
2022-06-13 11:37:59 +02:00
|
|
|
unittest.CheckConsistencyFor(t, &issues_model.Milestone{}, &issues_model.Issue{})
|
2022-04-08 11:11:15 +02:00
|
|
|
}
|