1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/influx/mocks/client.go
Siarhei Pazdniakou 54f2a0d471
Added go-based influxWriteData step (#2890)
* Added go-based influxWriteData step

* Wrote tests & fixed issues

* Fixed issues

* Created go-based step tests. Fixed issues

* Fixed issues

* Integration test was added

Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
Co-authored-by: Sven Merk <33895725+nevskrem@users.noreply.github.com>
2021-06-30 11:18:49 +02:00

301 lines
6.4 KiB
Go

// Code generated by mockery v2.7.4. DO NOT EDIT.
package mocks
import (
context "context"
api "github.com/influxdata/influxdb-client-go/v2/api"
domain "github.com/influxdata/influxdb-client-go/v2/domain"
http "github.com/influxdata/influxdb-client-go/v2/api/http"
influxdb2 "github.com/influxdata/influxdb-client-go/v2"
mock "github.com/stretchr/testify/mock"
)
// Client is an autogenerated mock type for the Client type
type Client struct {
mock.Mock
}
// AuthorizationsAPI provides a mock function with given fields:
func (_m *Client) AuthorizationsAPI() api.AuthorizationsAPI {
ret := _m.Called()
var r0 api.AuthorizationsAPI
if rf, ok := ret.Get(0).(func() api.AuthorizationsAPI); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.AuthorizationsAPI)
}
}
return r0
}
// BucketsAPI provides a mock function with given fields:
func (_m *Client) BucketsAPI() api.BucketsAPI {
ret := _m.Called()
var r0 api.BucketsAPI
if rf, ok := ret.Get(0).(func() api.BucketsAPI); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.BucketsAPI)
}
}
return r0
}
// Close provides a mock function with given fields:
func (_m *Client) Close() {
_m.Called()
}
// DeleteAPI provides a mock function with given fields:
func (_m *Client) DeleteAPI() api.DeleteAPI {
ret := _m.Called()
var r0 api.DeleteAPI
if rf, ok := ret.Get(0).(func() api.DeleteAPI); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.DeleteAPI)
}
}
return r0
}
// HTTPService provides a mock function with given fields:
func (_m *Client) HTTPService() http.Service {
ret := _m.Called()
var r0 http.Service
if rf, ok := ret.Get(0).(func() http.Service); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(http.Service)
}
}
return r0
}
// Health provides a mock function with given fields: ctx
func (_m *Client) Health(ctx context.Context) (*domain.HealthCheck, error) {
ret := _m.Called(ctx)
var r0 *domain.HealthCheck
if rf, ok := ret.Get(0).(func(context.Context) *domain.HealthCheck); ok {
r0 = rf(ctx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*domain.HealthCheck)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// LabelsAPI provides a mock function with given fields:
func (_m *Client) LabelsAPI() api.LabelsAPI {
ret := _m.Called()
var r0 api.LabelsAPI
if rf, ok := ret.Get(0).(func() api.LabelsAPI); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.LabelsAPI)
}
}
return r0
}
// Options provides a mock function with given fields:
func (_m *Client) Options() *influxdb2.Options {
ret := _m.Called()
var r0 *influxdb2.Options
if rf, ok := ret.Get(0).(func() *influxdb2.Options); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*influxdb2.Options)
}
}
return r0
}
// OrganizationsAPI provides a mock function with given fields:
func (_m *Client) OrganizationsAPI() api.OrganizationsAPI {
ret := _m.Called()
var r0 api.OrganizationsAPI
if rf, ok := ret.Get(0).(func() api.OrganizationsAPI); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.OrganizationsAPI)
}
}
return r0
}
// QueryAPI provides a mock function with given fields: org
func (_m *Client) QueryAPI(org string) api.QueryAPI {
ret := _m.Called(org)
var r0 api.QueryAPI
if rf, ok := ret.Get(0).(func(string) api.QueryAPI); ok {
r0 = rf(org)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.QueryAPI)
}
}
return r0
}
// Ready provides a mock function with given fields: ctx
func (_m *Client) Ready(ctx context.Context) (bool, error) {
ret := _m.Called(ctx)
var r0 bool
if rf, ok := ret.Get(0).(func(context.Context) bool); ok {
r0 = rf(ctx)
} else {
r0 = ret.Get(0).(bool)
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// ServerURL provides a mock function with given fields:
func (_m *Client) ServerURL() string {
ret := _m.Called()
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// Setup provides a mock function with given fields: ctx, username, password, org, bucket, retentionPeriodHours
func (_m *Client) Setup(ctx context.Context, username string, password string, org string, bucket string, retentionPeriodHours int) (*domain.OnboardingResponse, error) {
ret := _m.Called(ctx, username, password, org, bucket, retentionPeriodHours)
var r0 *domain.OnboardingResponse
if rf, ok := ret.Get(0).(func(context.Context, string, string, string, string, int) *domain.OnboardingResponse); ok {
r0 = rf(ctx, username, password, org, bucket, retentionPeriodHours)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*domain.OnboardingResponse)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string, string, string, string, int) error); ok {
r1 = rf(ctx, username, password, org, bucket, retentionPeriodHours)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// TasksAPI provides a mock function with given fields:
func (_m *Client) TasksAPI() api.TasksAPI {
ret := _m.Called()
var r0 api.TasksAPI
if rf, ok := ret.Get(0).(func() api.TasksAPI); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.TasksAPI)
}
}
return r0
}
// UsersAPI provides a mock function with given fields:
func (_m *Client) UsersAPI() api.UsersAPI {
ret := _m.Called()
var r0 api.UsersAPI
if rf, ok := ret.Get(0).(func() api.UsersAPI); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.UsersAPI)
}
}
return r0
}
// WriteAPI provides a mock function with given fields: org, bucket
func (_m *Client) WriteAPI(org string, bucket string) api.WriteAPI {
ret := _m.Called(org, bucket)
var r0 api.WriteAPI
if rf, ok := ret.Get(0).(func(string, string) api.WriteAPI); ok {
r0 = rf(org, bucket)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.WriteAPI)
}
}
return r0
}
// WriteAPIBlocking provides a mock function with given fields: org, bucket
func (_m *Client) WriteAPIBlocking(org string, bucket string) api.WriteAPIBlocking {
ret := _m.Called(org, bucket)
var r0 api.WriteAPIBlocking
if rf, ok := ret.Get(0).(func(string, string) api.WriteAPIBlocking); ok {
r0 = rf(org, bucket)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(api.WriteAPIBlocking)
}
}
return r0
}