mukan-consensus/state/indexer/mocks/block_indexer.go
Mukan Erkin Törük ef24c0b67e
Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
initial: sovereign Mukan Network fork
2026-05-11 03:18:27 +03:00

115 lines
2.5 KiB
Go

// Code generated by mockery v2.53.0. DO NOT EDIT.
package mocks
import (
context "context"
log "github.com/cometbft/cometbft/libs/log"
mock "github.com/stretchr/testify/mock"
query "github.com/cometbft/cometbft/libs/pubsub/query"
types "github.com/cometbft/cometbft/types"
)
// BlockIndexer is an autogenerated mock type for the BlockIndexer type
type BlockIndexer struct {
mock.Mock
}
// Has provides a mock function with given fields: height
func (_m *BlockIndexer) Has(height int64) (bool, error) {
ret := _m.Called(height)
if len(ret) == 0 {
panic("no return value specified for Has")
}
var r0 bool
var r1 error
if rf, ok := ret.Get(0).(func(int64) (bool, error)); ok {
return rf(height)
}
if rf, ok := ret.Get(0).(func(int64) bool); ok {
r0 = rf(height)
} else {
r0 = ret.Get(0).(bool)
}
if rf, ok := ret.Get(1).(func(int64) error); ok {
r1 = rf(height)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Index provides a mock function with given fields: _a0
func (_m *BlockIndexer) Index(_a0 types.EventDataNewBlockEvents) error {
ret := _m.Called(_a0)
if len(ret) == 0 {
panic("no return value specified for Index")
}
var r0 error
if rf, ok := ret.Get(0).(func(types.EventDataNewBlockEvents) error); ok {
r0 = rf(_a0)
} else {
r0 = ret.Error(0)
}
return r0
}
// Search provides a mock function with given fields: ctx, q
func (_m *BlockIndexer) Search(ctx context.Context, q *query.Query) ([]int64, error) {
ret := _m.Called(ctx, q)
if len(ret) == 0 {
panic("no return value specified for Search")
}
var r0 []int64
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, *query.Query) ([]int64, error)); ok {
return rf(ctx, q)
}
if rf, ok := ret.Get(0).(func(context.Context, *query.Query) []int64); ok {
r0 = rf(ctx, q)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]int64)
}
}
if rf, ok := ret.Get(1).(func(context.Context, *query.Query) error); ok {
r1 = rf(ctx, q)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// SetLogger provides a mock function with given fields: l
func (_m *BlockIndexer) SetLogger(l log.Logger) {
_m.Called(l)
}
// NewBlockIndexer creates a new instance of BlockIndexer. 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 NewBlockIndexer(t interface {
mock.TestingT
Cleanup(func())
}) *BlockIndexer {
mock := &BlockIndexer{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}