Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
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.
65 lines
2.5 KiB
65 lines
2.5 KiB
// Copyright 2017 The Gitea Authors. All rights reserved. |
|
// Use of this source code is governed by a MIT-style |
|
// license that can be found in the LICENSE file. |
|
|
|
package integrations |
|
|
|
import ( |
|
"fmt" |
|
"net/http" |
|
"testing" |
|
|
|
"code.gitea.io/gitea/models" |
|
api "code.gitea.io/gitea/modules/structs" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestAPIAddIssueLabels(t *testing.T) { |
|
assert.NoError(t, models.LoadFixtures()) |
|
|
|
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository) |
|
issue := models.AssertExistsAndLoadBean(t, &models.Issue{RepoID: repo.ID}).(*models.Issue) |
|
label := models.AssertExistsAndLoadBean(t, &models.Label{RepoID: repo.ID}).(*models.Label) |
|
owner := models.AssertExistsAndLoadBean(t, &models.User{ID: repo.OwnerID}).(*models.User) |
|
|
|
session := loginUser(t, owner.Name) |
|
token := getTokenForLoggedInUser(t, session) |
|
urlStr := fmt.Sprintf("/api/v1/repos/%s/%s/issues/%d/labels?token=%s", |
|
owner.Name, repo.Name, issue.Index, token) |
|
req := NewRequestWithJSON(t, "POST", urlStr, &api.IssueLabelsOption{ |
|
Labels: []int64{label.ID}, |
|
}) |
|
resp := session.MakeRequest(t, req, http.StatusOK) |
|
var apiLabels []*api.Label |
|
DecodeJSON(t, resp, &apiLabels) |
|
assert.Len(t, apiLabels, models.GetCount(t, &models.IssueLabel{IssueID: issue.ID})) |
|
|
|
models.AssertExistsAndLoadBean(t, &models.IssueLabel{IssueID: issue.ID, LabelID: label.ID}) |
|
} |
|
|
|
func TestAPIReplaceIssueLabels(t *testing.T) { |
|
assert.NoError(t, models.LoadFixtures()) |
|
|
|
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository) |
|
issue := models.AssertExistsAndLoadBean(t, &models.Issue{RepoID: repo.ID}).(*models.Issue) |
|
label := models.AssertExistsAndLoadBean(t, &models.Label{RepoID: repo.ID}).(*models.Label) |
|
owner := models.AssertExistsAndLoadBean(t, &models.User{ID: repo.OwnerID}).(*models.User) |
|
|
|
session := loginUser(t, owner.Name) |
|
token := getTokenForLoggedInUser(t, session) |
|
urlStr := fmt.Sprintf("/api/v1/repos/%s/%s/issues/%d/labels?token=%s", |
|
owner.Name, repo.Name, issue.Index, token) |
|
req := NewRequestWithJSON(t, "PUT", urlStr, &api.IssueLabelsOption{ |
|
Labels: []int64{label.ID}, |
|
}) |
|
resp := session.MakeRequest(t, req, http.StatusOK) |
|
var apiLabels []*api.Label |
|
DecodeJSON(t, resp, &apiLabels) |
|
if assert.Len(t, apiLabels, 1) { |
|
assert.EqualValues(t, label.ID, apiLabels[0].ID) |
|
} |
|
|
|
models.AssertCount(t, &models.IssueLabel{IssueID: issue.ID}, 1) |
|
models.AssertExistsAndLoadBean(t, &models.IssueLabel{IssueID: issue.ID, LabelID: label.ID}) |
|
}
|
|
|