Merge pull request #52 from gfleury/ParseError

Adding error parser
This commit is contained in:
George Fleury 2020-03-17 11:25:09 -03:00 committed by GitHub
commit 672adbf0aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 458 additions and 407 deletions

View File

@ -6,6 +6,7 @@ package bitbucketv1
import ( import (
"encoding/json" "encoding/json"
"fmt"
"io/ioutil" "io/ioutil"
"net/http" "net/http"
"strings" "strings"
@ -492,9 +493,14 @@ func NewAPIResponse(r *http.Response) *APIResponse {
} }
// NewAPIResponseWithError create new erroneous API response from http.response and error // NewAPIResponseWithError create new erroneous API response from http.response and error
func NewAPIResponseWithError(r *http.Response, err error) (*APIResponse, error) { func NewAPIResponseWithError(r *http.Response, bodyBytes []byte, err error) (*APIResponse, error) {
response := &APIResponse{Response: r, Message: strings.Replace(err.Error(), "\"", "", -1)} response := &APIResponse{Response: r, Message: strings.Replace(err.Error(), "\"", "", -1)}
if bodyBytes != nil {
parseErr := json.Unmarshal(bodyBytes, &response.Values)
if parseErr != nil {
err = fmt.Errorf("%s ParseError: %v", err.Error(), parseErr)
}
}
return response, err return response, err
} }

View File

@ -826,6 +826,7 @@ func TestNewAPIResponse(t *testing.T) {
func TestNewAPIResponseWithError(t *testing.T) { func TestNewAPIResponseWithError(t *testing.T) {
type args struct { type args struct {
r *http.Response r *http.Response
b []byte
err error err error
} }
tests := []struct { tests := []struct {
@ -838,7 +839,7 @@ func TestNewAPIResponseWithError(t *testing.T) {
} }
for _, tt := range tests { for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) { t.Run(tt.name, func(t *testing.T) {
got, err := NewAPIResponseWithError(tt.args.r, tt.args.err) got, err := NewAPIResponseWithError(tt.args.r, tt.args.b, tt.args.err)
if (err != nil) != tt.wantErr { if (err != nil) != tt.wantErr {
t.Errorf("NewAPIResponseWithError() error = %v, wantErr %v", err, tt.wantErr) t.Errorf("NewAPIResponseWithError() error = %v, wantErr %v", err, tt.wantErr)
return return

File diff suppressed because it is too large Load Diff

View File

@ -436,7 +436,17 @@ func TestDefaultApiService_Create(t *testing.T) {
repositorySlug: "repo1", repositorySlug: "repo1",
localVarOptionals: map[string]interface{}{"values": "values"}}, localVarOptionals: map[string]interface{}{"values": "values"}},
&APIResponse{ &APIResponse{
Message: "Status: 400 , Body: {errors:[{context:null,message:title must be supplied for this request,exceptionName:null}]}"}, Message: "Status: 400 , Body: {errors:[{context:null,message:title must be supplied for this request,exceptionName:null}]}",
Values: map[string]interface{}{
"errors": []interface{}{
map[string]interface{}{
"context": nil,
"message": "title must be supplied for this request",
"exceptionName": nil,
},
},
},
},
true, true}, true, true},
{"ValidRequestNoBranch", fields{client: generateConfigRealLocalServer()}, {"ValidRequestNoBranch", fields{client: generateConfigRealLocalServer()},
args{projectKey: "PROJ", args{projectKey: "PROJ",
@ -469,7 +479,17 @@ func TestDefaultApiService_Create(t *testing.T) {
}, },
}, },
&APIResponse{ &APIResponse{
Message: `Status: 404 , Body: {errors:[{context:null,message:Repository \repo1\ of project with key \PROJ\ has no branch \refs/heads/feature\,exceptionName:com.atlassian.bitbucket.commit.NoSuchCommitException}]}`}, Message: `Status: 404 , Body: {errors:[{context:null,message:Repository \repo1\ of project with key \PROJ\ has no branch \refs/heads/feature\,exceptionName:com.atlassian.bitbucket.commit.NoSuchCommitException}]}`,
Values: map[string]interface{}{
"errors": []interface{}{
map[string]interface{}{
"context": nil,
"message": "Repository \"repo1\" of project with key \"PROJ\" has no branch \"refs/heads/feature\"",
"exceptionName": "com.atlassian.bitbucket.commit.NoSuchCommitException",
},
},
},
},
true, true}, true, true},
} }
for _, tt := range tests { for _, tt := range tests {
@ -516,7 +536,17 @@ func TestDefaultApiService_CreatePullRequest(t *testing.T) {
localVarOptionals: PullRequest{}, localVarOptionals: PullRequest{},
}, },
&APIResponse{ &APIResponse{
Message: "Status: 400 , Body: {errors:[{context:null,message:title must be supplied for this request,exceptionName:null}]}"}, Message: "Status: 400 , Body: {errors:[{context:null,message:title must be supplied for this request,exceptionName:null}]}",
Values: map[string]interface{}{
"errors": []interface{}{
map[string]interface{}{
"context": nil,
"message": "title must be supplied for this request",
"exceptionName": nil,
},
},
},
},
true, true}, true, true},
{"ValidRequestNoBranch", fields{client: generateConfigRealLocalServer()}, {"ValidRequestNoBranch", fields{client: generateConfigRealLocalServer()},
args{projectKey: "PROJ", args{projectKey: "PROJ",
@ -548,7 +578,17 @@ func TestDefaultApiService_CreatePullRequest(t *testing.T) {
Locked: false, Locked: false,
}, },
}, },
&APIResponse{Message: `Status: 404 , Body: {errors:[{context:null,message:Repository \repo1\ of project with key \PROJ\ has no branch \refs/heads/feature\,exceptionName:com.atlassian.bitbucket.commit.NoSuchCommitException}]}`}, &APIResponse{Message: `Status: 404 , Body: {errors:[{context:null,message:Repository \repo1\ of project with key \PROJ\ has no branch \refs/heads/feature\,exceptionName:com.atlassian.bitbucket.commit.NoSuchCommitException}]}`,
Values: map[string]interface{}{
"errors": []interface{}{
map[string]interface{}{
"context": nil,
"message": "Repository \"repo1\" of project with key \"PROJ\" has no branch \"refs/heads/feature\"",
"exceptionName": "com.atlassian.bitbucket.commit.NoSuchCommitException",
},
},
},
},
true, true}, true, true},
} }
for _, tt := range tests { for _, tt := range tests {