mukan-ignite/ignite/services/plugin/mocks/client_api.go
Mukan Erkin Törük 26b204bd04
Some checks are pending
Docs Deploy / build_and_deploy (push) Waiting to run
Generate Docs / cli (push) Waiting to run
Generate Config Doc / cli (push) Waiting to run
Go formatting / go-formatting (push) Waiting to run
Check links / markdown-link-check (push) Waiting to run
Integration / pre-test (push) Waiting to run
Integration / test on (push) Blocked by required conditions
Integration / status (push) Blocked by required conditions
Lint / Lint Go code (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
feat: fork Ignite CLI v29 as Mukan Ignite — remove cosmos-sdk restrictions
2026-05-11 03:31:37 +03:00

154 lines
4.2 KiB
Go

// Code generated by mockery v2.53.3. DO NOT EDIT.
package mocks
import (
context "context"
mock "github.com/stretchr/testify/mock"
v1 "github.com/ignite/cli/v29/ignite/services/plugin/grpc/v1"
)
// PluginClientAPI is an autogenerated mock type for the ClientAPI type
type PluginClientAPI struct {
mock.Mock
}
type PluginClientAPI_Expecter struct {
mock *mock.Mock
}
func (_m *PluginClientAPI) EXPECT() *PluginClientAPI_Expecter {
return &PluginClientAPI_Expecter{mock: &_m.Mock}
}
// GetChainInfo provides a mock function with given fields: _a0
func (_m *PluginClientAPI) GetChainInfo(_a0 context.Context) (*v1.ChainInfo, error) {
ret := _m.Called(_a0)
if len(ret) == 0 {
panic("no return value specified for GetChainInfo")
}
var r0 *v1.ChainInfo
var r1 error
if rf, ok := ret.Get(0).(func(context.Context) (*v1.ChainInfo, error)); ok {
return rf(_a0)
}
if rf, ok := ret.Get(0).(func(context.Context) *v1.ChainInfo); ok {
r0 = rf(_a0)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*v1.ChainInfo)
}
}
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(_a0)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// PluginClientAPI_GetChainInfo_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetChainInfo'
type PluginClientAPI_GetChainInfo_Call struct {
*mock.Call
}
// GetChainInfo is a helper method to define mock.On call
// - _a0 context.Context
func (_e *PluginClientAPI_Expecter) GetChainInfo(_a0 interface{}) *PluginClientAPI_GetChainInfo_Call {
return &PluginClientAPI_GetChainInfo_Call{Call: _e.mock.On("GetChainInfo", _a0)}
}
func (_c *PluginClientAPI_GetChainInfo_Call) Run(run func(_a0 context.Context)) *PluginClientAPI_GetChainInfo_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context))
})
return _c
}
func (_c *PluginClientAPI_GetChainInfo_Call) Return(_a0 *v1.ChainInfo, _a1 error) *PluginClientAPI_GetChainInfo_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *PluginClientAPI_GetChainInfo_Call) RunAndReturn(run func(context.Context) (*v1.ChainInfo, error)) *PluginClientAPI_GetChainInfo_Call {
_c.Call.Return(run)
return _c
}
// GetIgniteInfo provides a mock function with given fields: _a0
func (_m *PluginClientAPI) GetIgniteInfo(_a0 context.Context) (*v1.IgniteInfo, error) {
ret := _m.Called(_a0)
if len(ret) == 0 {
panic("no return value specified for GetIgniteInfo")
}
var r0 *v1.IgniteInfo
var r1 error
if rf, ok := ret.Get(0).(func(context.Context) (*v1.IgniteInfo, error)); ok {
return rf(_a0)
}
if rf, ok := ret.Get(0).(func(context.Context) *v1.IgniteInfo); ok {
r0 = rf(_a0)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*v1.IgniteInfo)
}
}
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(_a0)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// PluginClientAPI_GetIgniteInfo_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetIgniteInfo'
type PluginClientAPI_GetIgniteInfo_Call struct {
*mock.Call
}
// GetIgniteInfo is a helper method to define mock.On call
// - _a0 context.Context
func (_e *PluginClientAPI_Expecter) GetIgniteInfo(_a0 interface{}) *PluginClientAPI_GetIgniteInfo_Call {
return &PluginClientAPI_GetIgniteInfo_Call{Call: _e.mock.On("GetIgniteInfo", _a0)}
}
func (_c *PluginClientAPI_GetIgniteInfo_Call) Run(run func(_a0 context.Context)) *PluginClientAPI_GetIgniteInfo_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context))
})
return _c
}
func (_c *PluginClientAPI_GetIgniteInfo_Call) Return(_a0 *v1.IgniteInfo, _a1 error) *PluginClientAPI_GetIgniteInfo_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *PluginClientAPI_GetIgniteInfo_Call) RunAndReturn(run func(context.Context) (*v1.IgniteInfo, error)) *PluginClientAPI_GetIgniteInfo_Call {
_c.Call.Return(run)
return _c
}
// NewPluginClientAPI creates a new instance of PluginClientAPI. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewPluginClientAPI(t interface {
mock.TestingT
Cleanup(func())
}) *PluginClientAPI {
mock := &PluginClientAPI{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}