mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
// Copyright 2019 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package issue |
|
|
|
import ( |
|
"testing" |
|
|
|
"code.gitea.io/gitea/models/db" |
|
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()) |
|
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{RepoID: 1}) |
|
doer := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2}) |
|
assert.NotNil(t, issue) |
|
assert.NotNil(t, doer) |
|
|
|
oldMilestoneID := issue.MilestoneID |
|
issue.MilestoneID = 2 |
|
assert.NoError(t, ChangeMilestoneAssign(db.DefaultContext, issue, doer, oldMilestoneID)) |
|
unittest.AssertExistsAndLoadBean(t, &issues_model.Comment{ |
|
IssueID: issue.ID, |
|
Type: issues_model.CommentTypeMilestone, |
|
MilestoneID: issue.MilestoneID, |
|
OldMilestoneID: oldMilestoneID, |
|
}) |
|
unittest.CheckConsistencyFor(t, &issues_model.Milestone{}, &issues_model.Issue{}) |
|
}
|
|
|