|
|
@ -21,17 +21,41 @@ func TestAPIReposGitCommits(t *testing.T) { |
|
|
|
session := loginUser(t, user.Name) |
|
|
|
session := loginUser(t, user.Name) |
|
|
|
token := getTokenForLoggedInUser(t, session) |
|
|
|
token := getTokenForLoggedInUser(t, session) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//check invalid requests for GetCommitsBySHA
|
|
|
|
|
|
|
|
req := NewRequestf(t, "GET", "/api/v1/repos/%s/repo1/git/commits/master?token="+token, user.Name) |
|
|
|
|
|
|
|
session.MakeRequest(t, req, http.StatusUnprocessableEntity) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
req = NewRequestf(t, "GET", "/api/v1/repos/%s/repo1/git/commits/12345?token="+token, user.Name) |
|
|
|
|
|
|
|
session.MakeRequest(t, req, http.StatusNotFound) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//check invalid requests for GetCommitsByRef
|
|
|
|
|
|
|
|
req = NewRequestf(t, "GET", "/api/v1/repos/%s/repo1/commits/..?token="+token, user.Name) |
|
|
|
|
|
|
|
session.MakeRequest(t, req, http.StatusUnprocessableEntity) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
req = NewRequestf(t, "GET", "/api/v1/repos/%s/repo1/commits/branch-not-exist?token="+token, user.Name) |
|
|
|
|
|
|
|
session.MakeRequest(t, req, http.StatusNotFound) |
|
|
|
|
|
|
|
|
|
|
|
for _, ref := range [...]string{ |
|
|
|
for _, ref := range [...]string{ |
|
|
|
"commits/master", // Branch
|
|
|
|
"master", // Branch
|
|
|
|
"commits/v1.1", // Tag
|
|
|
|
"v1.1", // Tag
|
|
|
|
|
|
|
|
"65f1", // short sha
|
|
|
|
|
|
|
|
"65f1bf27bc3bf70f64657658635e66094edbcb4d", // full sha
|
|
|
|
} { |
|
|
|
} { |
|
|
|
req := NewRequestf(t, "GET", "/api/v1/repos/%s/repo1/git/%s?token="+token, user.Name, ref) |
|
|
|
req = NewRequestf(t, "GET", "/api/v1/repos/%s/repo1/commits/%s?token="+token, user.Name, ref) |
|
|
|
session.MakeRequest(t, req, http.StatusOK) |
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK) |
|
|
|
|
|
|
|
commitByRef := new(api.Commit) |
|
|
|
|
|
|
|
DecodeJSON(t, resp, commitByRef) |
|
|
|
|
|
|
|
assert.Len(t, commitByRef.SHA, 40) |
|
|
|
|
|
|
|
assert.EqualValues(t, commitByRef.SHA, commitByRef.RepoCommit.Tree.SHA) |
|
|
|
|
|
|
|
req = NewRequestf(t, "GET", "/api/v1/repos/%s/repo1/git/commits/%s?token="+token, user.Name, commitByRef.SHA) |
|
|
|
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK) |
|
|
|
|
|
|
|
commitBySHA := new(api.Commit) |
|
|
|
|
|
|
|
DecodeJSON(t, resp, commitBySHA) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert.EqualValues(t, commitByRef.SHA, commitBySHA.SHA) |
|
|
|
|
|
|
|
assert.EqualValues(t, commitByRef.HTMLURL, commitBySHA.HTMLURL) |
|
|
|
|
|
|
|
assert.EqualValues(t, commitByRef.RepoCommit.Message, commitBySHA.RepoCommit.Message) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Test getting non-existent refs
|
|
|
|
|
|
|
|
req := NewRequestf(t, "GET", "/api/v1/repos/%s/repo1/git/commits/unknown?token="+token, user.Name) |
|
|
|
|
|
|
|
session.MakeRequest(t, req, http.StatusNotFound) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func TestAPIReposGitCommitList(t *testing.T) { |
|
|
|
func TestAPIReposGitCommitList(t *testing.T) { |
|
|
|