This is an automated email from the ASF dual-hosted git repository.
szaszm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
The following commit(s) were added to refs/heads/main by this push:
new 8ec4932 MINIFICPP-1589 Adapt Azure tests to naming conventions to fix
failures
8ec4932 is described below
commit 8ec49327008acf38eef2074654205e6294bee17f
Author: Gabor Gyimesi <[email protected]>
AuthorDate: Mon Jun 14 13:25:55 2021 +0200
MINIFICPP-1589 Adapt Azure tests to naming conventions to fix failures
Closes #1105
Signed-off-by: Marton Szasz <[email protected]>
---
docker/test/integration/minifi/core/SingleNodeDockerCluster.py | 4 ++--
docker/test/integration/minifi/processors/PutAzureBlobStorage.py | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docker/test/integration/minifi/core/SingleNodeDockerCluster.py
b/docker/test/integration/minifi/core/SingleNodeDockerCluster.py
index e33b57e..79ca7dc 100644
--- a/docker/test/integration/minifi/core/SingleNodeDockerCluster.py
+++ b/docker/test/integration/minifi/core/SingleNodeDockerCluster.py
@@ -218,7 +218,7 @@ class SingleNodeDockerCluster(Cluster):
def deploy_kafka_broker(self):
logging.info('Creating and running docker containers for kafka
broker...')
zookeeper = self.client.containers.run(
- self.client.images.pull("wurstmeister/zookeeper:latest"),
+ self.client.images.pull("wurstmeister/zookeeper:3.4.6"),
detach=True,
name='zookeeper',
network=self.network.name,
@@ -281,7 +281,7 @@ class SingleNodeDockerCluster(Cluster):
def deploy_azure_storage_server(self):
server = self.client.containers.run(
- "mcr.microsoft.com/azure-storage/azurite",
+ "mcr.microsoft.com/azure-storage/azurite:3.13.0",
detach=True,
name='azure-storage-server',
network=self.network.name,
diff --git a/docker/test/integration/minifi/processors/PutAzureBlobStorage.py
b/docker/test/integration/minifi/processors/PutAzureBlobStorage.py
index 42d3015..aeca6df 100644
--- a/docker/test/integration/minifi/processors/PutAzureBlobStorage.py
+++ b/docker/test/integration/minifi/processors/PutAzureBlobStorage.py
@@ -5,9 +5,9 @@ class PutAzureBlobStorage(Processor):
def __init__(self):
super(PutAzureBlobStorage, self).__init__('PutAzureBlobStorage',
properties={
- 'Container Name':
'test_container',
+ 'Container Name':
'test-container',
'Connection String':
'DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azure-storage-server:10000/devstoreaccount1;QueueEndpoint=http://azure-storage-server:10001/devstoreaccount1;',
- 'Blob': 'test_blob',
+ 'Blob': 'test-blob',
'Create Container':
'true',
},
auto_terminate=['success',
'failure'])