Merge pull request #65 from yahavi/commit-status

Fix set and get commit status
This commit is contained in:
George Fleury 2021-08-26 18:30:55 +02:00 committed by GitHub
commit dff2223ade
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -13562,7 +13562,7 @@ func (a *DefaultApiService) GetCommitStatus(commitId string) (*APIResponse, erro
)
// create path and map variables
localVarPath := a.client.cfg.BasePath + "/rest/build-status/1.0/commits/{commitId}"
localVarPath := a.client.cfg.BasePath + "/build-status/1.0/commits/{commitId}"
localVarPath = strings.Replace(localVarPath, "{"+"commitId"+"}", fmt.Sprintf("%v", commitId), -1)
localVarHeaderParams := make(map[string]string)
@ -13682,7 +13682,7 @@ func (a *DefaultApiService) SetCommitStatus(commitId string, buildStatus BuildSt
)
// create path and map variables
localVarPath := a.client.cfg.BasePath + "/rest/build-status/1.0/commits/{commitId}"
localVarPath := a.client.cfg.BasePath + "/build-status/1.0/commits/{commitId}"
localVarPath = strings.Replace(localVarPath, "{"+"commitId"+"}", fmt.Sprintf("%v", commitId), -1)
localVarHeaderParams := make(map[string]string)
@ -13723,7 +13723,7 @@ func (a *DefaultApiService) SetCommitStatus(commitId string, buildStatus BuildSt
return NewAPIResponseWithError(localVarHTTPResponse, bodyBytes, reportError("Status: %v, Body: %s", localVarHTTPResponse.Status, bodyBytes))
}
return NewBitbucketAPIResponse(localVarHTTPResponse)
return NewAPIResponse(localVarHTTPResponse), nil
}
/*

View File

@ -8060,7 +8060,7 @@ func TestDefaultApiService_GetCommitStatus(t *testing.T) {
want *APIResponse
wantErr, integrationTest bool
}{
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/rest/build-status/1.0/commits/: context canceled"}, true, false},
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/build-status/1.0/commits/: context canceled"}, true, false},
}
for _, tt := range tests {
if tt.integrationTest != runIntegrationTests {
@ -8133,7 +8133,7 @@ func TestDefaultApiService_SetCommitStatus(t *testing.T) {
want *APIResponse
wantErr, integrationTest bool
}{
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/rest/build-status/1.0/commits/: context canceled"}, true, false},
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/build-status/1.0/commits/: context canceled"}, true, false},
}
for _, tt := range tests {
if tt.integrationTest != runIntegrationTests {