...

Package configtx

import "github.com/hyperledger/fabric/common/mocks/configtx"
Overview
Index

Overview ▾

type Validator

Validator is a mock implementation of configtx.Validator

type Validator struct {
    // ChainIDVal is returned as the result of ChainID()
    ChainIDVal string

    // SequenceVal is returned as the result of Sequence()
    SequenceVal uint64

    // ApplyVal is returned by Apply
    ApplyVal error

    // AppliedConfigUpdateEnvelope is set by Apply
    AppliedConfigUpdateEnvelope *cb.ConfigEnvelope

    // ValidateVal is returned by Validate
    ValidateVal error

    // ProposeConfigUpdateError is returned as the error value for ProposeConfigUpdate
    ProposeConfigUpdateError error

    // ProposeConfigUpdateVal is returns as the value for ProposeConfigUpdate
    ProposeConfigUpdateVal *cb.ConfigEnvelope

    // ConfigProtoVal is returned as the value for ConfigProtoVal()
    ConfigProtoVal *cb.Config
}

func (*Validator) Apply

func (cm *Validator) Apply(configEnv *cb.ConfigEnvelope) error

Apply returns ApplyVal

func (*Validator) ChainID

func (cm *Validator) ChainID() string

ConsensusType returns the ConsensusTypeVal

func (*Validator) ConfigProto

func (cm *Validator) ConfigProto() *cb.Config

ConfigProto returns the ConfigProtoVal

func (*Validator) ProposeConfigUpdate

func (cm *Validator) ProposeConfigUpdate(update *cb.Envelope) (*cb.ConfigEnvelope, error)

ProposeConfigUpdate

func (*Validator) Sequence

func (cm *Validator) Sequence() uint64

BatchSize returns the BatchSizeVal

func (*Validator) Validate

func (cm *Validator) Validate(configEnv *cb.ConfigEnvelope) error

Validate returns ValidateVal