-
Notifications
You must be signed in to change notification settings - Fork 1
/
mocks.go
45 lines (35 loc) · 1.14 KB
/
mocks.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package mocks
import (
"testing"
"github.com/hyperledger/fabric/core/ledger"
"github.com/hyperledger/fabric/protos/common"
"github.com/stretchr/testify/mock"
)
type MockACLProvider struct {
//create a mock object that can be reset after
//registering a MockACLProvider with aclmgmt
mock *mock.Mock
}
//clear the mock so we can start afresh
func (m *MockACLProvider) Reset() {
m.mock = &mock.Mock{}
}
func (m *MockACLProvider) CheckACL(resName string, channelID string, idinfo interface{}) error {
args := m.mock.Called(resName, channelID, idinfo)
return args.Error(0)
}
func (m *MockACLProvider) GenerateSimulationResults(txEnvelop *common.Envelope, simulator ledger.TxSimulator, initializingLedger bool) error {
return nil
}
//On overrider the mock method for convenience
func (m *MockACLProvider) On(methodName string, arguments ...interface{}) *mock.Call {
return m.mock.On(methodName, arguments...)
}
//AssertExpectations overrider the mock method for convenience
func (m *MockACLProvider) AssertExpectations(t *testing.T) {
m.mock.AssertExpectations(t)
}