代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package tests
import (
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric/common/cauthdsl"
configtxtest "github.com/hyperledger/fabric/common/configtx/test"
"github.com/hyperledger/fabric/common/flogging"
lutils "github.com/hyperledger/fabric/core/ledger/util"
"github.com/hyperledger/fabric/protos/common"
"github.com/hyperledger/fabric/protos/ledger/rwset"
protopeer "github.com/hyperledger/fabric/protos/peer"
prototestutils "github.com/hyperledger/fabric/protos/testutils"
"github.com/hyperledger/fabric/protos/utils"
)
var logger = flogging.MustGetLogger("test2")
// collConf helps writing tests with less verbose code by specifying coll configuration
// in a simple struct in place of 'common.CollectionConfigPackage'. (the test heplers' apis
// use 'collConf' as parameters and return values and transform back and forth to/from proto
// message internally (using func 'convertToCollConfigProtoBytes' and 'convertFromCollConfigProto')
type collConf struct {
name string
btl uint64
}
type txAndPvtdata struct {
Txid string
Envelope *common.Envelope
Pvtws *rwset.TxPvtReadWriteSet
}
func convertToCollConfigProtoBytes(collConfs []*collConf) ([]byte, error) {
var protoConfArray []*common.CollectionConfig
for _, c := range collConfs {
protoConf := &common.CollectionConfig{Payload: &common.CollectionConfig_StaticCollectionConfig{
StaticCollectionConfig: &common.StaticCollectionConfig{
Name: c.name,
BlockToLive: c.btl,
MemberOrgsPolicy: getAccessPolicy([]string{"peer0", "peer1"})}}}
protoConfArray = append(protoConfArray, protoConf)
}
return proto.Marshal(&common.CollectionConfigPackage{Config: protoConfArray})
}
func getAccessPolicy(signers []string) *common.CollectionPolicyConfig {
var data [][]byte
for _, signer := range signers {
data = append(data, []byte(signer))
}
policyEnvelope := cauthdsl.Envelope(cauthdsl.Or(cauthdsl.SignedBy(0), cauthdsl.SignedBy(1)), data)
return createCollectionPolicyConfig(policyEnvelope)
}
func createCollectionPolicyConfig(accessPolicy *common.SignaturePolicyEnvelope) *common.CollectionPolicyConfig {
cpcSp := &common.CollectionPolicyConfig_SignaturePolicy{
SignaturePolicy: accessPolicy,
}
cpc := &common.CollectionPolicyConfig{
Payload: cpcSp,
}
return cpc
}
func convertFromCollConfigProto(collConfPkg *common.CollectionConfigPackage) []*collConf {
var collConfs []*collConf
protoConfArray := collConfPkg.Config
for _, protoConf := range protoConfArray {
name, btl := protoConf.GetStaticCollectionConfig().Name, protoConf.GetStaticCollectionConfig().BlockToLive
collConfs = append(collConfs, &collConf{name, btl})
}
return collConfs
}
func constructTransaction(txid string, simulationResults []byte) (*common.Envelope, error) {
channelid := "dummyChannel"
ccid := &protopeer.ChaincodeID{
Name: "dummyCC",
Version: "dummyVer",
}
txenv, _, err := prototestutils.ConstructUnsignedTxEnv(channelid, ccid, &protopeer.Response{Status: 200}, simulationResults, txid, nil, nil)
return txenv, err
}
func constructTestGenesisBlock(channelid string) (*common.Block, error) {
blk, err := configtxtest.MakeGenesisBlock(channelid)
if err != nil {
return nil, err
}
setBlockFlagsToValid(blk)
return blk, nil
}
func setBlockFlagsToValid(block *common.Block) {
utils.InitBlockMetadata(block)
block.Metadata.Metadata[common.BlockMetadataIndex_TRANSACTIONS_FILTER] =
lutils.NewTxValidationFlagsSetValue(len(block.Data.Data), protopeer.TxValidationCode_VALID)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。