Merge pull request #55 from ribaptista/master

Body argument to CreateProject
This commit is contained in:
George Fleury 2020-07-28 21:37:22 +02:00 committed by GitHub
commit a1f7d4e0d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -899,10 +899,9 @@ func (a *DefaultApiService) CreateGroup(localVarOptionals map[string]interface{}
Create a new project. <p> To include a custom avatar for the project, the project definition should contain an additional attribute with the key <code>avatar</code> and the value a data URI containing Base64-encoded image data. The URI should be in the following format: <pre> data:(content type, e.g. image/png);base64,(data) </pre> If the data is not Base64-encoded, or if a character set is defined in the URI, or the URI is otherwise invalid, <em>project creation will fail</em>. <p> The authenticated user must have <strong>PROJECT_CREATE</strong> permission to call this resource. Create a new project. <p> To include a custom avatar for the project, the project definition should contain an additional attribute with the key <code>avatar</code> and the value a data URI containing Base64-encoded image data. The URI should be in the following format: <pre> data:(content type, e.g. image/png);base64,(data) </pre> If the data is not Base64-encoded, or if a character set is defined in the URI, or the URI is otherwise invalid, <em>project creation will fail</em>. <p> The authenticated user must have <strong>PROJECT_CREATE</strong> permission to call this resource.
@return */ @return */
func (a *DefaultApiService) CreateProject() (*APIResponse, error) { func (a *DefaultApiService) CreateProject(localVarPostBody Project) (*APIResponse, error) {
var ( var (
localVarHTTPMethod = strings.ToUpper("Post") localVarHTTPMethod = strings.ToUpper("Post")
localVarPostBody interface{}
localVarFileName string localVarFileName string
localVarFileBytes []byte localVarFileBytes []byte
) )

View File

@ -772,6 +772,7 @@ func TestDefaultApiService_CreateProject(t *testing.T) {
client *APIClient client *APIClient
} }
type args struct { type args struct {
body Project
} }
tests := []struct { tests := []struct {
name string name string
@ -780,7 +781,7 @@ func TestDefaultApiService_CreateProject(t *testing.T) {
want *APIResponse want *APIResponse
wantErr, integrationTest bool wantErr, integrationTest bool
}{ }{
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects: context canceled"}, true, false}, {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{Project{}}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects: context canceled"}, true, false},
} }
for _, tt := range tests { for _, tt := range tests {
if tt.integrationTest != runIntegrationTests { if tt.integrationTest != runIntegrationTests {
@ -790,7 +791,7 @@ func TestDefaultApiService_CreateProject(t *testing.T) {
a := &DefaultApiService{ a := &DefaultApiService{
client: tt.fields.client, client: tt.fields.client,
} }
got, err := a.CreateProject() got, err := a.CreateProject(tt.args.body)
if (err != nil) != tt.wantErr { if (err != nil) != tt.wantErr {
t.Errorf("DefaultApiService.CreateProject() error = %v, wantErr %v", err, tt.wantErr) t.Errorf("DefaultApiService.CreateProject() error = %v, wantErr %v", err, tt.wantErr)
return return
@ -8071,7 +8072,7 @@ func TestDefaultApiService_SearchCode(t *testing.T) {
}, },
}, },
false, false,
false, true,
}, },
} }
for _, tt := range tests { for _, tt := range tests {