...

Package config

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

Overview ▾

Index ▾

type Channel
    func (scm *Channel) BlockDataHashingStructureWidth() uint32
    func (scm *Channel) Capabilities() channelconfig.ChannelCapabilities
    func (scm *Channel) HashingAlgorithm() func([]byte) []byte
    func (scm *Channel) OrdererAddresses() []string
type ChannelCapabilities
    func (cc *ChannelCapabilities) ConsensusTypeMigration() bool
    func (cc *ChannelCapabilities) MSPVersion() msp.MSPVersion
    func (cc *ChannelCapabilities) OrgSpecificOrdererEndpoints() bool
    func (cc *ChannelCapabilities) Supported() error
type MockApplication
    func (m *MockApplication) APIPolicyMapper() channelconfig.PolicyMapper
    func (m *MockApplication) Capabilities() channelconfig.ApplicationCapabilities
    func (m *MockApplication) Organizations() map[string]channelconfig.ApplicationOrg
    func (m *MockApplication) PolicyRefForAPI(apiName string) string
type MockApplicationCapabilities
    func (mac *MockApplicationCapabilities) ACLs() bool
    func (mac *MockApplicationCapabilities) CollectionUpgrade() bool
    func (mac *MockApplicationCapabilities) FabToken() bool
    func (mac *MockApplicationCapabilities) ForbidDuplicateTXIdInBlock() bool
    func (mac *MockApplicationCapabilities) KeyLevelEndorsement() bool
    func (mac *MockApplicationCapabilities) MetadataLifecycle() bool
    func (mac *MockApplicationCapabilities) PrivateChannelData() bool
    func (mac *MockApplicationCapabilities) StorePvtDataOfInvalidTx() bool
    func (mac *MockApplicationCapabilities) Supported() error
    func (mac *MockApplicationCapabilities) V1_1Validation() bool
    func (mac *MockApplicationCapabilities) V1_2Validation() bool
    func (mac *MockApplicationCapabilities) V1_3Validation() bool
type Orderer
    func (o *Orderer) BatchSize() *ab.BatchSize
    func (o *Orderer) BatchTimeout() time.Duration
    func (o *Orderer) Capabilities() channelconfig.OrdererCapabilities
    func (o *Orderer) ConsensusMetadata() []byte
    func (o *Orderer) ConsensusState() ab.ConsensusType_State
    func (o *Orderer) ConsensusType() string
    func (o *Orderer) KafkaBrokers() []string
    func (o *Orderer) MaxChannelsCount() uint64
    func (o *Orderer) Organizations() map[string]channelconfig.OrdererOrg
type OrdererCapabilities
    func (oc *OrdererCapabilities) ConsensusTypeMigration() bool
    func (oc *OrdererCapabilities) ExpirationCheck() bool
    func (oc *OrdererCapabilities) PredictableChannelTemplate() bool
    func (oc *OrdererCapabilities) Resubmission() bool
    func (oc *OrdererCapabilities) Supported() error
type Resources
    func (r *Resources) ApplicationConfig() (channelconfig.Application, bool)
    func (r *Resources) ChannelConfig() channelconfig.Channel
    func (r *Resources) ConfigtxValidator() configtx.Validator
    func (r *Resources) ConsortiumsConfig() (channelconfig.Consortiums, bool)
    func (r *Resources) MSPManager() msp.MSPManager
    func (r *Resources) OrdererConfig() (channelconfig.Orderer, bool)
    func (r *Resources) PolicyManager() policies.Manager
    func (r *Resources) ValidateNew(res channelconfig.Resources) error

Package files

application.go channel.go orderer.go resources.go

type Channel

Channel is a mock implementation of config.Channel

type Channel struct {
    // HashingAlgorithmVal is returned as the result of HashingAlgorithm() if set
    HashingAlgorithmVal func([]byte) []byte
    // BlockDataHashingStructureWidthVal is returned as the result of BlockDataHashingStructureWidth()
    BlockDataHashingStructureWidthVal uint32
    // OrdererAddressesVal is returned as the result of OrdererAddresses()
    OrdererAddressesVal []string
    // CapabilitiesVal is returned as the result of Capabilities()
    CapabilitiesVal channelconfig.ChannelCapabilities
}

func (*Channel) BlockDataHashingStructureWidth

func (scm *Channel) BlockDataHashingStructureWidth() uint32

BlockDataHashingStructureWidth returns the BlockDataHashingStructureWidthVal

func (*Channel) Capabilities

func (scm *Channel) Capabilities() channelconfig.ChannelCapabilities

Capabilities returns CapabilitiesVal

func (*Channel) HashingAlgorithm

func (scm *Channel) HashingAlgorithm() func([]byte) []byte

HashingAlgorithm returns the HashingAlgorithmVal if set, otherwise a fake simple hash function

func (*Channel) OrdererAddresses

func (scm *Channel) OrdererAddresses() []string

OrdererAddresses returns the OrdererAddressesVal

type ChannelCapabilities

