diff --git a/.travis.yml b/.travis.yml index 9f90839..5f5b4ed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,11 +5,22 @@ go: - 1.14.x - master +services: + - docker + +before_install: + - docker pull gfleury/bb-demo:demo + - ddocker run -e BITBUCKET_HOME=/mnt --rm --name="bitbucket" -d -p 7990:7990 -p 7999:7999 gfleury/bb-demo:demo + - docker ps -a + - curl http://localhost:7990/mvc/login?nextUrl=/dashboard |grep "Log in"; while [ $? != 0 ]; do sleep 2; curl http://localhost:7990/mvc/login?nextUrl=/dashboard |grep "Log in"; done + + install: - go get -d -v . script: - go test + - INTEGRATION=TRUE go test - go build -v ./ - go get -u github.com/golangci/golangci-lint/cmd/golangci-lint && golangci-lint run -v diff --git a/default_api_test.go b/default_api_test.go index 1a6582f..e87f573 100644 --- a/default_api_test.go +++ b/default_api_test.go @@ -5,6 +5,7 @@ package bitbucketv1 import ( + "os" "reflect" "testing" "time" @@ -12,6 +13,12 @@ import ( "golang.org/x/net/context" ) +var runIntegrationTests bool + +func TestAAAAA(t *testing.T) { + runIntegrationTests = os.Getenv("INTEGRATION") == "TRUE" +} + func generateContextCanceled() context.Context { basicAuth := BasicAuth{UserName: "", Password: ""} ctx, cancel := context.WithTimeout(context.Background(), 1*time.Millisecond) @@ -48,15 +55,18 @@ func TestDefaultApiService_AddGroupToUser(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users/add-group: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users/add-group: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -81,15 +91,18 @@ func TestDefaultApiService_AddUserToGroup(t *testing.T) { ctx context.Context } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{ctx: context.Background()}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/groups/add-user: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{ctx: context.Background()}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/groups/add-user: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -114,15 +127,18 @@ func TestDefaultApiService_AddUserToGroups(t *testing.T) { ctx context.Context } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{ctx: context.Background()}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users/add-groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{ctx: context.Background()}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users/add-groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -147,15 +163,18 @@ func TestDefaultApiService_AddUsersToGroup(t *testing.T) { ctx context.Context } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{ctx: context.Background()}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/groups/add-users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{ctx: context.Background()}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/groups/add-users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -182,15 +201,18 @@ func TestDefaultApiService_Approve(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/approve: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/approve: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -217,15 +239,18 @@ func TestDefaultApiService_AssignParticipantRole(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/participants: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/participants: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -252,15 +277,18 @@ func TestDefaultApiService_CanMerge(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/merge: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/merge: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -284,15 +312,18 @@ func TestDefaultApiService_ClearSenderAddress(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/mail-server/sender-address: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/mail-server/sender-address: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -317,15 +348,18 @@ func TestDefaultApiService_ClearUserCaptchaChallenge(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/users/captcha: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/users/captcha: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -352,15 +386,18 @@ func TestDefaultApiService_CountPullRequestTasks(t *testing.T) { pullRequestId int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/tasks/count: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/tasks/count: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -387,15 +424,18 @@ func TestDefaultApiService_Create(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -421,15 +461,18 @@ func TestDefaultApiService_CreateBranch(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//branches: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//branches: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -457,15 +500,18 @@ func TestDefaultApiService_CreateComment(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//commits//comments: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//commits//comments: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -494,15 +540,18 @@ func TestDefaultApiService_CreateComment_1(t *testing.T) { localVarHTTPContentTypes []string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/comments: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/comments: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -527,15 +576,18 @@ func TestDefaultApiService_CreateGroup(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -559,15 +611,18 @@ func TestDefaultApiService_CreateProject(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + 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}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -592,15 +647,18 @@ func TestDefaultApiService_CreateRepository(t *testing.T) { projectKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -627,15 +685,18 @@ func TestDefaultApiService_CreateRepositoryWithOptions(t *testing.T) { localVarHTTPContentTypes []string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -662,15 +723,18 @@ func TestDefaultApiService_CreatePullRequestWithOptions(t *testing.T) { localVarPostBody interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -696,15 +760,18 @@ func TestDefaultApiService_CreateTag(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//tags: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//tags: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -728,15 +795,18 @@ func TestDefaultApiService_CreateTask(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/tasks: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/tasks: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -761,15 +831,18 @@ func TestDefaultApiService_CreateUser(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -797,15 +870,18 @@ func TestDefaultApiService_CreateWebhook(t *testing.T) { localVarHTTPContentTypes []string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//webhooks: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//webhooks: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -833,15 +909,18 @@ func TestDefaultApiService_Decline(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/decline: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/decline: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -868,15 +947,18 @@ func TestDefaultApiService_Delete(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -901,15 +983,18 @@ func TestDefaultApiService_DeleteAvatar(t *testing.T) { userSlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/users//avatar.png: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/users//avatar.png: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -938,15 +1023,18 @@ func TestDefaultApiService_DeleteComment(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//commits//comments/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//commits//comments/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -975,15 +1063,18 @@ func TestDefaultApiService_DeleteComment_2(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/comments/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/comments/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1008,15 +1099,18 @@ func TestDefaultApiService_DeleteGroup(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1040,15 +1134,18 @@ func TestDefaultApiService_DeleteMailConfig(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/mail-server: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/mail-server: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1073,15 +1170,18 @@ func TestDefaultApiService_DeleteProject(t *testing.T) { projectKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1107,15 +1207,18 @@ func TestDefaultApiService_DeleteRepository(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1142,15 +1245,18 @@ func TestDefaultApiService_DeleteRepositoryHook(t *testing.T) { hookKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1175,15 +1281,18 @@ func TestDefaultApiService_DeleteTask(t *testing.T) { taskId int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/tasks/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/tasks/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1208,15 +1317,18 @@ func TestDefaultApiService_DeleteUser(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1243,15 +1355,18 @@ func TestDefaultApiService_DeleteWebhook(t *testing.T) { webhookId int32 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1278,15 +1393,18 @@ func TestDefaultApiService_DisableHook(t *testing.T) { hookKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks//enabled: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks//enabled: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1312,15 +1430,18 @@ func TestDefaultApiService_DisableHook_3(t *testing.T) { hookKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//settings/hooks//enabled: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//settings/hooks//enabled: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1347,15 +1468,18 @@ func TestDefaultApiService_EditFile(t *testing.T) { path string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//browse/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//browse/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1383,15 +1507,18 @@ func TestDefaultApiService_EnableHook(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks//enabled: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks//enabled: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1419,15 +1546,18 @@ func TestDefaultApiService_EnableHook_4(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//settings/hooks//enabled: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//settings/hooks//enabled: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1452,15 +1582,18 @@ func TestDefaultApiService_FindGroupsForUser(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/users/more-members: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/users/more-members: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1485,15 +1618,18 @@ func TestDefaultApiService_FindOtherGroupsForUser(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/users/more-non-members: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/users/more-non-members: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1518,15 +1654,18 @@ func TestDefaultApiService_FindUsersInGroup(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/groups/more-members: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/groups/more-members: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1551,15 +1690,18 @@ func TestDefaultApiService_FindUsersNotInGroup(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/groups/more-non-members: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/groups/more-non-members: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1586,15 +1728,18 @@ func TestDefaultApiService_FindWebhooks(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//webhooks: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//webhooks: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1622,15 +1767,18 @@ func TestDefaultApiService_ForkRepository(t *testing.T) { localVarHTTPContentTypes []string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1654,15 +1802,18 @@ func TestDefaultApiService_Get(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/license: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/license: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1690,15 +1841,18 @@ func TestDefaultApiService_GetActivities(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/activities: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/activities: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1722,15 +1876,18 @@ func TestDefaultApiService_GetApplicationProperties(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/application-properties: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/application-properties: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1757,15 +1914,18 @@ func TestDefaultApiService_GetArchive(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//archive: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//archive: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1791,15 +1951,18 @@ func TestDefaultApiService_GetAvatar(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/hooks//avatar: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/hooks//avatar: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1826,15 +1989,18 @@ func TestDefaultApiService_GetBranches(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//branches: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//branches: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1862,15 +2028,18 @@ func TestDefaultApiService_GetChanges(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//changes: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//changes: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1898,15 +2067,18 @@ func TestDefaultApiService_GetChanges_5(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits//changes: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits//changes: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1934,15 +2106,18 @@ func TestDefaultApiService_GetComment(t *testing.T) { commentId int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits//comments/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits//comments/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -1970,15 +2145,18 @@ func TestDefaultApiService_GetComment_6(t *testing.T) { commentId int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/comments/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/comments/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2007,15 +2185,18 @@ func TestDefaultApiService_GetComments(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits//comments: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits//comments: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2043,15 +2224,18 @@ func TestDefaultApiService_GetComments_7(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/comments: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/comments: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2079,15 +2263,18 @@ func TestDefaultApiService_GetCommit(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2114,15 +2301,18 @@ func TestDefaultApiService_GetCommits(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2150,15 +2340,18 @@ func TestDefaultApiService_GetCommits_8(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/commits: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/commits: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2185,15 +2378,18 @@ func TestDefaultApiService_GetContent(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//browse: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//browse: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2221,15 +2417,18 @@ func TestDefaultApiService_GetContent_9(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//browse/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//browse/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2256,15 +2455,18 @@ func TestDefaultApiService_GetContent_10(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//raw: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//raw: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2292,15 +2494,18 @@ func TestDefaultApiService_GetContent_11(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//raw/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//raw/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2326,15 +2531,18 @@ func TestDefaultApiService_GetDefaultBranch(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//branches/default: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//branches/default: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2360,15 +2568,18 @@ func TestDefaultApiService_GetForkedRepositories(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//forks: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//forks: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2393,15 +2604,18 @@ func TestDefaultApiService_GetGroups(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2426,15 +2640,18 @@ func TestDefaultApiService_GetGroupsWithAnyPermission(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/permissions/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/permissions/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2460,15 +2677,18 @@ func TestDefaultApiService_GetGroupsWithAnyPermission_12(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//permissions/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//permissions/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2495,15 +2715,18 @@ func TestDefaultApiService_GetGroupsWithAnyPermission_13(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//permissions/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//permissions/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2528,15 +2751,18 @@ func TestDefaultApiService_GetGroupsWithoutAnyPermission(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/permissions/groups/none: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/permissions/groups/none: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2562,15 +2788,18 @@ func TestDefaultApiService_GetGroupsWithoutAnyPermission_14(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//permissions/groups/none: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//permissions/groups/none: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2597,15 +2826,18 @@ func TestDefaultApiService_GetGroupsWithoutAnyPermission_15(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//permissions/groups/none: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//permissions/groups/none: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2630,15 +2862,18 @@ func TestDefaultApiService_GetGroups_16(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2662,15 +2897,18 @@ func TestDefaultApiService_GetInformation(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/cluster: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/cluster: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2698,15 +2936,18 @@ func TestDefaultApiService_GetLatestInvocation(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0/latest: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0/latest: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2731,15 +2972,18 @@ func TestDefaultApiService_GetLevel(t *testing.T) { loggerName string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/logs/logger/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/logs/logger/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2763,15 +3007,18 @@ func TestDefaultApiService_GetMailConfig(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/mail-server: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/mail-server: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2796,15 +3043,18 @@ func TestDefaultApiService_GetMergeConfig(t *testing.T) { scmId string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/pull-requests/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/pull-requests/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2831,15 +3081,18 @@ func TestDefaultApiService_GetPullRequestsPage(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2864,15 +3117,18 @@ func TestDefaultApiService_GetProject(t *testing.T) { key string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{key: "7BprojectKey"}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects/7BprojectKey: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{key: "7BprojectKey"}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects/7BprojectKey: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2899,15 +3155,18 @@ func TestDefaultApiService_GetProjectAvatar(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//avatar.png: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//avatar.png: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2933,16 +3192,19 @@ func TestDefaultApiService_GetProjects(t *testing.T) { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ // Network errors - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{localVarOptionals: map[string]interface{}{}}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{localVarOptionals: map[string]interface{}{}}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -2966,15 +3228,18 @@ func TestDefaultApiService_GetPullRequestCount(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/inbox/pull-requests/count: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/inbox/pull-requests/count: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3000,15 +3265,18 @@ func TestDefaultApiService_GetPullRequestSettings(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//settings/pull-requests: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//settings/pull-requests: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3035,15 +3303,18 @@ func TestDefaultApiService_GetPullRequestSettings_17(t *testing.T) { scmId string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//settings/pull-requests/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//settings/pull-requests/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3068,15 +3339,18 @@ func TestDefaultApiService_GetPullRequestSuggestions(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/dashboard/pull-request-suggestions: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/dashboard/pull-request-suggestions: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3103,15 +3377,18 @@ func TestDefaultApiService_GetPullRequestTasks(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/tasks: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/tasks: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3136,15 +3413,18 @@ func TestDefaultApiService_GetPullRequests(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/dashboard/pull-requests: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/dashboard/pull-requests: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3169,15 +3449,18 @@ func TestDefaultApiService_GetPullRequests_18(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/inbox/pull-requests: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/inbox/pull-requests: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3203,15 +3486,18 @@ func TestDefaultApiService_GetRelatedRepositories(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//related: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//related: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3236,15 +3522,18 @@ func TestDefaultApiService_GetRepositories(t *testing.T) { projectKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3270,15 +3559,18 @@ func TestDefaultApiService_GetRepositoriesWithOptions(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3303,15 +3595,18 @@ func TestDefaultApiService_GetRepositoriesRecentlyAccessed(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/profile/recent/repos: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/profile/recent/repos: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3336,15 +3631,18 @@ func TestDefaultApiService_GetRepositories_19(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/repos: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/repos: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3370,15 +3668,18 @@ func TestDefaultApiService_GetRepository(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3404,15 +3705,18 @@ func TestDefaultApiService_GetUserRepository(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/users//repos/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/users//repos/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3439,15 +3743,18 @@ func TestDefaultApiService_GetPullRequest(t *testing.T) { pullRequestID int } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3474,15 +3781,18 @@ func TestDefaultApiService_GetPullRequestActivity(t *testing.T) { pullRequestID int } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/activities: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/activities: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3510,15 +3820,18 @@ func TestDefaultApiService_GetPullRequestActivityWithOptions(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/activities: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/activities: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3545,15 +3858,18 @@ func TestDefaultApiService_GetPullRequestCommits(t *testing.T) { pullRequestID int } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/commits: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/commits: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3581,15 +3897,18 @@ func TestDefaultApiService_GetPullRequestCommitsWithOptions(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/commits: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/commits: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3614,15 +3933,18 @@ func TestDefaultApiService_GetCommitBuildStatuses(t *testing.T) { commitSHA string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/build-status/1.0/commits/: context canceled"}, true}, + {"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 { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3649,15 +3971,18 @@ func TestDefaultApiService_GetRepositoryHook(t *testing.T) { hookKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3684,15 +4009,18 @@ func TestDefaultApiService_GetRepositoryHook_20(t *testing.T) { hookKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//settings/hooks/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//settings/hooks/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3719,15 +4047,18 @@ func TestDefaultApiService_GetRepositoryHooks(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3753,15 +4084,18 @@ func TestDefaultApiService_GetRepositoryHooks_21(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//settings/hooks: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//settings/hooks: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3785,15 +4119,18 @@ func TestDefaultApiService_GetRootLevel(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/logs/rootLogger: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/logs/rootLogger: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3817,15 +4154,18 @@ func TestDefaultApiService_GetSenderAddress(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/mail-server/sender-address: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/mail-server/sender-address: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3852,15 +4192,18 @@ func TestDefaultApiService_GetSettings(t *testing.T) { hookKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks//settings: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks//settings: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3887,15 +4230,18 @@ func TestDefaultApiService_GetSettings_22(t *testing.T) { hookKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//settings/hooks//settings: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//settings/hooks//settings: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3923,15 +4269,18 @@ func TestDefaultApiService_GetStatistics(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0/statistics: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0/statistics: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3958,15 +4307,18 @@ func TestDefaultApiService_GetStatisticsSummary(t *testing.T) { webhookId int32 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0/statistics/summary: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0/statistics/summary: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -3993,15 +4345,18 @@ func TestDefaultApiService_GetTag(t *testing.T) { name string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//tags/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//tags/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4028,15 +4383,18 @@ func TestDefaultApiService_GetTags(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//tags: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//tags: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4061,15 +4419,18 @@ func TestDefaultApiService_GetTask(t *testing.T) { taskId int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/tasks/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/tasks/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4094,13 +4455,13 @@ func TestDefaultApiService_GetSSHKeys(t *testing.T) { user string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/ssh/1.0/keys: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/ssh/1.0/keys: context canceled"}, true, false}, {"realLocalServer", fields{client: generateConfigRealLocalServer()}, args{}, &APIResponse{Values: map[string]interface{}{ "size": float64(0), @@ -4109,9 +4470,12 @@ func TestDefaultApiService_GetSSHKeys(t *testing.T) { "values": []interface{}{}, "start": float64(0), }}, - false}, + false, true}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4137,15 +4501,18 @@ func TestDefaultApiService_CreateSSHKey(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/ssh/1.0/keys: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/ssh/1.0/keys: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4170,15 +4537,18 @@ func TestDefaultApiService_GetUser(t *testing.T) { username string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/users/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/users/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4203,15 +4573,18 @@ func TestDefaultApiService_GetUserSettings(t *testing.T) { userSlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/users//settings: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/users//settings: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4236,15 +4609,18 @@ func TestDefaultApiService_GetUsers(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4269,15 +4645,18 @@ func TestDefaultApiService_GetUsersWithAnyPermission(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/permissions/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/permissions/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4303,15 +4682,18 @@ func TestDefaultApiService_GetUsersWithAnyPermission_23(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//permissions/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//permissions/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4338,15 +4720,18 @@ func TestDefaultApiService_GetUsersWithAnyPermission_24(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//permissions/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//permissions/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4371,15 +4756,18 @@ func TestDefaultApiService_GetUsersWithoutAnyPermission(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/permissions/users/none: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/admin/permissions/users/none: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4406,15 +4794,18 @@ func TestDefaultApiService_GetUsersWithoutPermission(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//permissions/users/none: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//permissions/users/none: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4441,15 +4832,18 @@ func TestDefaultApiService_GetUsersWithoutPermission_25(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//permissions/users/none: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//permissions/users/none: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4473,15 +4867,18 @@ func TestDefaultApiService_GetUsers_26(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4509,15 +4906,18 @@ func TestDefaultApiService_GetWebhook(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4544,15 +4944,18 @@ func TestDefaultApiService_Get_27(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4578,15 +4981,18 @@ func TestDefaultApiService_HasAllUserPermission(t *testing.T) { permission string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//permissions//all: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//permissions//all: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4614,15 +5020,18 @@ func TestDefaultApiService_ListParticipants(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/participants: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/participants: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4652,15 +5061,18 @@ func TestDefaultApiService_Merge(t *testing.T) { localVarHTTPContentTypes []string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/merge: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/merge: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4689,15 +5101,18 @@ func TestDefaultApiService_ModifyAllUserPermission(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//permissions//all: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//permissions//all: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4722,15 +5137,18 @@ func TestDefaultApiService_Preview(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/markup/preview: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/markup/preview: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4754,15 +5172,18 @@ func TestDefaultApiService_RemoveGroupFromUser(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users/remove-group: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users/remove-group: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4786,15 +5207,18 @@ func TestDefaultApiService_RemoveUserFromGroup(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/groups/remove-user: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/groups/remove-user: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4818,15 +5242,18 @@ func TestDefaultApiService_RenameUser(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users/rename: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/users/rename: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4854,15 +5281,18 @@ func TestDefaultApiService_Reopen(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/reopen: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/reopen: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4888,15 +5318,18 @@ func TestDefaultApiService_RetryCreateRepository(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//recreate: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//recreate: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4921,15 +5354,18 @@ func TestDefaultApiService_RevokePermissionsForGroup(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/permissions/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/permissions/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4955,15 +5391,18 @@ func TestDefaultApiService_RevokePermissionsForGroup_28(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//permissions/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//permissions/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -4990,15 +5429,18 @@ func TestDefaultApiService_RevokePermissionsForGroup_29(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//permissions/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//permissions/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5023,15 +5465,18 @@ func TestDefaultApiService_RevokePermissionsForUser(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/permissions/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/admin/permissions/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5057,15 +5502,18 @@ func TestDefaultApiService_RevokePermissionsForUser_30(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//permissions/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//permissions/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5092,15 +5540,18 @@ func TestDefaultApiService_RevokePermissionsForUser_31(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//permissions/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//permissions/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5127,15 +5578,18 @@ func TestDefaultApiService_Search(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//participants: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//participants: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5161,15 +5615,18 @@ func TestDefaultApiService_SetDefaultBranch(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//branches/default: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//branches/default: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5195,15 +5652,18 @@ func TestDefaultApiService_SetLevel(t *testing.T) { loggerName string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/logs/logger//: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/logs/logger//: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5227,15 +5687,18 @@ func TestDefaultApiService_SetMailConfig(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/mail-server: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/mail-server: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5260,15 +5723,18 @@ func TestDefaultApiService_SetMergeConfig(t *testing.T) { scmId string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/pull-requests/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/pull-requests/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5295,15 +5761,18 @@ func TestDefaultApiService_SetPermissionForGroup(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//permissions/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//permissions/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5328,15 +5797,18 @@ func TestDefaultApiService_SetPermissionForGroups(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/permissions/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/permissions/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5362,15 +5834,18 @@ func TestDefaultApiService_SetPermissionForGroups_32(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//permissions/groups: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//permissions/groups: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5397,15 +5872,18 @@ func TestDefaultApiService_SetPermissionForUser(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//permissions/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//permissions/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5430,15 +5908,18 @@ func TestDefaultApiService_SetPermissionForUsers(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/permissions/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/permissions/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5464,15 +5945,18 @@ func TestDefaultApiService_SetPermissionForUsers_33(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//permissions/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//permissions/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5497,15 +5981,18 @@ func TestDefaultApiService_SetRootLevel(t *testing.T) { levelName string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/logs/rootLogger/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/logs/rootLogger/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5529,15 +6016,18 @@ func TestDefaultApiService_SetSenderAddress(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/mail-server/sender-address: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/mail-server/sender-address: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5564,15 +6054,18 @@ func TestDefaultApiService_SetSettings(t *testing.T) { hookKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks//settings: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//settings/hooks//settings: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5599,15 +6092,18 @@ func TestDefaultApiService_SetSettings_34(t *testing.T) { hookKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//settings/hooks//settings: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//settings/hooks//settings: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5634,15 +6130,18 @@ func TestDefaultApiService_Stream(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//last-modified: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//last-modified: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5669,15 +6168,18 @@ func TestDefaultApiService_StreamChanges(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//compare/changes: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//compare/changes: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5705,15 +6207,18 @@ func TestDefaultApiService_StreamChanges_35(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/changes: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/changes: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5740,15 +6245,18 @@ func TestDefaultApiService_StreamCommits(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//compare/commits: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//compare/commits: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5776,15 +6284,18 @@ func TestDefaultApiService_StreamDiff(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits//diff: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits//diff: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5813,15 +6324,18 @@ func TestDefaultApiService_StreamDiff_36(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits//diff/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//commits//diff/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5849,15 +6363,18 @@ func TestDefaultApiService_StreamDiff_37(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//compare/diff: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//compare/diff: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5884,15 +6401,18 @@ func TestDefaultApiService_StreamDiff_38(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//diff: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//diff: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5920,15 +6440,18 @@ func TestDefaultApiService_StreamDiff_39(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//diff/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//diff/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5956,19 +6479,22 @@ func TestDefaultApiService_GetPullRequestDiff(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{ projectKey: "projectKey", repositorySlug: "repositorySlug", pullRequestID: 1, - }, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects/projectKey/repos/repositorySlug/pull-requests/1/diff: context canceled"}, true}, + }, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects/projectKey/repos/repositorySlug/pull-requests/1/diff: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -5997,15 +6523,18 @@ func TestDefaultApiService_StreamDiff_41(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/diff/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/diff/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6032,15 +6561,18 @@ func TestDefaultApiService_StreamFiles(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//files: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//files: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6068,15 +6600,18 @@ func TestDefaultApiService_StreamFiles_42(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//files/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//files/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6104,15 +6639,18 @@ func TestDefaultApiService_Stream_43(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//last-modified/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//last-modified/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6139,15 +6677,18 @@ func TestWebhook(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/test: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/test: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6175,15 +6716,18 @@ func TestDefaultApiService_UnassignParticipantRole(t *testing.T) { localVarOptionals map[string]interface{} } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/participants: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/participants: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6211,15 +6755,18 @@ func TestDefaultApiService_UnassignParticipantRole_44(t *testing.T) { userSlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/participants/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/participants/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6246,15 +6793,18 @@ func TestDefaultApiService_Unwatch(t *testing.T) { commitId string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//commits//watch: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//commits//watch: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6281,15 +6831,18 @@ func TestDefaultApiService_Unwatch_45(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/watch: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/watch: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6313,15 +6866,18 @@ func TestDefaultApiService_Update(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/license: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/admin/license: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6349,15 +6905,18 @@ func TestDefaultApiService_UpdateComment(t *testing.T) { commentId int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//commits//comments/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//commits//comments/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6385,15 +6944,18 @@ func TestDefaultApiService_UpdateComment_46(t *testing.T) { commentId int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/comments/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/comments/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6418,15 +6980,18 @@ func TestDefaultApiService_UpdateProject(t *testing.T) { projectKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6452,15 +7017,18 @@ func TestDefaultApiService_UpdatePullRequestSettings(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//settings/pull-requests: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//settings/pull-requests: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6487,15 +7055,18 @@ func TestDefaultApiService_UpdatePullRequestSettings_47(t *testing.T) { scmId string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//settings/pull-requests/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//settings/pull-requests/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6521,15 +7092,18 @@ func TestDefaultApiService_UpdateRepository(t *testing.T) { repositorySlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6557,15 +7131,18 @@ func TestDefaultApiService_UpdateRepositoryWithOptions(t *testing.T) { localVarHTTPContentTypes []string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6590,15 +7167,18 @@ func TestDefaultApiService_UpdateSettings(t *testing.T) { userSlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/users//settings: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/users//settings: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6626,15 +7206,18 @@ func TestDefaultApiService_UpdateStatus(t *testing.T) { userSlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/participants/: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/participants/: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6659,15 +7242,18 @@ func TestDefaultApiService_UpdateTask(t *testing.T) { taskId int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/tasks/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/tasks/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6691,15 +7277,18 @@ func TestDefaultApiService_UpdateUserDetails(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6723,15 +7312,18 @@ func TestDefaultApiService_UpdateUserDetails_48(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/users: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/users: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6755,15 +7347,18 @@ func TestDefaultApiService_UpdateUserPassword(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/users/credentials: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/admin/users/credentials: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6787,15 +7382,18 @@ func TestDefaultApiService_UpdateUserPassword_49(t *testing.T) { type args struct { } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/users/credentials: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/users/credentials: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6824,15 +7422,18 @@ func TestDefaultApiService_UpdateWebhook(t *testing.T) { localVarHTTPContentTypes []string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//webhooks/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6859,15 +7460,18 @@ func TestDefaultApiService_Update_50(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Put https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6892,15 +7496,18 @@ func TestDefaultApiService_UploadAvatar(t *testing.T) { projectKey string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//avatar.png: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//avatar.png: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6925,15 +7532,18 @@ func TestDefaultApiService_UploadAvatar_51(t *testing.T) { userSlug string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/users//avatar.png: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/users//avatar.png: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6960,15 +7570,18 @@ func TestDefaultApiService_Watch(t *testing.T) { commitId string } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//commits//watch: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//commits//watch: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -6995,15 +7608,18 @@ func TestDefaultApiService_Watch_52(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/watch: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Post https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/watch: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, @@ -7030,15 +7646,18 @@ func TestDefaultApiService_WithdrawApproval(t *testing.T) { pullRequestID int64 } tests := []struct { - name string - fields fields - args args - want *APIResponse - wantErr bool + name string + fields fields + args args + want *APIResponse + wantErr, integrationTest bool }{ - {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/approve: context canceled"}, true}, + {"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Delete https://stash.domain.com/rest/api/1.0/projects//repos//pull-requests/0/approve: context canceled"}, true, false}, } for _, tt := range tests { + if tt.integrationTest != runIntegrationTests { + continue + } t.Run(tt.name, func(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client,