forked from hyperledger/fabric-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FABG-932] Add java chaincode integration test (hyperledger#38)
[FABG-932] Add java chaincode integration test Signed-off-by: yakumioto <[email protected]>
- Loading branch information
Showing
11 changed files
with
381 additions
and
21 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
4 changes: 0 additions & 4 deletions
4
pkg/fab/ccpackager/javapackager/testdata/events_cc/.gitignore
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
pkg/fab/ccpackager/javapackager/testdata/example_cc/.gitignore
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
pkg/fab/ccpackager/javapackager/testdata/example_cc1/.gitignore
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
/* | ||
* Copyright IBM Corp. 2018 All Rights Reserved. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
plugins { | ||
id 'com.github.johnrengelman.shadow' version '2.0.3' | ||
id 'java' | ||
} | ||
|
||
group 'org.hyperledger.fabric-chaincode-java' | ||
version '1.0-SNAPSHOT' | ||
|
||
sourceCompatibility = 1.8 | ||
|
||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
compile group: 'org.hyperledger.fabric-chaincode-java', name: 'fabric-chaincode-shim', version: '1.+' | ||
testCompile group: 'junit', name: 'junit', version: '4.12' | ||
} | ||
|
||
shadowJar { | ||
baseName = 'chaincode' | ||
version = null | ||
classifier = null | ||
|
||
manifest { | ||
attributes 'Main-Class': 'org.hyperledger.fabric.example.SimpleChaincode' | ||
} | ||
} |
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,7 @@ | ||
/* | ||
* Copyright IBM Corp. 2017 All Rights Reserved. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
rootProject.name = 'fabric-chaincode-example-gradle' | ||
|
142 changes: 142 additions & 0 deletions
142
...javatestdata/example_cc/src/main/java/org/hyperledger/fabric/example/SimpleChaincode.java
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,142 @@ | ||
/* | ||
Copyright IBM Corp., DTCC All Rights Reserved. | ||
SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package org.hyperledger.fabric.example; | ||
|
||
import java.util.List; | ||
|
||
import com.google.protobuf.ByteString; | ||
import io.netty.handler.ssl.OpenSsl; | ||
import org.apache.commons.logging.Log; | ||
import org.apache.commons.logging.LogFactory; | ||
import org.hyperledger.fabric.shim.ChaincodeBase; | ||
import org.hyperledger.fabric.shim.ChaincodeStub; | ||
|
||
import static java.nio.charset.StandardCharsets.UTF_8; | ||
|
||
public class SimpleChaincode extends ChaincodeBase { | ||
|
||
private static Log _logger = LogFactory.getLog(SimpleChaincode.class); | ||
|
||
@Override | ||
public Response init(ChaincodeStub stub) { | ||
try { | ||
_logger.info("Init java simple chaincode"); | ||
String func = stub.getFunction(); | ||
if (!func.equals("init")) { | ||
return newErrorResponse("function other than init is not supported"); | ||
} | ||
List<String> args = stub.getParameters(); | ||
if (args.size() != 4) { | ||
newErrorResponse("Incorrect number of arguments. Expecting 4"); | ||
} | ||
// Initialize the chaincode | ||
String account1Key = args.get(0); | ||
int account1Value = Integer.parseInt(args.get(1)); | ||
String account2Key = args.get(2); | ||
int account2Value = Integer.parseInt(args.get(3)); | ||
|
||
_logger.info(String.format("account %s, value = %s; account %s, value %s", account1Key, account1Value, account2Key, account2Value)); | ||
stub.putStringState(account1Key, args.get(1)); | ||
stub.putStringState(account2Key, args.get(3)); | ||
|
||
return newSuccessResponse(); | ||
} catch (Throwable e) { | ||
return newErrorResponse(e); | ||
} | ||
} | ||
|
||
@Override | ||
public Response invoke(ChaincodeStub stub) { | ||
try { | ||
_logger.info("Invoke java simple chaincode"); | ||
String func = stub.getFunction(); | ||
List<String> params = stub.getParameters(); | ||
if (func.equals("invoke")) { | ||
return invoke(stub, params); | ||
} | ||
if (func.equals("delete")) { | ||
return delete(stub, params); | ||
} | ||
if (func.equals("query")) { | ||
return query(stub, params); | ||
} | ||
return newErrorResponse("Invalid invoke function name. Expecting one of: [\"invoke\", \"delete\", \"query\"]"); | ||
} catch (Throwable e) { | ||
return newErrorResponse(e); | ||
} | ||
} | ||
|
||
private Response invoke(ChaincodeStub stub, List<String> args) { | ||
if (args.size() != 3) { | ||
return newErrorResponse("Incorrect number of arguments. Expecting 3"); | ||
} | ||
String accountFromKey = args.get(0); | ||
String accountToKey = args.get(1); | ||
|
||
String accountFromValueStr = stub.getStringState(accountFromKey); | ||
if (accountFromValueStr == null) { | ||
return newErrorResponse(String.format("Entity %s not found", accountFromKey)); | ||
} | ||
int accountFromValue = Integer.parseInt(accountFromValueStr); | ||
|
||
String accountToValueStr = stub.getStringState(accountToKey); | ||
if (accountToValueStr == null) { | ||
return newErrorResponse(String.format("Entity %s not found", accountToKey)); | ||
} | ||
int accountToValue = Integer.parseInt(accountToValueStr); | ||
|
||
int amount = Integer.parseInt(args.get(2)); | ||
|
||
if (amount > accountFromValue) { | ||
return newErrorResponse(String.format("not enough money in account %s", accountFromKey)); | ||
} | ||
|
||
accountFromValue -= amount; | ||
accountToValue += amount; | ||
|
||
_logger.info(String.format("new value of A: %s", accountFromValue)); | ||
_logger.info(String.format("new value of B: %s", accountToValue)); | ||
|
||
stub.putStringState(accountFromKey, Integer.toString(accountFromValue)); | ||
stub.putStringState(accountToKey, Integer.toString(accountToValue)); | ||
|
||
_logger.info("Transfer complete"); | ||
|
||
return newSuccessResponse("invoke finished successfully", ByteString.copyFrom(accountFromKey + ": " + accountFromValue + " " + accountToKey + ": " + accountToValue, UTF_8).toByteArray()); | ||
} | ||
|
||
// Deletes an entity from state | ||
private Response delete(ChaincodeStub stub, List<String> args) { | ||
if (args.size() != 1) { | ||
return newErrorResponse("Incorrect number of arguments. Expecting 1"); | ||
} | ||
String key = args.get(0); | ||
// Delete the key from the state in ledger | ||
stub.delState(key); | ||
return newSuccessResponse(); | ||
} | ||
|
||
// query callback representing the query of a chaincode | ||
private Response query(ChaincodeStub stub, List<String> args) { | ||
if (args.size() != 1) { | ||
return newErrorResponse("Incorrect number of arguments. Expecting name of the person to query"); | ||
} | ||
String key = args.get(0); | ||
//byte[] stateBytes | ||
String val = stub.getStringState(key); | ||
if (val == null) { | ||
return newErrorResponse(String.format("Error: state for %s is null", key)); | ||
} | ||
_logger.info(String.format("Query Response:\nName: %s, Amount: %s\n", key, val)); | ||
return newSuccessResponse(val, ByteString.copyFrom(val, UTF_8).toByteArray()); | ||
} | ||
|
||
public static void main(String[] args) { | ||
System.out.println("OpenSSL avaliable: " + OpenSsl.isAvailable()); | ||
new SimpleChaincode().start(args); | ||
} | ||
|
||
} |
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
80 changes: 80 additions & 0 deletions
80
test/integration/pkg/client/channel/channel_client_javacc_test.go
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,80 @@ | ||
/* | ||
Copyright Mioto Yaku All Rights Reserved. | ||
SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package channel | ||
|
||
import ( | ||
"testing" | ||
"time" | ||
|
||
"github.com/hyperledger/fabric-sdk-go/pkg/client/channel" | ||
"github.com/hyperledger/fabric-sdk-go/pkg/common/errors/retry" | ||
"github.com/hyperledger/fabric-sdk-go/pkg/fabsdk" | ||
"github.com/hyperledger/fabric-sdk-go/test/integration" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
// TestJavaChaincodeInstallInstantiateAndUpgrade tests install java chaincode, | ||
// instantiate java chaincode upgrade java chaincode | ||
func TestJavaChaincodeInstallInstantiateAndUpgrade(t *testing.T) { | ||
sdk := mainSDK | ||
|
||
orgsContext := setupMultiOrgContext(t, sdk) | ||
err := integration.EnsureChannelCreatedAndPeersJoined(t, sdk, orgChannelID, "orgchannel.tx", orgsContext) | ||
require.NoError(t, err) | ||
|
||
ccID := integration.GenerateExampleJavaID(false) | ||
|
||
err = integration.InstallExampleJavaChaincode(orgsContext, ccID) | ||
require.NoError(t, err) | ||
|
||
err = integration.InstantiateExampleJavaChaincode(orgsContext, orgChannelID, ccID, "OR('Org1MSP.member','Org2MSP.member')") | ||
require.NoError(t, err) | ||
|
||
err = integration.UpgradeExampleJavaChaincode(orgsContext, orgChannelID, ccID, "OR('Org1MSP.member','Org2MSP.member')") | ||
require.NoError(t, err) | ||
|
||
//prepare context | ||
org1ChannelClientContext := sdk.ChannelContext(orgChannelID, fabsdk.WithUser(org1User), fabsdk.WithOrg(org1Name)) | ||
|
||
//get channel client | ||
chClient, err := channel.New(org1ChannelClientContext) | ||
if err != nil { | ||
t.Fatalf("Failed to create new channel client: %s", err) | ||
} | ||
|
||
// test query | ||
testJavaQuery(t, chClient, "200", ccID, "b") | ||
} | ||
|
||
func testJavaQuery(t *testing.T, chClient *channel.Client, expected string, ccID, key string) { | ||
const ( | ||
maxRetries = 10 | ||
retrySleep = 500 * time.Millisecond | ||
) | ||
|
||
for r := 0; r < 10; r++ { | ||
response, err := chClient.Query(channel.Request{ChaincodeID: ccID, Fcn: "query", Args: [][]byte{[]byte(key)}}, | ||
channel.WithRetry(retry.DefaultChannelOpts)) | ||
if err == nil { | ||
actual := string(response.Payload) | ||
if actual == expected { | ||
return | ||
} | ||
|
||
t.Logf("On Attempt [%d / %d]: Response didn't match expected value [%s, %s]", r, maxRetries, actual, expected) | ||
} else { | ||
t.Logf("On Attempt [%d / %d]: failed to invoke example cc '%s' with Args:[%+v], error: %+v", r, maxRetries, ccID, integration.ExampleCCQueryArgs(key), err) | ||
if r < 9 { | ||
t.Logf("will retry in %v", retrySleep) | ||
} | ||
} | ||
|
||
time.Sleep(retrySleep) | ||
} | ||
|
||
t.Fatal("Exceeded max retries") | ||
} |
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
Oops, something went wrong.