Skip to content

Commit f26382a

Browse files
committed
[FAB-9544] added notification about chaincode upgrade
also added implementation of stub setEvent function in mockStub and a check in lscc_test TestUpgrade unit test Change-Id: I56ae9b6a3bd06ae6db0065c1b8a8aba284e4b892 Signed-off-by: nirro <nirro@il.ibm.com>
1 parent 2561a4b commit f26382a

File tree

6 files changed

+84
-44
lines changed

6 files changed

+84
-44
lines changed

core/chaincode/shim/mockstub.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ type MockStub struct {
5959
ChannelID string
6060

6161
PvtState map[string]map[string][]byte
62+
63+
// channel to store ChaincodeEvents
64+
ChaincodeEventsChannel chan *pb.ChaincodeEvent
6265
}
6366

6467
func (stub *MockStub) GetTxID() string {
@@ -362,8 +365,8 @@ func (stub *MockStub) GetTxTimestamp() (*timestamp.Timestamp, error) {
362365
return stub.TxTimestamp, nil
363366
}
364367

365-
// Not implemented
366368
func (stub *MockStub) SetEvent(name string, payload []byte) error {
369+
stub.ChaincodeEventsChannel <- &pb.ChaincodeEvent{EventName: name, Payload: payload}
367370
return nil
368371
}
369372

@@ -377,6 +380,7 @@ func NewMockStub(name string, cc Chaincode) *MockStub {
377380
s.PvtState = make(map[string]map[string][]byte)
378381
s.Invokables = make(map[string]*MockStub)
379382
s.Keys = list.New()
383+
s.ChaincodeEventsChannel = make(chan *pb.ChaincodeEvent, 100) //define large capacity for non-blocking setEvent calls.
380384

381385
return s
382386
}

core/scc/lscc/lscc.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ import (
4242
var logger = flogging.MustGetLogger("lscc")
4343

4444
const (
45+
4546
//chaincode lifecycle commands
4647

4748
//INSTALL install command
@@ -592,7 +593,9 @@ func (lscc *lifeCycleSysCC) executeUpgrade(stub shim.ChaincodeStubInterface, cha
592593
if err != nil {
593594
return nil, err
594595
}
595-
596+
lifecycleEvent := &pb.LifecycleEvent{ChaincodeName: chaincodeName}
597+
lifecycleEventBytes := utils.MarshalOrPanic(lifecycleEvent)
598+
stub.SetEvent(UPGRADE, lifecycleEventBytes)
596599
return cdfs, nil
597600
}
598601

core/scc/lscc/lscc_test.go

+7
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,13 @@ func testUpgrade(t *testing.T, ccname string, version string, newccname string,
402402

403403
expectVer := "1"
404404
assert.Equal(t, newVer, expectVer, fmt.Sprintf("Upgrade chaincode version error, expected %s, got %s", expectVer, newVer))
405+
406+
chaincodeEvent := <-stub.ChaincodeEventsChannel
407+
assert.Equal(t, UPGRADE, chaincodeEvent.EventName)
408+
lifecycleEvent := &pb.LifecycleEvent{}
409+
err = proto.Unmarshal(chaincodeEvent.Payload, lifecycleEvent)
410+
assert.NoError(t, err)
411+
assert.Equal(t, newccname, lifecycleEvent.ChaincodeName)
405412
} else {
406413
assert.Equal(t, expectedErrorMsg, string(res.Message))
407414
}

protos/peer/admin.pb.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/peer/chaincode.pb.go

+62-42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/peer/chaincode.proto

+5
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,8 @@ message ChaincodeInvocationSpec {
104104
// Currently, SHA256 with BASE64 is supported (e.g. idGenerationAlg='sha256base64')
105105
string id_generation_alg = 2;
106106
}
107+
108+
// LifecycleEvent is used as the payload of the chaincode event emitted by LSCC
109+
message LifecycleEvent {
110+
string chaincode_name = 1;
111+
}

0 commit comments

Comments
 (0)