This is an automated email from the ASF dual-hosted git repository.
martinzink pushed a change to branch MINIFICPP-2711
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
omit f125497e7 fix
omit ab7cf1a25 linter fix
omit 925076339 review changes
omit ca3acaac2 review changes
omit 2cbf3aeaf MINIFICPP-2711 Docker tests, missing logs if container fails
to start
add 94a8480ac MINIFICPP-2703 Update GCP extension to use unified
credentials
add 18380fc7d MINIFICPP-2707 Catch exceptions during C2 Start/Stop commands
add 9187c2efd MINIFICPP-2709 Fix site to site receive using HTTP protocol
add 961f352f0 MINIFICPP-2713 curl: upgrade to 8.18.0
add 3b9711e69 MINIFICPP-2720 Overwrite agent_version.cpp instead of
appending
add 2ac1f1b86 MINIFICPP-2721 Fix rocky linux docker image name retrieval
in CI
add d24d32400 MINIFICPP-2683 Move C2 docker tests to modular docker tests
add e730451c9 MINIFICPP-2685 Move MQTT tests to modular docker tests
add ebc89c186 MINIFICPP-2256 Remove LoggerConfiguration::newInstance
add 3b1334649 MINIFICPP-2722 C API enum explicit type
add 3190ca615 MINIFICPP-2724 Add MinifiStatus return type to C api
function that might fail
add b525cc861 MINIFICPP-2725 python: fix EL with ENVIRONMENT scope
add e58d829b1 MINIFICPP-2728 upgrade openssl to 3.3.6
add 71908d19e MINIFICPP-2727 Stabilize verify package tests
add 7c18354a8 MINIFICPP-2729 Increase timeout for MacOS jobs
add f856bb60f MINIFICPP-2730 Check if config.yml exists when creating the
debug bundle
add 30fa5d153 MINIFICPP-2726 Fix HTTP S2S no data and error handling
add 162ccfb55 MINIFICPP-2732 Clear class descriptions when extensions are
cleared
add 4096b8637 MINIFICPP-2733 Fix compilation on Windows in debug mode with
Ninja
add 24933300e MINIFICPP-2734 Remove BinFiles from processor list
add 2f26cb92f MINIFICPP-2723 Add log and properties.d dir property files
to debug bundle
new 13876a209 MINIFICPP-2711 Docker tests, missing logs if container fails
to start
new 18c6efafb review changes
new 49b463f81 review changes
new 734bcccda linter fix
new 997867a53 fix
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (f125497e7)
\
N -- N -- N refs/heads/MINIFICPP-2711 (997867a53)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/ci.yml | 4 +-
CMakeLists.txt | 2 +-
PROCESSORS.md | 29 --
README.md | 2 +-
.../minifi_test_framework/containers/container.py | 25 ++
.../containers/http_proxy_container.py | 1 +
.../containers/minifi_container.py | 10 +
.../minifi_test_framework/steps/checking_steps.py | 36 +-
.../src/minifi_test_framework/steps/core_steps.py | 57 ++-
.../steps/flow_building_steps.py | 10 +-
cmake/BundledLibcURL.cmake | 8 +-
cmake/BundledOpenSSL.cmake | 12 +-
cmake/GoogleCloudCpp.cmake | 4 +-
core-framework/include/http/HTTPStream.h | 69 ++--
core-framework/src/http/HTTPClient.cpp | 5 +-
core-framework/src/http/HTTPStream.cpp | 34 +-
docker/RunBehaveTests.sh | 3 +-
docker/requirements.txt | 1 -
docker/test/integration/cluster/ContainerStore.py | 37 --
.../test/integration/cluster/DockerTestCluster.py | 5 -
docker/test/integration/cluster/ImageStore.py | 11 -
.../cluster/containers/MinifiC2ServerContainer.py | 112 ------
.../cluster/containers/MinifiContainer.py | 31 +-
.../cluster/containers/MqttBrokerContainer.py | 40 ---
.../features/MiNiFi_integration_test_driver.py | 8 -
docker/test/integration/features/s2s.feature | 4 +
docker/test/integration/features/steps/steps.py | 59 ---
.../Minifi_flow_json_serializer.py | 1 +
.../Minifi_flow_yaml_serializer.py | 1 +
.../integration/minifi/processors/ConsumeMQTT.py | 30 --
.../integration/minifi/processors/PublishMQTT.py | 30 --
.../include/api/core/ProcessContext.h | 2 -
.../include/api/utils/ProcessorConfigUtils.h | 24 +-
.../cpp-extension-lib/src/core/ProcessContext.cpp | 10 -
.../cpp-extension-lib/src/core/ProcessSession.cpp | 22 +-
.../include/utils/ProcessorConfigUtils.h | 24 +-
.../azure/tests/FetchAzureDataLakeStorageTests.cpp | 2 +-
.../features/steps/couchbase_server_container.py | 4 +-
.../GCPCredentialsControllerService.cpp | 37 +-
.../GCPCredentialsControllerService.h | 9 +-
extensions/gcp/processors/GCSProcessor.cpp | 14 +-
extensions/gcp/processors/GCSProcessor.h | 6 +-
.../tests/GCPCredentialsControllerServiceTests.cpp | 17 +-
.../tests/features/steps/grafana_loki_container.py | 4 +-
extensions/libarchive/BinFiles.cpp | 2 -
.../llamacpp/tests/RunLlamaCppInferenceTests.cpp | 4 +-
extensions/mqtt/tests/ConsumeMQTTTests.cpp | 4 +-
extensions/mqtt/tests/PublishMQTTTests.cpp | 2 +-
.../tests/features/environment.py | 21 +-
.../mqtt/tests}/features/mqtt.feature | 398 ++++++++++++---------
.../features/resources/publish_mqtt_message.py | 20 +-
.../tests/features/steps/mqtt_broker_container.py | 63 ++++
extensions/mqtt/tests/features/steps/steps.py | 76 ++++
.../python/pythonprocessors/nifiapi/properties.py | 8 +-
.../tests/features/environment.py | 21 ++
.../tests}/features/minifi_c2_server.feature | 15 +-
.../tests/features/repository.feature | 1 +
.../features/steps/minifi_c2_server_container.py | 76 ++++
.../resources/minifi-c2-server/authorizations.yaml | 0
.../resources/minifi-c2-server/c2.properties | 0
.../steps}/resources/minifi-c2-server/config.yml | 0
.../tests/features/steps/steps.py | 54 ++-
.../tests/unit/SegmentContentTests.cpp | 4 +-
.../tests/unit/SplitContentTests.cpp | 2 +-
.../tests/unit/SplitTextTests.cpp | 2 +-
generateVersion.bat | 2 +-
.../include/core/extension/ExtensionManager.h | 6 +
.../include/core/logging/LoggerConfiguration.h | 9 +-
libminifi/include/properties/Configure.h | 3 +
libminifi/include/properties/Properties.h | 3 +-
.../include/sitetosite/HttpSiteToSiteClient.h | 3 +
libminifi/include/sitetosite/SiteToSiteClient.h | 7 +-
libminifi/src/Configure.cpp | 14 +
libminifi/src/FlowController.cpp | 22 +-
libminifi/src/agent/agent_docs.cpp | 3 +
libminifi/src/c2/C2Agent.cpp | 26 +-
libminifi/src/core/extension/ExtensionManager.cpp | 8 +
libminifi/src/minifi-c.cpp | 31 +-
libminifi/src/sitetosite/HttpSiteToSiteClient.cpp | 91 ++++-
libminifi/src/sitetosite/SiteToSiteClient.cpp | 40 +--
libminifi/test/integration/C2DebugBundleTest.cpp | 63 +++-
.../test/libtest/integration/IntegrationBase.cpp | 3 +-
.../test/libtest/integration/IntegrationBase.h | 9 +-
libminifi/test/libtest/unit/TestBase.cpp | 7 +-
libminifi/test/unit/LoggerTests.cpp | 84 ++---
minifi-api/include/minifi-c/minifi-c.h | 15 +-
minifi-api/include/minifi-cpp/agent/agent_docs.h | 1 +
.../include/minifi-cpp/properties/Configure.h | 3 +
.../include/minifi-cpp/properties/Properties.h | 1 +
minifi-api/minifi-c-api.def | 1 -
thirdparty/curl/module-path.patch | 17 +-
91 files changed, 1153 insertions(+), 948 deletions(-)
delete mode 100644
docker/test/integration/cluster/containers/MinifiC2ServerContainer.py
delete mode 100644
docker/test/integration/cluster/containers/MqttBrokerContainer.py
delete mode 100644 docker/test/integration/minifi/processors/ConsumeMQTT.py
delete mode 100644 docker/test/integration/minifi/processors/PublishMQTT.py
copy extensions/{grafana-loki => mqtt}/tests/features/environment.py (71%)
rename {docker/test/integration =>
extensions/mqtt/tests}/features/mqtt.feature (60%)
rename docker/test/integration/cluster/checkers/MqttHelper.py =>
extensions/mqtt/tests/features/resources/publish_mqtt_message.py (62%)
create mode 100644
extensions/mqtt/tests/features/steps/mqtt_broker_container.py
create mode 100644 extensions/mqtt/tests/features/steps/steps.py
rename {docker/test/integration =>
extensions/standard-processors/tests}/features/minifi_c2_server.feature (82%)
create mode 100644
extensions/standard-processors/tests/features/steps/minifi_c2_server_container.py
rename {docker/test/integration =>
extensions/standard-processors/tests/features/steps}/resources/minifi-c2-server/authorizations.yaml
(100%)
rename {docker/test/integration =>
extensions/standard-processors/tests/features/steps}/resources/minifi-c2-server/c2.properties
(100%)
rename {docker/test/integration =>
extensions/standard-processors/tests/features/steps}/resources/minifi-c2-server/config.yml
(100%)