6 Star 46 Fork 28

Hyperledger/fabric

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
ccprovider.go 3.30 KB
Copy Edit Raw Blame History
/*
Copyright IBM Corp. 2017 All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package ccprovider
import (
"context"
"github.com/hyperledger/fabric/core/chaincode/shim"
"github.com/hyperledger/fabric/core/common/ccprovider"
"github.com/hyperledger/fabric/core/ledger"
"github.com/hyperledger/fabric/protos/peer"
)
type ExecuteChaincodeResultProvider interface {
ExecuteChaincodeResult() (*peer.Response, *peer.ChaincodeEvent, error)
}
// MockCcProviderFactory is a factory that returns
// mock implementations of the ccprovider.ChaincodeProvider interface
type MockCcProviderFactory struct {
ExecuteResultProvider ExecuteChaincodeResultProvider
}
// NewChaincodeProvider returns a mock implementation of the ccprovider.ChaincodeProvider interface
func (c *MockCcProviderFactory) NewChaincodeProvider() ccprovider.ChaincodeProvider {
return &mockCcProviderImpl{c.ExecuteResultProvider}
}
// mockCcProviderImpl is a mock implementation of the chaincode provider
type mockCcProviderImpl struct {
executeResultProvider ExecuteChaincodeResultProvider
}
type mockCcProviderContextImpl struct {
}
// GetContext does nothing
func (c *mockCcProviderImpl) GetContext(ledger ledger.PeerLedger) (context.Context, error) {
return nil, nil
}
// GetCCContext does nothing
func (c *mockCcProviderImpl) GetCCContext(cid, name, version, txid string, syscc bool, signedProp *peer.SignedProposal, prop *peer.Proposal) interface{} {
return &mockCcProviderContextImpl{}
}
// GetCCValidationInfoFromLSCC does nothing
func (c *mockCcProviderImpl) GetCCValidationInfoFromLSCC(ctxt context.Context, txid string, signedProp *peer.SignedProposal, prop *peer.Proposal, chainID string, chaincodeID string) (string, []byte, error) {
return "vscc", nil, nil
}
// ExecuteChaincode does nothing
func (c *mockCcProviderImpl) ExecuteChaincode(ctxt context.Context, cccid interface{}, args [][]byte) (*peer.Response, *peer.ChaincodeEvent, error) {
if c.executeResultProvider != nil {
return c.executeResultProvider.ExecuteChaincodeResult()
}
return &peer.Response{Status: shim.OK}, nil, nil
}
// Execute executes the chaincode given context and spec (invocation or deploy)
func (c *mockCcProviderImpl) Execute(ctxt context.Context, cccid interface{}, spec interface{}) (*peer.Response, *peer.ChaincodeEvent, error) {
return nil, nil, nil
}
// ExecuteWithErrorFilder executes the chaincode given context and spec and returns payload
func (c *mockCcProviderImpl) ExecuteWithErrorFilter(ctxt context.Context, cccid interface{}, spec interface{}) ([]byte, *peer.ChaincodeEvent, error) {
return nil, nil, nil
}
// Stop stops the chaincode given context and deployment spec
func (c *mockCcProviderImpl) Stop(ctxt context.Context, cccid interface{}, spec *peer.ChaincodeDeploymentSpec) error {
return nil
}
// ReleaseContext does nothing
func (c *mockCcProviderImpl) ReleaseContext() {
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hyperledger/fabric.git
git@gitee.com:hyperledger/fabric.git
hyperledger
fabric
fabric
v1.0.5

Search