Skip to content

Commit

Permalink
[FAB-8912] Update stable target to 1.1.0
Browse files Browse the repository at this point in the history
This change updates:
stable target to 1.1.0.
prev target to 1.0.6
prerelease target is disabled.
1.0.0 is retired from integration testing.

delivery service becomes default (used to be eventhub).

Change-Id: I07d4c4193e85f5eaf59de0990be1bca6536ac3e6
Signed-off-by: Troy Ronda <troy@troyronda.com>
  • Loading branch information
troyronda committed Mar 20, 2018
1 parent 676d7a1 commit 8b74992
Show file tree
Hide file tree
Showing 52 changed files with 388 additions and 383 deletions.
289 changes: 288 additions & 1 deletion CHANGELOG.md

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ DOCKER_CMD ?= docker
DOCKER_COMPOSE_CMD ?= docker-compose

# Fabric versions used in the Makefile
FABRIC_STABLE_VERSION := 1.0.6
FABRIC_STABLE_VERSION_MINOR := 1.0
FABRIC_STABLE_VERSION := 1.1.0
FABRIC_STABLE_VERSION_MINOR := 1.1
FABRIC_STABLE_VERSION_MAJOR := 1
FABRIC_BASEIMAGE_STABLE_VERSION := 0.4.6

FABRIC_PRERELEASE_VERSION := 1.1.0
FABRIC_PREV_VERSION := 1.0.0
FABRIC_PREV_VERSION := 1.0.6
FABRIC_DEVSTABLE_VERSION_MINOR := 1.1
FABRIC_DEVSTABLE_VERSION_MAJOR := 1

Expand Down Expand Up @@ -77,11 +77,12 @@ FABRIC_SDK_DEPRECATED_UNITTEST ?= false
INT_TESTS_LOCAL_CONFIG_FILE := config_test_local.yaml

# Code levels to exercise integration/e2e tests against (overridable)
FABRIC_STABLE_INTTEST ?= true
FABRIC_STABLE_PKCS11_INTTEST ?= false
FABRIC_PREV_INTTEST ?= false
FABRIC_PRERELEASE_INTTEST ?= false
FABRIC_DEVSTABLE_INTTEST ?= false
FABRIC_STABLE_INTTEST ?= true
FABRIC_STABLE_PKCS11_INTTEST ?= false
FABRIC_STABLE_REVOKED_INTTEST ?= false
FABRIC_PREV_INTTEST ?= false
FABRIC_PRERELEASE_INTTEST ?= false
FABRIC_DEVSTABLE_INTTEST ?= false

# Code levels
FABRIC_STABLE_CODELEVEL_TAG := stable
Expand Down Expand Up @@ -138,8 +139,9 @@ export FABRIC_SDKGO_DEPEND_INSTALL=true
FABRIC_SDK_DEPRECATED_UNITTEST := false
FABRIC_STABLE_INTTEST := true
FABRIC_STABLE_PKCS11_INTTEST := true
FABRIC_STABLE_REVOKED_INTTEST := true
FABRIC_PREV_INTTEST := true
FABRIC_PRERELEASE_INTTEST := true
FABRIC_PRERELEASE_INTTEST := false
FABRIC_DEVSTABLE_INTTEST := false
endif

Expand Down Expand Up @@ -221,14 +223,6 @@ unit-tests-pkcs11: checks depend populate
@FABRIC_SDKGO_CODELEVEL=$(FABRIC_CODELEVEL_UNITTEST_TAG) FABRIC_SDKGO_CODELEVEL_VER=$(FABRIC_CODELEVEL_UNITTEST_VER) $(TEST_SCRIPTS_PATH)/unit-pkcs11.sh


