This is an automated email from the ASF dual-hosted git repository.
bbende pushed a commit to branch NIFI-15258
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/NIFI-15258 by this push:
new cb479b5f0c NIFI-15258: Fixes for system tests that needed to be
updated from 2.7.0-SNAPSHOT to 2.8.0-SNAPSHOT (#10807)
cb479b5f0c is described below
commit cb479b5f0c60d908bf62420da0551ec0aaea4c34
Author: Mark Payne <[email protected]>
AuthorDate: Thu Jan 22 13:50:50 2026 -0500
NIFI-15258: Fixes for system tests that needed to be updated from
2.7.0-SNAPSHOT to 2.8.0-SNAPSHOT (#10807)
---
.../tests/system/GatedDataQueuingConnector.java | 2 +-
.../tests/system/connectors/ConnectorCrudIT.java | 6 +--
.../controller-service-enabling-failure/flow.json | 2 +-
.../resources/flows/migrate-properties/flow.json | 56 +++++++++++-----------
4 files changed, 33 insertions(+), 33 deletions(-)
diff --git
a/nifi-system-tests/nifi-system-test-extensions-bundle/nifi-system-test-extensions/src/main/java/org/apache/nifi/connectors/tests/system/GatedDataQueuingConnector.java
b/nifi-system-tests/nifi-system-test-extensions-bundle/nifi-system-test-extensions/src/main/java/org/apache/nifi/connectors/tests/system/GatedDataQueuingConnector.java
index 857e77234f..17537997b6 100644
---
a/nifi-system-tests/nifi-system-test-extensions-bundle/nifi-system-test-extensions/src/main/java/org/apache/nifi/connectors/tests/system/GatedDataQueuingConnector.java
+++
b/nifi-system-tests/nifi-system-test-extensions-bundle/nifi-system-test-extensions/src/main/java/org/apache/nifi/connectors/tests/system/GatedDataQueuingConnector.java
@@ -82,7 +82,7 @@ public class GatedDataQueuingConnector extends
AbstractConnector {
final Bundle bundle = new Bundle();
bundle.setGroup("org.apache.nifi");
bundle.setArtifact("nifi-system-test-extensions-nar");
- bundle.setVersion("2.7.0-SNAPSHOT");
+ bundle.setVersion("2.8.0-SNAPSHOT");
final VersionedProcessor generate = createVersionedProcessor("gen-1",
"1234", "GenerateFlowFile",
"org.apache.nifi.processors.tests.system.GenerateFlowFile", bundle,
diff --git
a/nifi-system-tests/nifi-system-test-suite/src/test/java/org/apache/nifi/tests/system/connectors/ConnectorCrudIT.java
b/nifi-system-tests/nifi-system-test-suite/src/test/java/org/apache/nifi/tests/system/connectors/ConnectorCrudIT.java
index c1098c4d19..1053a4018c 100644
---
a/nifi-system-tests/nifi-system-test-suite/src/test/java/org/apache/nifi/tests/system/connectors/ConnectorCrudIT.java
+++
b/nifi-system-tests/nifi-system-test-suite/src/test/java/org/apache/nifi/tests/system/connectors/ConnectorCrudIT.java
@@ -127,7 +127,7 @@ public class ConnectorCrudIT extends NiFiSystemIT {
getClientUtil().waitForInvalidConnector(connector.getId());
// Verify that using a Secret Reference to 'other' (value "other")
should fail validation
- final ConnectorValueReferenceDTO otherSecretRef =
getClientUtil().createSecretValueReference(paramProvider.getId(), "other",
"Parameters.other");
+ final ConnectorValueReferenceDTO otherSecretRef =
getClientUtil().createSecretValueReference(paramProvider.getId(), "other",
"PropertiesParameterProvider.Parameters.other");
final Map<String, ConnectorValueReferenceDTO> otherSecretProperties =
Map.of("Secret Property", otherSecretRef);
verificationResults =
getClientUtil().verifyConnectorStepConfigWithReferences(connector.getId(),
"Ignored Step", otherSecretProperties);
assertTrue(verificationResults.stream().anyMatch(result ->
Outcome.FAILED.name().equals(result.getOutcome())));
@@ -138,7 +138,7 @@ public class ConnectorCrudIT extends NiFiSystemIT {
getClientUtil().waitForInvalidConnector(connector.getId());
// Verify that using an invalid reference should fail validation
- final ConnectorValueReferenceDTO invalidRef =
getClientUtil().createSecretValueReference(paramProvider.getId(),
"nonexistent", "Parameters.nonexistent");
+ final ConnectorValueReferenceDTO invalidRef =
getClientUtil().createSecretValueReference(paramProvider.getId(),
"nonexistent", "PropertiesParameterProvider.Parameters.nonexistent");
final Map<String, ConnectorValueReferenceDTO> invalidSecretProperties
= Map.of("Secret Property", invalidRef);
verificationResults =
getClientUtil().verifyConnectorStepConfigWithReferences(connector.getId(),
"Ignored Step", invalidSecretProperties);
assertTrue(verificationResults.stream().anyMatch(result ->
Outcome.FAILED.name().equals(result.getOutcome())));
@@ -149,7 +149,7 @@ public class ConnectorCrudIT extends NiFiSystemIT {
getClientUtil().waitForInvalidConnector(connector.getId());
// Verify that using a Secret Reference to 'supersecret' (value
"supersecret") should pass validation
- final ConnectorValueReferenceDTO supersecretRef =
getClientUtil().createSecretValueReference(paramProvider.getId(),
"supersecret", "Parameters.supersecret");
+ final ConnectorValueReferenceDTO supersecretRef =
getClientUtil().createSecretValueReference(paramProvider.getId(),
"supersecret", "PropertiesParameterProvider.Parameters.supersecret");
final Map<String, ConnectorValueReferenceDTO> supersecretProperties =
Map.of("Secret Property", supersecretRef);
verificationResults =
getClientUtil().verifyConnectorStepConfigWithReferences(connector.getId(),
"Ignored Step", supersecretProperties);
assertTrue(verificationResults.stream().allMatch(result ->
Outcome.SUCCESSFUL.name().equals(result.getOutcome())));
diff --git
a/nifi-system-tests/nifi-system-test-suite/src/test/resources/flows/controller-service-enabling-failure/flow.json
b/nifi-system-tests/nifi-system-test-suite/src/test/resources/flows/controller-service-enabling-failure/flow.json
index 32dd9ba211..08d40b7a77 100644
---
a/nifi-system-tests/nifi-system-test-suite/src/test/resources/flows/controller-service-enabling-failure/flow.json
+++
b/nifi-system-tests/nifi-system-test-suite/src/test/resources/flows/controller-service-enabling-failure/flow.json
@@ -47,7 +47,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"Enable Failure Count": "1000"
diff --git
a/nifi-system-tests/nifi-system-test-suite/src/test/resources/flows/migrate-properties/flow.json
b/nifi-system-tests/nifi-system-test-suite/src/test/resources/flows/migrate-properties/flow.json
index 69ba4d5399..0657fb2429 100644
---
a/nifi-system-tests/nifi-system-test-suite/src/test/resources/flows/migrate-properties/flow.json
+++
b/nifi-system-tests/nifi-system-test-suite/src/test/resources/flows/migrate-properties/flow.json
@@ -45,7 +45,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"count-service": "c1a97022-019a-1000-4c72-79bb12714423"
@@ -82,7 +82,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"count-service": "c1a97022-019a-1000-4c72-79bb12714423"
@@ -121,7 +121,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"count-service": "c1a97022-019a-1000-4c72-79bb12714423"
@@ -158,7 +158,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"count-service": "c1a97022-019a-1000-4c72-79bb12714423"
@@ -307,7 +307,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "7"
@@ -319,7 +319,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -337,7 +337,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "9"
@@ -349,7 +349,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -367,7 +367,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "6"
@@ -379,7 +379,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -397,7 +397,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "10"
@@ -409,7 +409,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -427,7 +427,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "1"
@@ -439,7 +439,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -457,7 +457,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "0",
@@ -470,7 +470,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -488,7 +488,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "11"
@@ -500,7 +500,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -518,7 +518,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "3"
@@ -530,7 +530,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -548,7 +548,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "5"
@@ -560,7 +560,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -578,7 +578,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "4"
@@ -590,7 +590,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -608,7 +608,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "2"
@@ -620,7 +620,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],
@@ -638,7 +638,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
},
"properties": {
"start-value": "8"
@@ -650,7 +650,7 @@
"bundle": {
"group": "org.apache.nifi",
"artifact": "nifi-system-test-extensions-services-api-nar",
- "version": "2.7.0-SNAPSHOT"
+ "version": "2.8.0-SNAPSHOT"
}
}
],