Skip to content

Commit c950903

Browse files
committedAug 8, 2016
Use SHA256 TXID instead of UUID
This squashed changeset does the following: - It renames UUID to TXID in the code (Go/Java), in tests, in proto files, in all chaincode related files - It uses all the arguments of the chaincode to generate the TXID Change-Id: Iae6f1fb45c12c2652d9ad18451e75ea1f91fe9a3 Signed-off-by: Gabor Hosszu <gabor@digitalasset.com>
1 parent f062bd5 commit c950903

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+718
-670
lines changed
 

‎bddtests/peer_basic.feature

+7-7
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,8 @@ Feature: Network of Peers
350350
# @doNotDecompose
351351
# @wip
352352
# Arg[0] = a, base64 = 'YQ=='
353-
# sha256 = 'ca978112ca1bbdcafac231b39a23dc4da786eff8147c4e72b9807785afee48bb'
353+
# sha256 = 'acfb280369a87a57b1954210081d78943f1a0adb5368184984e8852a42c14df8'
354+
# calculated using all the args
354355
Scenario: chaincode map single peer content generated ID
355356
Given we compose "docker-compose-1.yml"
356357
When requesting "/chain" from "vp0"
@@ -361,12 +362,12 @@ Feature: Network of Peers
361362
Then I should have received a chaincode name
362363
Then I wait up to "60" seconds for transaction to be committed to all peers
363364

364-
When I invoke chaincode "map" function name "put" on "vp0" with "sha256base64"
365+
When I invoke chaincode "map" function name "put" on "vp0" with "sha256"
365366
| arg1 |arg2|
366367
| YQ== | 10 |
367368
Then I should have received a transactionID
368369
Then I wait up to "25" seconds for transaction to be committed to all peers
369-
Then I check the transaction ID if it is "ca978112-ca1b-bdca-fac2-31b39a23dc4d"
370+
Then I check the transaction ID if it is "acfb280369a87a57b1954210081d78943f1a0adb5368184984e8852a42c14df8"
370371

371372
Scenario: chaincode example 01 single peer rejection message
372373
Given we compose "docker-compose-1-exp.yml"
@@ -1106,7 +1107,7 @@ Feature: Network of Peers
11061107

11071108

11081109
@issue_1942
1109-
#@doNotDecompose
1110+
# @doNotDecompose
11101111
Scenario: chaincode example02 with 4 peers, stop and start alternates, reverse
11111112
Given we compose "docker-compose-4-consensus-batch.yml"
11121113
And I register with CA supplying username "binhn" and secret "7avZQLwcUe9q" on peers:
@@ -1152,15 +1153,14 @@ Scenario: chaincode example02 with 4 peers, stop and start alternates, reverse
11521153

11531154
Given I start peers:
11541155
| vp2 |
1155-
And I wait "30" seconds
11561156

1157+
And I wait "30" seconds
11571158
Given I stop peers:
11581159
| vp1 |
11591160
When I invoke chaincode "example2" function name "invoke" on "vp3" "20" times
11601161
|arg1|arg2|arg3|
11611162
| a | b | 1 |
1162-
Then I should have received a transactionID
1163-
Then I wait up to "300" seconds for transaction to be committed to peers:
1163+
Then I wait up to "300" seconds for transactions to be committed to peers:
11641164
| vp0 | vp2 | vp3 |
11651165

11661166
When I query chaincode "example2" function name "query" with value "a" on peers:

‎bddtests/steps/peer_basic_impl.py

+49
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,12 @@ def step_impl(context, chaincodeName, functionName, containerName, idGenAlg):
311311
@when(u'I invoke chaincode "{chaincodeName}" function name "{functionName}" on "{containerName}" "{times}" times')
312312
def step_impl(context, chaincodeName, functionName, containerName, times):
313313
assert 'chaincodeSpec' in context, "chaincodeSpec not found in context"
314+
ipAddress = bdd_test_util.ipFromContainerNamePart(containerName, context.compose_containers)
315+
request_url = buildUrl(context, ipAddress, "/chain")
316+
resp = requests.get(request_url, headers={'Accept': 'application/json'}, verify=False)
317+
assert resp.status_code == 200, "Failed to get chain height %s: %s" % (request_url,resp.text)
318+
context.chainheight = getAttributeFromJSON("height", resp.json(), "Height not found in response.")
319+
context.txcount = times
314320
for i in range(int(times)):
315321
invokeChaincode(context, "invoke", functionName, containerName)
316322

@@ -577,6 +583,49 @@ def step_impl(context, seconds):
577583
print("Result of request to all peers = {0}".format(respMap))
578584
print("")
579585

586+
@then(u'I wait up to "{seconds}" seconds for transactions to be committed to peers')
587+
def step_impl(context, seconds):
588+
assert 'chainheight' in context, "chainheight not found in context"
589+
assert 'txcount' in context, "txcount not found in context"
590+
assert 'compose_containers' in context, "compose_containers not found in context"
591+
assert 'table' in context, "table (of peers) not found in context"
592+
593+
aliases = context.table.headings
594+
containerDataList = bdd_test_util.getContainerDataValuesFromContext(context, aliases, lambda containerData: containerData)
595+
596+
# Build map of "containerName" : resp.statusCode
597+
respMap = {container.containerName:0 for container in containerDataList}
598+
599+
# Set the max time before stopping attempts
600+
maxTime = datetime.now() + timedelta(seconds = int(seconds))
601+
for container in containerDataList:
602+
ipAddress = container.ipAddress
603+
request_url = buildUrl(context, ipAddress, "/chain")
604+
605+
# Loop unless failure or time exceeded
606+
while (datetime.now() < maxTime):
607+
print("{0} GETing path = {1}".format(currentTime(), request_url))
608+
resp = requests.get(request_url, headers={'Accept': 'application/json'}, verify=False)
609+
if resp.status_code == 404:
610+
# Pause then try again
611+
respMap[container.containerName] = 404
612+
time.sleep(1)
613+
continue
614+
elif resp.status_code == 200:
615+
height = getAttributeFromJSON("height", resp.json(), "Height not found in response.")
616+
if height >= int(context.chainheight) + int(context.txcount):
617+
# Success, continue
618+
respMap[container.containerName] = 200
619+
break
620+
else:
621+
continue
622+
else:
623+
raise Exception("Error requesting {0}, returned result code = {1}".format(request_url, resp.status_code))
624+
else:
625+
raise Exception("Max time exceeded waiting for transactions with current response map = {0}".format(respMap))
626+
print("Result of request to all peers = {0}".format(respMap))
627+
print("")
628+
580629

581630
@then(u'I should get a rejection message in the listener after stopping it')
582631
def step_impl(context):

0 commit comments

Comments
 (0)
Please sign in to comment.