mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
improve test
This commit is contained in:
parent
4880bdf0b7
commit
b5aee2ce51
@ -2365,13 +2365,52 @@ func TestDefaultApiService_GetBranchesPagination(t *testing.T) {
|
|||||||
context.TODO(),
|
context.TODO(),
|
||||||
NewConfiguration(ts.URL),
|
NewConfiguration(ts.URL),
|
||||||
)
|
)
|
||||||
_, err := client.DefaultApi.GetBranches("PROJECT", "REPO", map[string]interface{}{
|
type fields struct {
|
||||||
"limit": 100,
|
client *APIClient
|
||||||
"start": 0,
|
}
|
||||||
})
|
type args struct {
|
||||||
if err != nil {
|
project string
|
||||||
t.Errorf("DefaultApiService.GetBranches() error = %v", err)
|
repository string
|
||||||
return
|
localVarOptionals map[string]interface{}
|
||||||
|
}
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
fields fields
|
||||||
|
args args
|
||||||
|
want *APIResponse
|
||||||
|
wantErr, integrationTest bool
|
||||||
|
}{
|
||||||
|
{"limitAndStartSet", fields{client: client}, args{
|
||||||
|
project: "PROJECT", repository: "REPO",
|
||||||
|
localVarOptionals: map[string]interface{}{
|
||||||
|
"limit": 100,
|
||||||
|
"start": 0,
|
||||||
|
}}, nil, false, false},
|
||||||
|
{"incorrectLimit", fields{client: client}, args{
|
||||||
|
project: "PROJECT", repository: "REPO",
|
||||||
|
localVarOptionals: map[string]interface{}{
|
||||||
|
"limit": "wrong",
|
||||||
|
}}, nil, true, false},
|
||||||
|
{"incorrectStart", fields{client: client}, args{
|
||||||
|
project: "PROJECT", repository: "REPO",
|
||||||
|
localVarOptionals: map[string]interface{}{
|
||||||
|
"start": "wrong",
|
||||||
|
}}, nil, 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,
|
||||||
|
}
|
||||||
|
_, err := a.GetBranches(tt.args.project, tt.args.repository, tt.args.localVarOptionals)
|
||||||
|
if (err != nil) != tt.wantErr {
|
||||||
|
t.Errorf("DefaultApiService.GetBranches() error = %v, wantErr %v", err, tt.wantErr)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user