handle CreateUser empty body response

This commit is contained in:
danilopopeye 2020-08-07 17:31:00 -03:00 committed by Danilo Gonçalves
parent a1f7d4e0d6
commit 7758229a74
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 {