File tree Expand file tree Collapse file tree 4 files changed +13
-9
lines changed
src/integration-test/java/org/fisco/bcos/sdk/v3/test Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -164,13 +164,6 @@ LOG_INFO "------ check_standard_node---------"
164164check_standard_node
165165rm -rf ./bin
166166
167- LOG_INFO " ------ download_binary: v3.2.0---------"
168- download_build_chain " v3.2.0"
169- download_binary " v3.2.0"
170- LOG_INFO " ------ check_standard_node---------"
171- check_standard_node " true" " sm" " -s -A"
172- rm -rf ./bin
173-
174167LOG_INFO " ------ download_binary: v3.1.0---------"
175168download_build_chain " v3.1.0"
176169download_binary " v3.1.0"
@@ -188,6 +181,13 @@ rm -rf ./bin
188181LOG_INFO " ------ download_build_chain: v3.3.0---------"
189182download_binary " v3.3.0"
190183download_build_chain " v3.3.0"
184+ LOG_INFO " ------ check_standard_node---------"
185+ check_standard_node " true" " sm" " -s"
186+ rm -rf ./bin
187+
188+ LOG_INFO " ------ download_build_chain: v3.4.0---------"
189+ download_binary " v3.4.0"
190+ download_build_chain " v3.4.0"
191191LOG_INFO " ------ check_wasm_node---------"
192192check_wasm_node " false"
193193LOG_INFO " ------ check_standard_node---------"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ coverage:
77 status :
88 project :
99 default :
10- target : " 30 %"
10+ target : " 40 %"
1111 threshold : " 1%"
1212 if_not_found : success
1313 patch :
Original file line number Diff line number Diff line change 3535// integrationTest.mustRunAfter test
3636allprojects {
3737 group = ' org.fisco-bcos.java-sdk'
38- version = ' 3.4.0 '
38+ version = ' 3.5.0-SNAPSHOT '
3939
4040 apply plugin : ' maven-publish'
4141 apply plugin : ' idea'
Original file line number Diff line number Diff line change @@ -337,9 +337,13 @@ public void onError(Response errorResponse) {
337337 BcosTransaction transaction1 = client .getTransaction (txHash , false );
338338 BcosTransactionReceipt transactionReceipt = client .getTransactionReceipt (txHash , false );
339339 if (client .getChainCompatibilityVersion ().compareTo (EnumNodeVersion .BCOS_3_2_0 .toVersionObj ()) >= 0 ) {
340+ Assert .assertEquals (extraData , receipt .getExtraData ());
340341 Assert .assertEquals (extraData , transaction1 .getResult ().getExtraData ());
341342 Assert .assertEquals (extraData , transactionReceipt .getResult ().getExtraData ());
343+ Assert .assertFalse (receipt .getInput ().isEmpty ());
342344 }
345+ Assert .assertFalse (transactionReceipt .getResult ().getInput ().isEmpty ());
346+ Assert .assertFalse (transaction1 .getResult ().getInput ().isEmpty ());
343347
344348 // get 2nd block
345349 block1 =
You can’t perform that action at this time.
0 commit comments