You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by sz...@apache.org on 2021/02/22 16:39:10 UTC

[nifi-minifi-cpp] branch MINIFICPP-1463-RC1 updated (a52faa5 -> ae74606)

This is an automated email from the ASF dual-hosted git repository.

szaszm pushed a change to branch MINIFICPP-1463-RC1
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git.


    from a52faa5  MINIFICPP-1485 Improve 'exclusive property' error message
     add 4518628  MINIFICPP-1491: Fixing build failures in Tensorflow extension
     add 53df4c2  MINIFICPP-1451: ThreadPoolAdjust test transiently failed on Windows CI
     add 0d74aa4  MINIFICPP-1498 Add libarchive to minimal docker image
     add ce84cfc  MINIFICPP-1495 - Do not pretty-print windows events
     add 07eb6cd  MINIFICPP-1490 Add ARCH support to bootstrap process
     add 281801f  Introduce ccache in MacOS builds
     add 420c205  MINIFICPP-1505 - Add SFTP build support to win built bat
     add 597feea  MINIFICPP-1497: Remove misleading ThreadPoolAdjust integration test
     add ae74606  MINIFICPP-1445 - Move docker integration tests to python behave

No new revisions were added by this update.

Summary of changes:
 .github/workflows/ci.yml                           |  32 ++-
 aptitude.sh => arch.sh                             |  40 ++--
 bootstrap.sh                                       |   4 +
 docker/DockerVerify.sh                             |  25 +-
 docker/Dockerfile                                  |   3 +-
 .../integration/MiNiFi_integration_test_driver.py  | 210 +++++++++++++++++
 docker/test/integration/README.md                  | 193 +---------------
 .../{minifi/validators => }/__init__.py            |   0
 docker/test/integration/environment.py             |  27 +++
 .../features/file_system_operations.feature        |  40 ++++
 docker/test/integration/features/http.feature      |  60 +++++
 docker/test/integration/features/https.feature     |  23 ++
 docker/test/integration/features/kafka.feature     |  59 +++++
 docker/test/integration/features/s2s.feature       |  45 ++++
 docker/test/integration/features/s3.feature        | 155 +++++++++++++
 docker/test/integration/minifi/__init__.py         |  69 ------
 docker/test/integration/minifi/core/Cluster.py     |   2 +-
 docker/test/integration/minifi/core/Connectable.py |  45 +---
 .../integration/minifi/core/ControllerService.py   |   1 +
 .../integration/minifi/core/DockerTestCluster.py   | 192 ++++------------
 .../minifi/core/DockerTestDirectoryBindings.py     | 104 +++++++++
 .../integration/minifi/core/FileSystemObserver.py  |  46 ++++
 .../integration/minifi/core/OutputEventHandler.py  |  15 +-
 docker/test/integration/minifi/core/Processor.py   |  11 +
 .../integration/minifi/core/RemoteProcessGroup.py  |  10 +-
 .../test/integration/minifi/core/SSL_cert_utils.py |  54 +++++
 .../minifi/core/SingleNodeDockerCluster.py         | 153 ++++++------
 .../minifi/processors/GenerateFlowFile.py          |   3 +-
 .../test/integration/minifi/processors/GetFile.py  |   2 +-
 .../integration/minifi/processors/HashContent.py   |   8 +
 .../integration/minifi/processors/InvokeHTTP.py    |  18 +-
 .../integration/minifi/processors/ListenHTTP.py    |   4 +-
 .../minifi/processors/PublishKafkaSSL.py           |  16 --
 .../test/integration/minifi/processors/PutFile.py  |   2 +-
 .../integration/minifi/processors/PutS3Object.py   |   2 +-
 docker/test/integration/steps/steps.py             | 256 +++++++++++++++++++++
 docker/test/integration/test_filesystem_ops.py     |  51 ----
 docker/test/integration/test_filter_zero_file.py   |  36 ---
 docker/test/integration/test_hash_content.py       |  32 ---
 docker/test/integration/test_http.py               |  57 -----
 docker/test/integration/test_rdkafka.py            |  98 --------
 docker/test/integration/test_s2s.py                |  38 ---
 docker/test/integration/test_s3.py                 | 144 ------------
 docker/test/integration/test_zero_file.py          |  36 ---
 docker/test/test_https.py                          | 100 --------
 extensions/http-curl/tests/CMakeLists.txt          |   1 -
 extensions/http-curl/tests/ThreadPoolAdjust.cpp    |  89 -------
 extensions/tensorflow/TFExtractTopLabels.cpp       |   4 +-
 .../tests/ConsumeWindowsEventLogTests.cpp          |   2 +
 extensions/windows-event-log/wel/JSONUtils.cpp     |   2 +-
 libminifi/test/resources/ThreadPoolAdjust.yml      |  97 --------
 .../test/tensorflow-tests/TensorFlowTests.cpp      |  20 +-
 win_build_vs.bat                                   |   6 +-
 53 files changed, 1355 insertions(+), 1387 deletions(-)
 copy aptitude.sh => arch.sh (68%)
 create mode 100644 docker/test/integration/MiNiFi_integration_test_driver.py
 copy docker/test/integration/{minifi/validators => }/__init__.py (100%)
 create mode 100644 docker/test/integration/environment.py
 create mode 100644 docker/test/integration/features/file_system_operations.feature
 create mode 100644 docker/test/integration/features/http.feature
 create mode 100644 docker/test/integration/features/https.feature
 create mode 100644 docker/test/integration/features/kafka.feature
 create mode 100644 docker/test/integration/features/s2s.feature
 create mode 100644 docker/test/integration/features/s3.feature
 create mode 100644 docker/test/integration/minifi/core/DockerTestDirectoryBindings.py
 create mode 100644 docker/test/integration/minifi/core/FileSystemObserver.py
 create mode 100644 docker/test/integration/minifi/core/SSL_cert_utils.py
 create mode 100644 docker/test/integration/minifi/processors/HashContent.py
 delete mode 100644 docker/test/integration/minifi/processors/PublishKafkaSSL.py
 create mode 100644 docker/test/integration/steps/steps.py
 delete mode 100644 docker/test/integration/test_filesystem_ops.py
 delete mode 100644 docker/test/integration/test_filter_zero_file.py
 delete mode 100644 docker/test/integration/test_hash_content.py
 delete mode 100644 docker/test/integration/test_http.py
 delete mode 100644 docker/test/integration/test_rdkafka.py
 delete mode 100644 docker/test/integration/test_s2s.py
 delete mode 100644 docker/test/integration/test_s3.py
 delete mode 100644 docker/test/integration/test_zero_file.py
 delete mode 100644 docker/test/test_https.py
 delete mode 100644 extensions/http-curl/tests/ThreadPoolAdjust.cpp
 delete mode 100644 libminifi/test/resources/ThreadPoolAdjust.yml