mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-05 09:18:07 -05:00
First test with local container of Bitbucket server
This commit is contained in:
parent
459d89fa44
commit
e83fdd057e
@ -20,18 +20,32 @@ func generateContextCanceled() context.Context {
|
|||||||
return ctx
|
return ctx
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func generateContext() context.Context {
|
||||||
|
basicAuth := BasicAuth{UserName: "admin", Password: "AdminPass"}
|
||||||
|
ctx, _ := context.WithTimeout(context.Background(), 5*time.Minute)
|
||||||
|
ctx = context.WithValue(ctx, ContextBasicAuth, basicAuth)
|
||||||
|
//defer cancel()
|
||||||
|
return ctx
|
||||||
|
}
|
||||||
|
|
||||||
func generateConfigFake() *APIClient {
|
func generateConfigFake() *APIClient {
|
||||||
return NewAPIClient(
|
return NewAPIClient(
|
||||||
generateContextCanceled(),
|
generateContextCanceled(),
|
||||||
NewConfiguration("https://stash.domain.com/rest"),
|
NewConfiguration("https://stash.domain.com/rest"),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func generateConfigRealLocalServer() *APIClient {
|
||||||
|
return NewAPIClient(
|
||||||
|
generateContext(),
|
||||||
|
NewConfiguration("http://localhost:7990/rest"),
|
||||||
|
)
|
||||||
|
}
|
||||||
func TestDefaultApiService_AddGroupToUser(t *testing.T) {
|
func TestDefaultApiService_AddGroupToUser(t *testing.T) {
|
||||||
type fields struct {
|
type fields struct {
|
||||||
client *APIClient
|
client *APIClient
|
||||||
}
|
}
|
||||||
type args struct {
|
type args struct {
|
||||||
ctx context.Context
|
|
||||||
}
|
}
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
name string
|
name string
|
||||||
@ -40,7 +54,7 @@ func TestDefaultApiService_AddGroupToUser(t *testing.T) {
|
|||||||
want *APIResponse
|
want *APIResponse
|
||||||
wantErr bool
|
wantErr bool
|
||||||
}{
|
}{
|
||||||
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{ctx: context.Background()}, &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},
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
@ -4087,6 +4101,15 @@ func TestDefaultApiService_GetSSHKeys(t *testing.T) {
|
|||||||
wantErr bool
|
wantErr 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},
|
||||||
|
{"realLocalServer", fields{client: generateConfigRealLocalServer()}, args{},
|
||||||
|
&APIResponse{Values: map[string]interface{}{
|
||||||
|
"size": float64(0),
|
||||||
|
"limit": float64(25),
|
||||||
|
"isLastPage": true,
|
||||||
|
"values": []interface{}{},
|
||||||
|
"start": float64(0),
|
||||||
|
}},
|
||||||
|
false},
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
@ -4098,6 +4121,7 @@ func TestDefaultApiService_GetSSHKeys(t *testing.T) {
|
|||||||
t.Errorf("DefaultApiService.GetSSHKeys() error = %v, wantErr %v", err, tt.wantErr)
|
t.Errorf("DefaultApiService.GetSSHKeys() error = %v, wantErr %v", err, tt.wantErr)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
got.Response = nil
|
||||||
if !reflect.DeepEqual(got, tt.want) {
|
if !reflect.DeepEqual(got, tt.want) {
|
||||||
t.Errorf("DefaultApiService.GetSSHKeys() = %v, want %v", got, tt.want)
|
t.Errorf("DefaultApiService.GetSSHKeys() = %v, want %v", got, tt.want)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user