Merge pull request #56 from danilopopeye/feature/handle-create-user-response

handle `CreateUser` empty body response
This commit is contained in:
George Fleury 2020-08-10 14:57:49 +02:00 committed by GitHub
commit ae4ad57f4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -1264,7 +1264,8 @@ func (a *DefaultApiService) CreateUser(localVarOptionals map[string]interface{})
return NewAPIResponseWithError(localVarHTTPResponse, bodyBytes, reportError("Status: %v, Body: %s", localVarHTTPResponse.Status, bodyBytes)) return NewAPIResponseWithError(localVarHTTPResponse, bodyBytes, reportError("Status: %v, Body: %s", localVarHTTPResponse.Status, bodyBytes))
} }
return NewBitbucketAPIResponse(localVarHTTPResponse) // No body parsing (a successful 204 response has no content)
return NewAPIResponse(localVarHTTPResponse), nil
} }
/* DefaultApiService /* DefaultApiService

View File

@ -1003,6 +1003,7 @@ func TestDefaultApiService_CreateUser(t *testing.T) {
wantErr, integrationTest bool wantErr, integrationTest bool
}{ }{
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users: context canceled"}, true, false}, {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users: context canceled"}, true, false},
{"GoodUser", fields{client: generateConfigFake()}, args{localVarOptionals: map[string]interface{}{"name": "username"}}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users?name=username: context canceled"}, true, false},
} }
for _, tt := range tests { for _, tt := range tests {
if tt.integrationTest != runIntegrationTests { if tt.integrationTest != runIntegrationTests {