You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ma...@apache.org on 2020/12/03 19:46:25 UTC

[nifi] branch main updated: NIFI-8064 Convert TestSecureClientZooKeeperFactory to integration test

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

markap14 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 312fa8e  NIFI-8064 Convert TestSecureClientZooKeeperFactory to integration test
312fa8e is described below

commit 312fa8e85e46e6d90973ff9a549e086084251afe
Author: Bryan Bende <bb...@apache.org>
AuthorDate: Wed Dec 2 16:44:24 2020 -0500

    NIFI-8064 Convert TestSecureClientZooKeeperFactory to integration test
---
 .../state/providers/zookeeper/ITZooKeeperStateProvider.java           | 4 ++--
 ...lientZooKeeperFactory.java => ITSecureClientZooKeeperFactory.java} | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/controller/state/providers/zookeeper/ITZooKeeperStateProvider.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/controller/state/providers/zookeeper/ITZooKeeperStateProvider.java
index eb0c8a4..97cd4ae 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/controller/state/providers/zookeeper/ITZooKeeperStateProvider.java
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/controller/state/providers/zookeeper/ITZooKeeperStateProvider.java
@@ -48,8 +48,8 @@ import java.util.HashMap;
 import java.util.LinkedHashMap;
 import java.util.Map;
 
-import static org.apache.nifi.leader.election.TestSecureClientZooKeeperFactory.createAndStartServer;
-import static org.apache.nifi.leader.election.TestSecureClientZooKeeperFactory.createClientProperties;
+import static org.apache.nifi.leader.election.ITSecureClientZooKeeperFactory.createAndStartServer;
+import static org.apache.nifi.leader.election.ITSecureClientZooKeeperFactory.createClientProperties;
 
 public class ITZooKeeperStateProvider extends AbstractTestStateProvider {
 
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/leader/election/TestSecureClientZooKeeperFactory.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/leader/election/ITSecureClientZooKeeperFactory.java
similarity index 99%
rename from nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/leader/election/TestSecureClientZooKeeperFactory.java
rename to nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/leader/election/ITSecureClientZooKeeperFactory.java
index 440aac7..204a95b 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/leader/election/TestSecureClientZooKeeperFactory.java
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/leader/election/ITSecureClientZooKeeperFactory.java
@@ -58,7 +58,7 @@ import java.util.Properties;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
 
-public class TestSecureClientZooKeeperFactory {
+public class ITSecureClientZooKeeperFactory {
 
     private static final String NETTY_SERVER_CNXN_FACTORY =
         "org.apache.zookeeper.server.NettyServerCnxnFactory";