-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FAB-10484] - added e2e pvtdata btl tests
added a test that checks that private data is purged after reaching btl. added another test that spans a new peer after private data was purged, and checks that the new peer isn't getting the purged data. Change-Id: I6be9d657082da18f90fd1420929f2e531cf855e9 Signed-off-by: nirro <nirro@il.ibm.com>
- Loading branch information
1 parent
f5e04a8
commit 6e17b23
Showing
2 changed files
with
159 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
integration/pvtdata/testdata/collection_configs/short_btl_config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[ | ||
{ | ||
"name": "collectionMarbles", | ||
"policy": "OR('Org1MSP.member', 'Org2MSP.member')", | ||
"requiredPeerCount": 0, | ||
"maxPeerCount": 2, | ||
"blockToLive":1000000 | ||
}, | ||
{ | ||
"name": "collectionMarblePrivateDetails", | ||
"policy": "OR('Org2MSP.member', 'Org3MSP.member')", | ||
"requiredPeerCount": 1, | ||
"maxPeerCount": 2, | ||
"blockToLive":3 | ||
} | ||
] |