.PHONY: integration-tests-revoked
integration-tests-revoked: clean depend populate
@cd $(FIXTURE_DOCKERENV_PATH) && \
FABRIC_SDKGO_CODELEVEL_VER=$(FABRIC_STABLE_CODELEVEL_VER) FABRIC_SDKGO_CODELEVEL_TAG=$(FABRIC_STABLE_CODELEVEL_TAG) FABRIC_DOCKER_REGISTRY=$(FABRIC_RELEASE_REGISTRY)/ $(DOCKER_COMPOSE_CMD) -f docker-compose.yaml -f docker-compose-revoked.yaml up --force-recreate --abort-on-container-exit
@cd $(FIXTURE_DOCKERENV_PATH) && FABRIC_DOCKER_REGISTRY=$(FABRIC_RELEASE_REGISTRY)/ $(FIXTURE_SCRIPTS_PATH)/check_status.sh "-f ./docker-compose.yaml -f ./docker-compose-revoked.yaml"



.PHONY: integration-tests-stable
integration-tests-stable: clean depend populate
@cd $(FIXTURE_DOCKERENV_PATH) && \
Expand Down Expand Up @@ -257,6 +251,12 @@ integration-tests-devstable: clean depend populate
FABRIC_SDKGO_CODELEVEL_VER=$(FABRIC_DEVSTABLE_CODELEVEL_VER) FABRIC_SDKGO_CODELEVEL_TAG=$(FABRIC_DEVSTABLE_CODELEVEL_TAG) FABRIC_DOCKER_REGISTRY=$(FABRIC_DEV_REGISTRY)/ $(DOCKER_COMPOSE_CMD) -f docker-compose.yaml -f docker-compose-nopkcs11-test.yaml up --force-recreate --abort-on-container-exit
@cd $(FIXTURE_DOCKERENV_PATH) && FABRIC_DOCKER_REGISTRY=$(FABRIC_DEV_REGISTRY)/ $(FIXTURE_SCRIPTS_PATH)/check_status.sh "-f ./docker-compose.yaml -f ./docker-compose-nopkcs11-test.yaml"

.PHONY: integration-tests-stable-revoked
integration-tests-stable-revoked: clean depend populate
@cd $(FIXTURE_DOCKERENV_PATH) && \
FABRIC_SDKGO_CODELEVEL_VER=$(FABRIC_STABLE_CODELEVEL_VER) FABRIC_SDKGO_CODELEVEL_TAG=$(FABRIC_STABLE_CODELEVEL_TAG) FABRIC_DOCKER_REGISTRY=$(FABRIC_RELEASE_REGISTRY)/ $(DOCKER_COMPOSE_CMD) -f docker-compose.yaml -f docker-compose-revoked.yaml up --force-recreate --abort-on-container-exit
@cd $(FIXTURE_DOCKERENV_PATH) && FABRIC_DOCKER_REGISTRY=$(FABRIC_RELEASE_REGISTRY)/ $(FIXTURE_SCRIPTS_PATH)/check_status.sh "-f ./docker-compose.yaml -f ./docker-compose-revoked.yaml"

.PHONY: integration-tests-stable-pkcs11
integration-tests-stable-pkcs11: clean depend populate build-softhsm2-image
@cd $(FIXTURE_DOCKERENV_PATH) && \
Expand All @@ -278,10 +278,6 @@ integration-tests: integration-test

.PHONY: integration-test
integration-test: clean depend populate
ifeq ($(FABRIC_STABLE_INTTEST),true)
@$(MAKE) -f $(MAKEFILE_THIS) clean
@FABRIC_SDKGO_SUBTARGET=true $(MAKE) -f $(MAKEFILE_THIS) integration-tests-revoked
endif
ifeq ($(FABRIC_STABLE_INTTEST),true)
@$(MAKE) -f $(MAKEFILE_THIS) clean
@FABRIC_SDKGO_SUBTARGET=true $(MAKE) -f $(MAKEFILE_THIS) integration-tests-stable
Expand All @@ -290,6 +286,10 @@ ifeq ($(FABRIC_STABLE_PKCS11_INTTEST),true)
@$(MAKE) -f $(MAKEFILE_THIS) clean
@FABRIC_SDKGO_SUBTARGET=true $(MAKE) -f $(MAKEFILE_THIS) integration-tests-stable-pkcs11
endif
ifeq ($(FABRIC_STABLE_REVOKED_INTTEST),true)
@$(MAKE) -f $(MAKEFILE_THIS) clean
@FABRIC_SDKGO_SUBTARGET=true $(MAKE) -f $(MAKEFILE_THIS) integration-tests-stable-revoked
endif
ifeq ($(FABRIC_PRERELEASE_INTTEST),true)
@$(MAKE) -f $(MAKEFILE_THIS) clean
@FABRIC_SDKGO_SUBTARGET=true $(MAKE) -f $(MAKEFILE_THIS) integration-tests-prerelease
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ You're good to go, happy coding! Check out the examples for usage demonstrations

