From d6503a151cdfda59c2d4770d9198ca30b647af2d Mon Sep 17 00:00:00 2001 From: rigolden Date: Mon, 27 Jul 2020 10:41:44 -0300 Subject: [PATCH 1/4] fix: project api methods --- default_api.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/default_api.go b/default_api.go index 137f4df..9186d2e 100644 --- a/default_api.go +++ b/default_api.go @@ -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. @return */ -func (a *DefaultApiService) CreateProject() (*APIResponse, error) { +func (a *DefaultApiService) CreateProject(localVarPostBody interface{}) (*APIResponse, error) { var ( localVarHTTPMethod = strings.ToUpper("Post") - localVarPostBody interface{} localVarFileName string localVarFileBytes []byte ) From 9860b0c19e946ad8c68a514e57df64fc1daaed84 Mon Sep 17 00:00:00 2001 From: rigolden Date: Mon, 27 Jul 2020 12:16:54 -0300 Subject: [PATCH 2/4] fix: project api tests --- default_api_test.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/default_api_test.go b/default_api_test.go index 125b03f..cdb2e11 100644 --- a/default_api_test.go +++ b/default_api_test.go @@ -772,6 +772,7 @@ func TestDefaultApiService_CreateProject(t *testing.T) { client *APIClient } type args struct { + body interface{} } tests := []struct { name string @@ -780,7 +781,7 @@ func TestDefaultApiService_CreateProject(t *testing.T) { want *APIResponse 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{struct{}{}}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects: context canceled"}, true, false}, } for _, tt := range tests { if tt.integrationTest != runIntegrationTests { @@ -790,7 +791,7 @@ func TestDefaultApiService_CreateProject(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, } - got, err := a.CreateProject() + got, err := a.CreateProject(tt.args.body) if (err != nil) != tt.wantErr { t.Errorf("DefaultApiService.CreateProject() error = %v, wantErr %v", err, tt.wantErr) return @@ -8071,7 +8072,7 @@ func TestDefaultApiService_SearchCode(t *testing.T) { }, }, false, - false, + true, }, } for _, tt := range tests { From 72cab483dfb9e9be0b83031e733370fcc444466c Mon Sep 17 00:00:00 2001 From: rigolden Date: Mon, 27 Jul 2020 14:21:46 -0300 Subject: [PATCH 3/4] fix: input to CreateProject test --- default_api_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default_api_test.go b/default_api_test.go index cdb2e11..c1c2d49 100644 --- a/default_api_test.go +++ b/default_api_test.go @@ -772,7 +772,7 @@ func TestDefaultApiService_CreateProject(t *testing.T) { client *APIClient } type args struct { - body interface{} + body Project } tests := []struct { name string @@ -781,7 +781,7 @@ func TestDefaultApiService_CreateProject(t *testing.T) { want *APIResponse wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{struct{}{}}, &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 { if tt.integrationTest != runIntegrationTests { From 479bf9f8ea4d2556e75314fbf571c8b7ba585f91 Mon Sep 17 00:00:00 2001 From: rigolden Date: Mon, 27 Jul 2020 14:39:30 -0300 Subject: [PATCH 4/4] fix: concrete Project input to CreateProject --- default_api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default_api.go b/default_api.go index 9186d2e..2c574f1 100644 --- a/default_api.go +++ b/default_api.go @@ -899,7 +899,7 @@ 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. @return */ -func (a *DefaultApiService) CreateProject(localVarPostBody interface{}) (*APIResponse, error) { +func (a *DefaultApiService) CreateProject(localVarPostBody Project) (*APIResponse, error) { var ( localVarHTTPMethod = strings.ToUpper("Post") localVarFileName string