ChannelCapabilities mocks the channelconfig.ChannelCapabilities interface

type ChannelCapabilities struct {
    // SupportedErr is returned by Supported()
    SupportedErr error

    // MSPVersionVal is returned by MSPVersion()
    MSPVersionVal msp.MSPVersion

    ConsensusTypeMigrationVal bool
}

func (*ChannelCapabilities) ConsensusTypeMigration

func (cc *ChannelCapabilities) ConsensusTypeMigration() bool

ConsensusTypeMigration returns ConsensusTypeMigrationVal

func (*ChannelCapabilities) MSPVersion

func (cc *ChannelCapabilities) MSPVersion() msp.MSPVersion

MSPVersion returns MSPVersionVal

func (*ChannelCapabilities) OrgSpecificOrdererEndpoints

func (cc *ChannelCapabilities) OrgSpecificOrdererEndpoints() bool

func (*ChannelCapabilities) Supported

func (cc *ChannelCapabilities) Supported() error

Supported returns SupportedErr

type MockApplication

type MockApplication struct {
    CapabilitiesRv channelconfig.ApplicationCapabilities
    Acls           map[string]string
}

func (*MockApplication) APIPolicyMapper

func (m *MockApplication) APIPolicyMapper() channelconfig.PolicyMapper

Returns the mock which itself is a provider

func (*MockApplication) Capabilities

func (m *MockApplication) Capabilities() channelconfig.ApplicationCapabilities

func (*MockApplication) Organizations

func (m *MockApplication) Organizations() map[string]channelconfig.ApplicationOrg

func (*MockApplication) PolicyRefForAPI

func (m *MockApplication) PolicyRefForAPI(apiName string) string

type MockApplicationCapabilities

type MockApplicationCapabilities struct {
    SupportedRv                  error
    ForbidDuplicateTXIdInBlockRv bool
    ACLsRv                       bool
    PrivateChannelDataRv         bool
    CollectionUpgradeRv          bool
    V1_1ValidationRv             bool
    V1_2ValidationRv             bool
    MetadataLifecycleRv          bool
    KeyLevelEndorsementRv        bool
    V1_3ValidationRv             bool
    FabTokenRv                   bool
    StorePvtDataOfInvalidTxRv    bool
}

func (*MockApplicationCapabilities) ACLs

func (mac *MockApplicationCapabilities) ACLs() bool

func (*MockApplicationCapabilities) CollectionUpgrade

func (mac *MockApplicationCapabilities) CollectionUpgrade() bool

func (*MockApplicationCapabilities) FabToken

func (mac *MockApplicationCapabilities) FabToken() bool

func (*MockApplicationCapabilities) ForbidDuplicateTXIdInBlock

func (mac *MockApplicationCapabilities) ForbidDuplicateTXIdInBlock() bool

func (*MockApplicationCapabilities) KeyLevelEndorsement

func (mac *MockApplicationCapabilities) KeyLevelEndorsement() bool

func (*MockApplicationCapabilities) MetadataLifecycle

func (mac *MockApplicationCapabilities) MetadataLifecycle() bool

func (*MockApplicationCapabilities) PrivateChannelData

func (mac *MockApplicationCapabilities) PrivateChannelData() bool

func (*MockApplicationCapabilities) StorePvtDataOfInvalidTx

func (mac *MockApplicationCapabilities) StorePvtDataOfInvalidTx() bool

func (*MockApplicationCapabilities) Supported

func (mac *MockApplicationCapabilities) Supported() error

func (*MockApplicationCapabilities) V1_1Validation

func (mac *MockApplicationCapabilities) V1_1Validation() bool

func (*MockApplicationCapabilities) V1_2Validation

func (mac *MockApplicationCapabilities) V1_2Validation() bool

func (*MockApplicationCapabilities) V1_3Validation

func (mac *MockApplicationCapabilities) V1_3Validation() bool

type Orderer

Orderer is a mock implementation of channelconfig.Orderer

type Orderer struct {
    // ConsensusTypeVal is returned as the result of ConsensusType()
    ConsensusTypeVal string
    // ConsensusMetadataVal is returned as the result of ConsensusMetadata()
    ConsensusMetadataVal []byte
    // ConsensusTypeStateVal is returned as the result of ConsensusState()
    ConsensusTypeStateVal ab.ConsensusType_State

    // BatchSizeVal is returned as the result of BatchSize()
    BatchSizeVal *ab.BatchSize
    // BatchTimeoutVal is returned as the result of BatchTimeout()
    BatchTimeoutVal time.Duration
    // KafkaBrokersVal is returned as the result of KafkaBrokers()
    KafkaBrokersVal []string
    // MaxChannelsCountVal is returns as the result of MaxChannelsCount()
    MaxChannelsCountVal uint64
    // OrganizationsVal is returned as the result of Organizations()
    OrganizationsVal map[string]channelconfig.OrdererOrg
    // CapabilitiesVal is returned as the result of Capabilities()
    CapabilitiesVal channelconfig.OrdererCapabilities
}