### Current Compatibility
The SDK's integration tests run against three tagged Fabric versions:
- prev (currently v1.0.0)
- stable (currently latest of v1.0.x)
- prerelease (currently latest of v1.1.0-x)
- prev (currently v1.0.6)
- stable (currently v1.1.0)
- prerelease (currently disabled)

Additionally for development purposes integration tests also run against the devstable Fabric version as needed.

### Retired versions
When the 'prev' code level is updated, the last tested fabric-sdk-go commit or tag is listed below.

- fabric v1.0.0 & fabric-ca v1.0.0
- fabric-sdk-go: master:HEAD
- fabric-sdk-go: 79b343ba

### Running the test suite

Expand Down
6 changes: 3 additions & 3 deletions pkg/core/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -542,10 +542,10 @@ func (c *Config) Timeout(tType core.TimeoutType) time.Duration {
func (c *Config) EventServiceType() core.EventServiceType {
etype := c.configViper.GetString("client.eventService.type")
switch etype {
case "deliver":
return core.DeliverEventServiceType
default:
case "eventhub":
return core.EventHubEventServiceType
default:
return core.DeliverEventServiceType
}
}

Expand Down
1 change: 0 additions & 1 deletion pkg/fab/orderer/orderer.go
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ func (o *Orderer) SendBroadcast(ctx reqContext.Context, envelope *fab.SignedEnve
func broadcastStream(broadcastClient ab.AtomicBroadcast_BroadcastClient, responses chan common.Status, errs chan error) {

broadcastResponse, err := broadcastClient.Recv()
logger.Debugf("Orderer.broadcastStream - response:%v, error:%v", broadcastResponse, err)
if err != nil {
rpcStatus, ok := grpcstatus.FromError(err)
if ok {
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/config/config_pkcs11_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ client:
# This interval will define how long a peer is greylisted
greylistExpiry: 5s
eventService:
# Event service type (deliver|eventhub) - default: eventhub
# Event service type (deliver|eventhub) - default: deliver
# NOTE: This is temporary until the SDK starts making use of channel capabilities
type: eventhub
type: deliver
timeout:
connection: 3s
registrationResponse: 10s
Expand Down
21 changes: 10 additions & 11 deletions test/fixtures/config/config_revoke_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ client:
# This interval will define how long a peer is greylisted
greylistExpiry: 5s
eventService:
# Event service type (deliver|eventhub) - default: eventhub
# Event service type (deliver|eventhub) - default: deliver
# NOTE: This is temporary until the SDK starts making use of channel capabilities
type: eventhub
type: deliver
timeout:
connection: 3s
registrationResponse: 10s
Expand Down Expand Up @@ -274,12 +274,11 @@ peers:
# this URL is used to connect the EventHub and registering event listeners
eventUrl: peer0.org1.example.com:7053

#TODO to be moved to high level, common for all grpc connections
grpcOptions:
ssl-target-name-override: peer0.org1.example.com
# These parameters should be set in coordination with the keepalive policy on the server,
# as incompatible settings can result in closing of connection.
# When duration of the 'keep-alive-time' is set to 0 or less the keep alive client parameters are disabled
# These parameters should be set in coordination with the keepalive policy on the server,
# as incompatible settings can result in closing of connection.
# When duration of the 'keep-alive-time' is set to 0 or less the keep alive client parameters are disabled
keep-alive-time: 0s
keep-alive-timeout: 20s
keep-alive-permit: false
Expand All @@ -294,13 +293,13 @@ peers:

local.peer1.org2.example.com:
url: peer1.org2.example.com:9051
eventUrl: peer1.org2.example.com:9053
#TODO to be moved to high level, common for all grpc connections
#eventUrl: peer1.org2.example.com:9053

grpcOptions:
ssl-target-name-override: peer1.org2.example.com
# These parameters should be set in coordination with the keepalive policy on the server,
# as incompatible settings can result in closing of connection.
# When duration of the 'keep-alive-time' is set to 0 or less the keep alive client parameters are disabled
# These parameters should be set in coordination with the keepalive policy on the server,
# as incompatible settings can result in closing of connection.
# When duration of the 'keep-alive-time' is set to 0 or less the keep alive client parameters are disabled
keep-alive-time: 0s
keep-alive-timeout: 20s
keep-alive-permit: false
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/config/config_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ client:
# This interval will define how long a peer is greylisted
greylistExpiry: 5s
eventService:
# Event service type (deliver|eventhub) - default: eventhub
# Event service type (deliver|eventhub) - default: deliver
# NOTE: This is temporary until the SDK starts making use of channel capabilities
type: eventhub
type: deliver
timeout:
connection: 3s
registrationResponse: 10s
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/config/config_test_local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ client:
# This interval will define how long a peer is greylisted
greylistExpiry: 5s
eventService:
# Event service type (deliver|eventhub) - default: eventhub
# Event service type (deliver|eventhub) - default: deliver
# NOTE: This is temporary until the SDK starts making use of channel capabilities
type: eventhub
type: deliver
timeout:
connection: 3s
registrationResponse: 10s
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/config/config_test_no_orderer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ client:
# This interval will define how long a peer is greylisted
greylistExpiry: 5s
eventService:
# Event service type (deliver|eventhub) - default: eventhub
# Event service type (deliver|eventhub) - default: deliver
# NOTE: This is temporary until the SDK starts making use of channel capabilities
type: eventhub
type: deliver
timeout:
connection: 3s
registrationResponse: 10s
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/config/config_test_no_orderer_local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ client:
# This interval will define how long a peer is greylisted
greylistExpiry: 5s
eventService:
# Event service type (deliver|eventhub) - default: eventhub
# Event service type (deliver|eventhub) - default: deliver
# NOTE: This is temporary until the SDK starts making use of channel capabilities
type: eventhub
type: deliver
timeout:
connection: 3s
registrationResponse: 10s
Expand Down
16 changes: 8 additions & 8 deletions test/fixtures/dockerenv/.env
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ COMPOSE_PROJECT_NAME=fabsdkgo

FABRIC_DOCKER_REGISTRY=

FABRIC_FIXTURE_VERSION=v1.0
FABRIC_FIXTURE_VERSION=v1.1
FABRIC_CRYPTOCONFIG_VERSION=v1

FABRIC_CA_FIXTURE_TAG=1.0.6
FABRIC_ORDERER_FIXTURE_TAG=1.0.6
FABRIC_PEER_FIXTURE_TAG=1.0.6
FABRIC_COUCHDB_FIXTURE_TAG=1.0.6
FABRIC_BUILDER_FIXTURE_TAG=1.0.6
FABRIC_BASEOS_FIXTURE_TAG=0.4.2
FABRIC_BASEIMAGE_FIXTURE_TAG=0.4.2
FABRIC_CA_FIXTURE_TAG=1.1.0
FABRIC_ORDERER_FIXTURE_TAG=1.1.0
FABRIC_PEER_FIXTURE_TAG=1.1.0
FABRIC_COUCHDB_FIXTURE_TAG=1.1.0
FABRIC_BUILDER_FIXTURE_TAG=1.1.0
FABRIC_BASEOS_FIXTURE_TAG=0.4.6
FABRIC_BASEIMAGE_FIXTURE_TAG=0.4.6

FABRIC_CA_FIXTURE_IMAGE=hyperledger/fabric-ca
FABRIC_ORDERER_FIXTURE_IMAGE=hyperledger/fabric-orderer
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/dockerenv/devstable-env.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/bin/bash
#
# Copyright SecureKey Technologies Inc. All Rights Reserved.
#
Expand Down
1 change: 1 addition & 0 deletions test/fixtures/dockerenv/docker-compose-nopkcs11-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ services:
- GO_TESTFLAGS
- FABRIC_SDKGO_CODELEVEL_TAG
- FABRIC_SDKGO_CODELEVEL_VER
- FABRIC_FIXTURE_VERSION
- FABRIC_SDK_CLIENT_EVENTSERVICE_TYPE
volumes:
- ../../../:/opt/gopath/src/github.com/hyperledger/fabric-sdk-go
Expand Down
1 change: 1 addition & 0 deletions test/fixtures/dockerenv/docker-compose-pkcs11-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
- GO_TESTFLAGS
- FABRIC_SDKGO_CODELEVEL_TAG
- FABRIC_SDKGO_CODELEVEL_VER
- FABRIC_FIXTURE_VERSION
- FABRIC_SDK_CLIENT_EVENTSERVICE_TYPE
volumes:
- ../../../:/opt/gopath/src/github.com/hyperledger/fabric-sdk-go
Expand Down
2 changes: 2 additions & 0 deletions test/fixtures/dockerenv/docker-compose-revoked.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ services:
- GO_TESTFLAGS
- FABRIC_SDKGO_CODELEVEL_TAG
- FABRIC_SDKGO_CODELEVEL_VER
- FABRIC_FIXTURE_VERSION
- FABRIC_SDK_CLIENT_EVENTSERVICE_TYPE
volumes:
- ../../../:/opt/gopath/src/github.com/hyperledger/fabric-sdk-go
Expand All @@ -23,5 +24,6 @@ services:
- org2ca1
- org1peer1
- org2peer1
- org2peer2
- orderer1
- builder
5 changes: 3 additions & 2 deletions test/fixtures/dockerenv/nomutualtls-env.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
#
# Copyright SecureKey Technologies Inc. All Rights Reserved.
#
Expand All @@ -12,5 +13,5 @@ export CORE_PEER_TLS_CLIENTROOTCAS_FILES=""
export ORDERER_GENERAL_TLS_CLIENTAUTHENABLED=false
export ORDERER_GENERAL_TLS_CLIENTROOTCAS=""

FABRIC_SDK_CLIENT_TLSCERTS_CLIENT_KEYFILE=""
FABRIC_SDK_CLIENT_TLSCERTS_CLIENT_CERTFILE=""
export FABRIC_SDK_CLIENT_TLSCERTS_CLIENT_KEYFILE=""
export FABRIC_SDK_CLIENT_TLSCERTS_CLIENT_CERTFILE=""
9 changes: 6 additions & 3 deletions test/fixtures/dockerenv/prerelease-env.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/bin/bash
#
# Copyright SecureKey Technologies Inc. All Rights Reserved.
#
Expand All @@ -15,8 +15,10 @@ export FABRIC_ORDERER_FIXTURE_TAG="1.1.0"
export FABRIC_PEER_FIXTURE_TAG="1.1.0"
export FABRIC_COUCHDB_FIXTURE_TAG="1.1.0"
export FABRIC_BUILDER_FIXTURE_TAG="1.1.0"
export FABRIC_BASEOS_FIXTURE_TAG="0.4.6"
export FABRIC_BASEIMAGE_FIXTURE_TAG="0.4.6"

# Using default BASSEOS image (until there is a compatibility issue)
# export FABRIC_BASEOS_FIXTURE_TAG="0.4.6"
# export FABRIC_BASEIMAGE_FIXTURE_TAG="0.4.6"

# override configuration that loads crypto-config
export FABRIC_SDK_CLIENT_CRYPTOCONFIG_PATH='${GOPATH}'"/src/github.com/hyperledger/fabric-sdk-go/test/fixtures/fabric/${FABRIC_CRYPTOCONFIG_VERSION}/crypto-config"
Expand All @@ -27,4 +29,5 @@ export CORE_PEER_TLS_CLIENTAUTHREQUIRED=true
export CORE_PEER_TLS_CLIENTROOTCAS_FILES="/etc/hyperledger/tls/peer/ca.crt /etc/hyperledger/mutual_tls/peer/client_sdk_go-ca_root.pem"
export ORDERER_GENERAL_TLS_CLIENTAUTHENABLED=true
export ORDERER_GENERAL_TLS_CLIENTROOTCAS="[/etc/hyperledger/tls/orderer/ca.crt,/etc/hyperledger/mutual_tls/orderer/client_sdk_go-ca_root.pem]"

export FABRIC_SDK_CLIENT_EVENTSERVICE_TYPE=deliver
25 changes: 14 additions & 11 deletions test/fixtures/dockerenv/prev-env.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
#
# Copyright SecureKey Technologies Inc. All Rights Reserved.
#
Expand All @@ -9,16 +10,18 @@
export FABRIC_FIXTURE_VERSION="v1.0"
export FABRIC_CRYPTOCONFIG_VERSION="v1"

export FABRIC_CA_FIXTURE_TAG="1.0.0"
export FABRIC_ORDERER_FIXTURE_TAG="1.0.0"
export FABRIC_PEER_FIXTURE_TAG="1.0.0"
export FABRIC_COUCHDB_FIXTURE_TAG="1.0.0"
export FABRIC_BUILDER_FIXTURE_TAG="1.0.0"
export FABRIC_BASEOS_FIXTURE_TAG="0.4.2"
export FABRIC_BASEIMAGE_FIXTURE_TAG="0.4.2"
export FABRIC_CA_FIXTURE_TAG="1.0.6"
export FABRIC_ORDERER_FIXTURE_TAG="1.0.6"
export FABRIC_PEER_FIXTURE_TAG="1.0.6"
export FABRIC_COUCHDB_FIXTURE_TAG="1.0.6"
export FABRIC_BUILDER_FIXTURE_TAG="1.0.6"

# Using default BASSEOS image (until there is a compatibility issue)
# export FABRIC_BASEOS_FIXTURE_TAG="0.4.2"
# export FABRIC_BASEIMAGE_FIXTURE_TAG="0.4.2"

# override configuration that loads crypto-config
FABRIC_SDK_CLIENT_CRYPTOCONFIG_PATH='${GOPATH}'"/src/github.com/hyperledger/fabric-sdk-go/test/fixtures/fabric/${FABRIC_CRYPTOCONFIG_VERSION}/crypto-config"
FABRIC_SDK_CLIENT_ORDERERS_TLSCACERTS_PATH='${GOPATH}'"/src/github.com/hyperledger/fabric-sdk-go/test/fixtures/fabric/${FABRIC_CRYPTOCONFIG_VERSION}/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem"
FABRIC_SDK_CLIENT_PEERS_PEER0_ORG1_EXAMPLE_COM_TLSCACERTS_PATH='${GOPATH}'"/src/github.com/hyperledger/fabric-sdk-go/test/fixtures/fabric/${FABRIC_CRYPTOCONFIG_VERSION}/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem"
FABRIC_SDK_CLIENT_PEERS_PEER0_ORG2_EXAMPLE_COM_TLSCACERTS_PATH='${GOPATH}'"/src/github.com/hyperledger/fabric-sdk-go/test/fixtures/fabric/${FABRIC_CRYPTOCONFIG_VERSION}/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem"
export FABRIC_SDK_CLIENT_CRYPTOCONFIG_PATH='${GOPATH}'"/src/github.com/hyperledger/fabric-sdk-go/test/fixtures/fabric/${FABRIC_CRYPTOCONFIG_VERSION}/crypto-config"
export FABRIC_SDK_CLIENT_ORDERERS_TLSCACERTS_PATH='${GOPATH}'"/src/github.com/hyperledger/fabric-sdk-go/test/fixtures/fabric/${FABRIC_CRYPTOCONFIG_VERSION}/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem"

export FABRIC_SDK_CLIENT_EVENTSERVICE_TYPE=eventhub
Binary file removed test/fixtures/fabric/v1.0.0/channel/mychannel.tx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed test/fixtures/fabric/v1.0.0/channel/orgchannel.tx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed test/fixtures/fabric/v1.0.0/channel/testchannel.tx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 8b74992

Please sign in to comment.