2022-04-08 03:11:15 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-04-08 03:11:15 -06: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-15 20:22:25 -06:00
|
|
|
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{RepoID: 1})
|
|
|
|
doer := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
2022-04-08 03:11:15 -06: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 03:37:59 -06:00
|
|
|
unittest.AssertExistsAndLoadBean(t, &issues_model.Comment{
|
2022-04-08 03:11:15 -06:00
|
|
|
IssueID: issue.ID,
|
2022-06-13 03:37:59 -06:00
|
|
|
Type: issues_model.CommentTypeMilestone,
|
2022-04-08 03:11:15 -06:00
|
|
|
MilestoneID: issue.MilestoneID,
|
|
|
|
OldMilestoneID: oldMilestoneID,
|
|
|
|
})
|
2022-06-13 03:37:59 -06:00
|
|
|
unittest.CheckConsistencyFor(t, &issues_model.Milestone{}, &issues_model.Issue{})
|
2022-04-08 03:11:15 -06:00
|
|
|
}
|