@@ -311,6 +311,12 @@ def step_impl(context, chaincodeName, functionName, containerName, idGenAlg):
311
311
@when (u'I invoke chaincode "{chaincodeName}" function name "{functionName}" on "{containerName}" "{times}" times' )
312
312
def step_impl (context , chaincodeName , functionName , containerName , times ):
313
313
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
314
320
for i in range (int (times )):
315
321
invokeChaincode (context , "invoke" , functionName , containerName )
316
322
@@ -577,6 +583,49 @@ def step_impl(context, seconds):
577
583
print ("Result of request to all peers = {0}" .format (respMap ))
578
584
print ("" )
579
585
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
+
580
629
581
630
@then (u'I should get a rejection message in the listener after stopping it' )
582
631
def step_impl (context ):
0 commit comments