func (*Orderer) BatchSize

func (o *Orderer) BatchSize() *ab.BatchSize

BatchSize returns the BatchSizeVal

func (*Orderer) BatchTimeout

func (o *Orderer) BatchTimeout() time.Duration

BatchTimeout returns the BatchTimeoutVal

func (*Orderer) Capabilities

func (o *Orderer) Capabilities() channelconfig.OrdererCapabilities

Capabilities returns CapabilitiesVal

func (*Orderer) ConsensusMetadata

func (o *Orderer) ConsensusMetadata() []byte

ConsensusMetadata returns the ConsensusMetadataVal

func (*Orderer) ConsensusState

func (o *Orderer) ConsensusState() ab.ConsensusType_State

ConsensusState returns the ConsensusTypeStateVal

func (*Orderer) ConsensusType

func (o *Orderer) ConsensusType() string

ConsensusType returns the ConsensusTypeVal

func (*Orderer) KafkaBrokers

func (o *Orderer) KafkaBrokers() []string

KafkaBrokers returns the KafkaBrokersVal

func (*Orderer) MaxChannelsCount

func (o *Orderer) MaxChannelsCount() uint64

MaxChannelsCount returns the MaxChannelsCountVal

func (*Orderer) Organizations

func (o *Orderer) Organizations() map[string]channelconfig.OrdererOrg

Organizations returns OrganizationsVal

type OrdererCapabilities

OrdererCapabilities mocks the channelconfig.OrdererCapabilities interface

type OrdererCapabilities struct {
    // SupportedErr is returned by Supported()
    SupportedErr error

    // PredictableChannelTemplateVal is returned by PredictableChannelTemplate()
    PredictableChannelTemplateVal bool

    // ResubmissionVal is returned by Resubmission()
    ResubmissionVal bool

    // ExpirationVal is returned by ExpirationCheck()
    ExpirationVal bool

    ConsensusTypeMigrationVal bool
}

func (*OrdererCapabilities) ConsensusTypeMigration

func (oc *OrdererCapabilities) ConsensusTypeMigration() bool

ConsensusTypeMigration checks whether the orderer permits a consensus-type migration.

func (*OrdererCapabilities) ExpirationCheck

func (oc *OrdererCapabilities) ExpirationCheck() bool

ExpirationCheck specifies whether the orderer checks for identity expiration checks when validating messages

func (*OrdererCapabilities) PredictableChannelTemplate

func (oc *OrdererCapabilities) PredictableChannelTemplate() bool

PredictableChannelTemplate returns PredictableChannelTemplateVal

func (*OrdererCapabilities) Resubmission

func (oc *OrdererCapabilities) Resubmission() bool

Resubmission returns ResubmissionVal

func (*OrdererCapabilities) Supported

func (oc *OrdererCapabilities) Supported() error

Supported returns SupportedErr

type Resources

type Resources struct {
    // ConfigtxValidatorVal is returned as the result of ConfigtxValidator
    ConfigtxValidatorVal configtx.Validator

    // PolicyManagerVal is returned as the result of PolicyManager()
    PolicyManagerVal policies.Manager

    // ChannelConfigVal is returned as the result of ChannelConfig()
    ChannelConfigVal channelconfig.Channel

    // OrdererConfigVal is returned as the result of OrdererConfig()
    OrdererConfigVal channelconfig.Orderer

    // ApplicationConfigVal is returned as the result of ApplicationConfig()
    ApplicationConfigVal channelconfig.Application

    // ConsortiumsConfigVal is returned as the result of ConsortiumsConfig()
    ConsortiumsConfigVal channelconfig.Consortiums

    // MSPManagerVal is returned as the result of MSPManager()
    MSPManagerVal msp.MSPManager

    // ValidateNewErr is returned as the result of ValidateNew
    ValidateNewErr error
}

func (*Resources) ApplicationConfig

func (r *Resources) ApplicationConfig() (channelconfig.Application, bool)

Returns the ApplicationConfigVal

func (*Resources) ChannelConfig

func (r *Resources) ChannelConfig() channelconfig.Channel

Returns the ChannelConfigVal

func (*Resources) ConfigtxValidator

func (r *Resources) ConfigtxValidator() configtx.Validator

ConfigtxMangaer returns ConfigtxValidatorVal

func (*Resources) ConsortiumsConfig

func (r *Resources) ConsortiumsConfig() (channelconfig.Consortiums, bool)

func (*Resources) MSPManager

func (r *Resources) MSPManager() msp.MSPManager

Returns the MSPManagerVal

func (*Resources) OrdererConfig

func (r *Resources) OrdererConfig() (channelconfig.Orderer, bool)

Returns the OrdererConfigVal

func (*Resources) PolicyManager

func (r *Resources) PolicyManager() policies.Manager

Returns the PolicyManagerVal

func (*Resources) ValidateNew

func (r *Resources) ValidateNew(res channelconfig.Resources) error

ValidateNew returns ValidateNewErr