-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
[API] extend StopWatch #9196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[API] extend StopWatch #9196
Changes from 6 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
973799b
squash api-stopwatch
6543 c38418c
Merge branch 'master' into api-stopwatch
6543 3d264c7
fix prepair logic! + add Tests
6543 a44295e
Merge branch 'master' into api-stopwatch
6543 fcf8782
fix lint
6543 1b3f76c
more robust time compare
6543 06ef9ea
Merge branch 'master' into api-stopwatch
6543 2262844
Merge branch 'master' into api-stopwatch
6543 f3f4624
Merge branch 'master' into api-stopwatch
6543 e832771
delete responce 202 -> 204
6543 47d6b45
Merge branch 'master' into api-stopwatch
6543 cba5578
change http responce in test too
6543 a186fd4
Merge branch 'master' into api-stopwatch
6543 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// Copyright 2019 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 ( | ||
"net/http" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/models" | ||
api "code.gitea.io/gitea/modules/structs" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestAPIListStopWatches(t *testing.T) { | ||
defer prepareTestEnv(t)() | ||
|
||
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository) | ||
owner := models.AssertExistsAndLoadBean(t, &models.User{ID: repo.OwnerID}).(*models.User) | ||
|
||
session := loginUser(t, owner.Name) | ||
token := getTokenForLoggedInUser(t, session) | ||
req := NewRequestf(t, "GET", "/api/v1/user/stopwatches?token=%s", token) | ||
resp := session.MakeRequest(t, req, http.StatusOK) | ||
var apiWatches []*api.StopWatch | ||
DecodeJSON(t, resp, &apiWatches) | ||
expect := models.AssertExistsAndLoadBean(t, &models.Stopwatch{UserID: owner.ID}).(*models.Stopwatch) | ||
expectAPI, _ := expect.APIFormat() | ||
assert.Len(t, apiWatches, 1) | ||
|
||
assert.EqualValues(t, expectAPI.IssueIndex, apiWatches[0].IssueIndex) | ||
assert.EqualValues(t, expectAPI.Created.Unix(), apiWatches[0].Created.Unix()) | ||
} | ||
|
||
func TestAPIStopStopWatches(t *testing.T) { | ||
defer prepareTestEnv(t)() | ||
|
||
issue := models.AssertExistsAndLoadBean(t, &models.Issue{ID: 2}).(*models.Issue) | ||
_ = issue.LoadRepo() | ||
owner := models.AssertExistsAndLoadBean(t, &models.User{ID: issue.Repo.OwnerID}).(*models.User) | ||
user := models.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User) | ||
|
||
session := loginUser(t, user.Name) | ||
token := getTokenForLoggedInUser(t, session) | ||
|
||
req := NewRequestf(t, "POST", "/api/v1/repos/%s/%s/issues/%d/stopwatch/stop?token=%s", owner.Name, issue.Repo.Name, issue.Index, token) | ||
session.MakeRequest(t, req, http.StatusCreated) | ||
session.MakeRequest(t, req, http.StatusConflict) | ||
} | ||
|
||
func TestAPICancelStopWatches(t *testing.T) { | ||
defer prepareTestEnv(t)() | ||
|
||
issue := models.AssertExistsAndLoadBean(t, &models.Issue{ID: 1}).(*models.Issue) | ||
_ = issue.LoadRepo() | ||
owner := models.AssertExistsAndLoadBean(t, &models.User{ID: issue.Repo.OwnerID}).(*models.User) | ||
user := models.AssertExistsAndLoadBean(t, &models.User{ID: 1}).(*models.User) | ||
|
||
session := loginUser(t, user.Name) | ||
token := getTokenForLoggedInUser(t, session) | ||
|
||
req := NewRequestf(t, "DELETE", "/api/v1/repos/%s/%s/issues/%d/stopwatch/delete?token=%s", owner.Name, issue.Repo.Name, issue.Index, token) | ||
session.MakeRequest(t, req, http.StatusAccepted) | ||
session.MakeRequest(t, req, http.StatusConflict) | ||
} | ||
|
||
func TestAPIStartStopWatches(t *testing.T) { | ||
defer prepareTestEnv(t)() | ||
|
||
issue := models.AssertExistsAndLoadBean(t, &models.Issue{ID: 3}).(*models.Issue) | ||
_ = issue.LoadRepo() | ||
owner := models.AssertExistsAndLoadBean(t, &models.User{ID: issue.Repo.OwnerID}).(*models.User) | ||
user := models.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User) | ||
|
||
session := loginUser(t, user.Name) | ||
token := getTokenForLoggedInUser(t, session) | ||
|
||
req := NewRequestf(t, "POST", "/api/v1/repos/%s/%s/issues/%d/stopwatch/start?token=%s", owner.Name, issue.Repo.Name, issue.Index, token) | ||
session.MakeRequest(t, req, http.StatusCreated) | ||
session.MakeRequest(t, req, http.StatusConflict) | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright 2019 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 structs | ||
|
||
import ( | ||
"time" | ||
) | ||
|
||
// StopWatch represent a running stopwatch | ||
type StopWatch struct { | ||
// swagger:strfmt date-time | ||
Created time.Time `json:"created"` | ||
IssueIndex int64 `json:"issue_index"` | ||
} | ||
|
||
// StopWatches represent a list of stopwatches | ||
type StopWatches []StopWatch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.