Files
Atay-Makhzan/tests/integration/api_issue_stopwatch_test.go
T

93 lines
3.7 KiB
Go
Raw Normal View History

2019-12-12 05:23:05 +01:00
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2019-12-12 05:23:05 +01:00
2022-09-02 15:18:23 -04:00
package integration
2019-12-12 05:23:05 +01:00
import (
"net/http"
"testing"
2023-01-17 16:46:03 -05:00
auth_model "code.gitea.io/gitea/models/auth"
2022-04-08 17:11:15 +08:00
"code.gitea.io/gitea/models/db"
issues_model "code.gitea.io/gitea/models/issues"
repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/models/unittest"
user_model "code.gitea.io/gitea/models/user"
2019-12-12 05:23:05 +01:00
api "code.gitea.io/gitea/modules/structs"
2022-09-02 15:18:23 -04:00
"code.gitea.io/gitea/tests"
2019-12-12 05:23:05 +01:00
"github.com/stretchr/testify/assert"
)
func TestAPIListStopWatches(t *testing.T) {
2022-09-02 15:18:23 -04:00
defer tests.PrepareTestEnv(t)()
2019-12-12 05:23:05 +01:00
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
owner := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: repo.OwnerID})
2019-12-12 05:23:05 +01:00
session := loginUser(t, owner.Name)
2023-01-17 16:46:03 -05:00
token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeRepo)
2019-12-12 05:23:05 +01:00
req := NewRequestf(t, "GET", "/api/v1/user/stopwatches?token=%s", token)
2022-12-02 11:39:42 +08:00
resp := MakeRequest(t, req, http.StatusOK)
2019-12-12 05:23:05 +01:00
var apiWatches []*api.StopWatch
DecodeJSON(t, resp, &apiWatches)
stopwatch := unittest.AssertExistsAndLoadBean(t, &issues_model.Stopwatch{UserID: owner.ID})
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{ID: stopwatch.IssueID})
if assert.Len(t, apiWatches, 1) {
assert.EqualValues(t, stopwatch.CreatedUnix.AsTime().Unix(), apiWatches[0].Created.Unix())
assert.EqualValues(t, issue.Index, apiWatches[0].IssueIndex)
assert.EqualValues(t, issue.Title, apiWatches[0].IssueTitle)
assert.EqualValues(t, repo.Name, apiWatches[0].RepoName)
assert.EqualValues(t, repo.OwnerName, apiWatches[0].RepoOwnerName)
assert.Greater(t, apiWatches[0].Seconds, int64(0))
}
2019-12-12 05:23:05 +01:00
}
func TestAPIStopStopWatches(t *testing.T) {
2022-09-02 15:18:23 -04:00
defer tests.PrepareTestEnv(t)()
2019-12-12 05:23:05 +01:00
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{ID: 2})
2022-04-08 17:11:15 +08:00
_ = issue.LoadRepo(db.DefaultContext)
owner := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: issue.Repo.OwnerID})
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
2019-12-12 05:23:05 +01:00
session := loginUser(t, user.Name)
2023-01-17 16:46:03 -05:00
token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeRepo)
2019-12-12 05:23:05 +01:00
req := NewRequestf(t, "POST", "/api/v1/repos/%s/%s/issues/%d/stopwatch/stop?token=%s", owner.Name, issue.Repo.Name, issue.Index, token)
2022-12-02 11:39:42 +08:00
MakeRequest(t, req, http.StatusCreated)
MakeRequest(t, req, http.StatusConflict)
2019-12-12 05:23:05 +01:00
}
func TestAPICancelStopWatches(t *testing.T) {
2022-09-02 15:18:23 -04:00
defer tests.PrepareTestEnv(t)()
2019-12-12 05:23:05 +01:00
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{ID: 1})
2022-04-08 17:11:15 +08:00
_ = issue.LoadRepo(db.DefaultContext)
owner := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: issue.Repo.OwnerID})
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
2019-12-12 05:23:05 +01:00
session := loginUser(t, user.Name)
2023-01-17 16:46:03 -05:00
token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeRepo)
2019-12-12 05:23:05 +01:00
req := NewRequestf(t, "DELETE", "/api/v1/repos/%s/%s/issues/%d/stopwatch/delete?token=%s", owner.Name, issue.Repo.Name, issue.Index, token)
2022-12-02 11:39:42 +08:00
MakeRequest(t, req, http.StatusNoContent)
MakeRequest(t, req, http.StatusConflict)
2019-12-12 05:23:05 +01:00
}
func TestAPIStartStopWatches(t *testing.T) {
2022-09-02 15:18:23 -04:00
defer tests.PrepareTestEnv(t)()
2019-12-12 05:23:05 +01:00
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{ID: 3})
2022-04-08 17:11:15 +08:00
_ = issue.LoadRepo(db.DefaultContext)
owner := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: issue.Repo.OwnerID})
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
2019-12-12 05:23:05 +01:00
session := loginUser(t, user.Name)
2023-01-17 16:46:03 -05:00
token := getTokenForLoggedInUser(t, session, auth_model.AccessTokenScopeRepo)
2019-12-12 05:23:05 +01:00
req := NewRequestf(t, "POST", "/api/v1/repos/%s/%s/issues/%d/stopwatch/start?token=%s", owner.Name, issue.Repo.Name, issue.Index, token)
2022-12-02 11:39:42 +08:00
MakeRequest(t, req, http.StatusCreated)
MakeRequest(t, req, http.StatusConflict)
2019-12-12 05:23:05 +01:00
}