2019-12-07 17:04:19 -05:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-12-07 17:04:19 -05:00
|
|
|
|
2022-09-02 15:18:23 -04:00
|
|
|
package integration
|
2019-12-07 17:04:19 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2022-04-08 05:11:15 -04:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 05:37:59 -04:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-11-16 03:53:21 -05:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 04:49:20 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2020-10-17 00:23:08 -04:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2019-12-07 17:04:19 -05:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2022-09-02 15:18:23 -04:00
|
|
|
"code.gitea.io/gitea/tests"
|
2019-12-07 17:04:19 -05:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAPIIssuesReactions(t *testing.T) {
|
2022-09-02 15:18:23 -04:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2019-12-07 17:04:19 -05:00
|
|
|
|
2022-08-15 22:22:25 -04:00
|
|
|
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{ID: 1})
|
2022-04-08 05:11:15 -04:00
|
|
|
_ = issue.LoadRepo(db.DefaultContext)
|
2022-08-15 22:22:25 -04:00
|
|
|
owner := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: issue.Repo.OwnerID})
|
2019-12-07 17:04:19 -05:00
|
|
|
|
|
|
|
session := loginUser(t, owner.Name)
|
|
|
|
token := getTokenForLoggedInUser(t, session)
|
|
|
|
|
2022-08-15 22:22:25 -04:00
|
|
|
user2 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
2019-12-07 17:04:19 -05:00
|
|
|
urlStr := fmt.Sprintf("/api/v1/repos/%s/%s/issues/%d/reactions?token=%s",
|
|
|
|
owner.Name, issue.Repo.Name, issue.Index, token)
|
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Try to add not allowed reaction
|
2019-12-07 17:04:19 -05:00
|
|
|
req := NewRequestWithJSON(t, "POST", urlStr, &api.EditReactionOption{
|
|
|
|
Reaction: "wrong",
|
|
|
|
})
|
2022-12-01 22:39:42 -05:00
|
|
|
MakeRequest(t, req, http.StatusForbidden)
|
2019-12-07 17:04:19 -05:00
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Delete not allowed reaction
|
2019-12-07 17:04:19 -05:00
|
|
|
req = NewRequestWithJSON(t, "DELETE", urlStr, &api.EditReactionOption{
|
|
|
|
Reaction: "zzz",
|
|
|
|
})
|
2022-12-01 22:39:42 -05:00
|
|
|
MakeRequest(t, req, http.StatusOK)
|
2019-12-07 17:04:19 -05:00
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Add allowed reaction
|
2019-12-07 17:04:19 -05:00
|
|
|
req = NewRequestWithJSON(t, "POST", urlStr, &api.EditReactionOption{
|
|
|
|
Reaction: "rocket",
|
|
|
|
})
|
2022-12-01 22:39:42 -05:00
|
|
|
resp := MakeRequest(t, req, http.StatusCreated)
|
2019-12-31 03:21:21 -05:00
|
|
|
var apiNewReaction api.Reaction
|
2019-12-07 17:04:19 -05:00
|
|
|
DecodeJSON(t, resp, &apiNewReaction)
|
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Add existing reaction
|
2022-12-01 22:39:42 -05:00
|
|
|
MakeRequest(t, req, http.StatusForbidden)
|
2019-12-07 17:04:19 -05:00
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Get end result of reaction list of issue #1
|
2019-12-07 17:04:19 -05:00
|
|
|
req = NewRequestf(t, "GET", urlStr)
|
2022-12-01 22:39:42 -05:00
|
|
|
resp = MakeRequest(t, req, http.StatusOK)
|
2019-12-31 03:21:21 -05:00
|
|
|
var apiReactions []*api.Reaction
|
2019-12-07 17:04:19 -05:00
|
|
|
DecodeJSON(t, resp, &apiReactions)
|
2019-12-31 03:21:21 -05:00
|
|
|
expectResponse := make(map[int]api.Reaction)
|
|
|
|
expectResponse[0] = api.Reaction{
|
2021-03-27 12:45:26 -04:00
|
|
|
User: convert.ToUser(user2, user2),
|
2019-12-07 17:04:19 -05:00
|
|
|
Reaction: "eyes",
|
|
|
|
Created: time.Unix(1573248003, 0),
|
|
|
|
}
|
2019-12-18 08:07:36 -05:00
|
|
|
expectResponse[1] = apiNewReaction
|
|
|
|
assert.Len(t, apiReactions, 2)
|
2019-12-07 17:04:19 -05:00
|
|
|
for i, r := range apiReactions {
|
|
|
|
assert.Equal(t, expectResponse[i].Reaction, r.Reaction)
|
|
|
|
assert.Equal(t, expectResponse[i].Created.Unix(), r.Created.Unix())
|
|
|
|
assert.Equal(t, expectResponse[i].User.ID, r.User.ID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAPICommentReactions(t *testing.T) {
|
2022-09-02 15:18:23 -04:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2019-12-07 17:04:19 -05:00
|
|
|
|
2022-08-15 22:22:25 -04:00
|
|
|
comment := unittest.AssertExistsAndLoadBean(t, &issues_model.Comment{ID: 2})
|
2022-11-19 03:12:33 -05:00
|
|
|
_ = comment.LoadIssue(db.DefaultContext)
|
2019-12-07 17:04:19 -05:00
|
|
|
issue := comment.Issue
|
2022-04-08 05:11:15 -04:00
|
|
|
_ = issue.LoadRepo(db.DefaultContext)
|
2022-08-15 22:22:25 -04:00
|
|
|
owner := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: issue.Repo.OwnerID})
|
2019-12-07 17:04:19 -05:00
|
|
|
|
|
|
|
session := loginUser(t, owner.Name)
|
|
|
|
token := getTokenForLoggedInUser(t, session)
|
|
|
|
|
2022-08-15 22:22:25 -04:00
|
|
|
user1 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
|
|
|
|
user2 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
2019-12-07 17:04:19 -05:00
|
|
|
urlStr := fmt.Sprintf("/api/v1/repos/%s/%s/issues/comments/%d/reactions?token=%s",
|
|
|
|
owner.Name, issue.Repo.Name, comment.ID, token)
|
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Try to add not allowed reaction
|
2019-12-07 17:04:19 -05:00
|
|
|
req := NewRequestWithJSON(t, "POST", urlStr, &api.EditReactionOption{
|
|
|
|
Reaction: "wrong",
|
|
|
|
})
|
2022-12-01 22:39:42 -05:00
|
|
|
MakeRequest(t, req, http.StatusForbidden)
|
2019-12-07 17:04:19 -05:00
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Delete none existing reaction
|
2019-12-07 17:04:19 -05:00
|
|
|
req = NewRequestWithJSON(t, "DELETE", urlStr, &api.EditReactionOption{
|
|
|
|
Reaction: "eyes",
|
|
|
|
})
|
2022-12-01 22:39:42 -05:00
|
|
|
MakeRequest(t, req, http.StatusOK)
|
2019-12-07 17:04:19 -05:00
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Add allowed reaction
|
2019-12-07 17:04:19 -05:00
|
|
|
req = NewRequestWithJSON(t, "POST", urlStr, &api.EditReactionOption{
|
|
|
|
Reaction: "+1",
|
|
|
|
})
|
2022-12-01 22:39:42 -05:00
|
|
|
resp := MakeRequest(t, req, http.StatusCreated)
|
2019-12-31 03:21:21 -05:00
|
|
|
var apiNewReaction api.Reaction
|
2019-12-07 17:04:19 -05:00
|
|
|
DecodeJSON(t, resp, &apiNewReaction)
|
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Add existing reaction
|
2022-12-01 22:39:42 -05:00
|
|
|
MakeRequest(t, req, http.StatusForbidden)
|
2019-12-07 17:04:19 -05:00
|
|
|
|
2022-01-20 12:46:10 -05:00
|
|
|
// Get end result of reaction list of issue #1
|
2019-12-07 17:04:19 -05:00
|
|
|
req = NewRequestf(t, "GET", urlStr)
|
2022-12-01 22:39:42 -05:00
|
|
|
resp = MakeRequest(t, req, http.StatusOK)
|
2019-12-31 03:21:21 -05:00
|
|
|
var apiReactions []*api.Reaction
|
2019-12-07 17:04:19 -05:00
|
|
|
DecodeJSON(t, resp, &apiReactions)
|
2019-12-31 03:21:21 -05:00
|
|
|
expectResponse := make(map[int]api.Reaction)
|
|
|
|
expectResponse[0] = api.Reaction{
|
2021-03-27 12:45:26 -04:00
|
|
|
User: convert.ToUser(user2, user2),
|
2019-12-07 17:04:19 -05:00
|
|
|
Reaction: "laugh",
|
|
|
|
Created: time.Unix(1573248004, 0),
|
|
|
|
}
|
2019-12-31 03:21:21 -05:00
|
|
|
expectResponse[1] = api.Reaction{
|
2021-03-27 12:45:26 -04:00
|
|
|
User: convert.ToUser(user1, user1),
|
2019-12-07 17:04:19 -05:00
|
|
|
Reaction: "laugh",
|
|
|
|
Created: time.Unix(1573248005, 0),
|
|
|
|
}
|
|
|
|
expectResponse[2] = apiNewReaction
|
|
|
|
assert.Len(t, apiReactions, 3)
|
|
|
|
for i, r := range apiReactions {
|
|
|
|
assert.Equal(t, expectResponse[i].Reaction, r.Reaction)
|
|
|
|
assert.Equal(t, expectResponse[i].Created.Unix(), r.Created.Unix())
|
|
|
|
assert.Equal(t, expectResponse[i].User.ID, r.User.ID)
|
|
|
|
}
|
|
|
|
}
|