You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2020/03/05 10:01:58 UTC

[nifi] branch master updated: NIFI-7055: Removed unit test that is now covered by ListValidator

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

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


The following commit(s) were added to refs/heads/master by this push:
     new b82fec4  NIFI-7055: Removed unit test that is now covered by ListValidator
b82fec4 is described below

commit b82fec41d96ccf808ab060ac68433cb95421212b
Author: Matthew Burgess <ma...@apache.org>
AuthorDate: Wed Mar 4 19:54:27 2020 -0500

    NIFI-7055: Removed unit test that is now covered by ListValidator
    
    Signed-off-by: Pierre Villard <pi...@gmail.com>
    
    This closes #4114.
---
 .../cassandra/PutCassandraRecordTest.java          | 26 ----------------------
 1 file changed, 26 deletions(-)

diff --git a/nifi-nar-bundles/nifi-cassandra-bundle/nifi-cassandra-processors/src/test/java/org/apache/nifi/processors/cassandra/PutCassandraRecordTest.java b/nifi-nar-bundles/nifi-cassandra-bundle/nifi-cassandra-processors/src/test/java/org/apache/nifi/processors/cassandra/PutCassandraRecordTest.java
index f83dc20..c9a0c4f 100644
--- a/nifi-nar-bundles/nifi-cassandra-bundle/nifi-cassandra-processors/src/test/java/org/apache/nifi/processors/cassandra/PutCassandraRecordTest.java
+++ b/nifi-nar-bundles/nifi-cassandra-bundle/nifi-cassandra-processors/src/test/java/org/apache/nifi/processors/cassandra/PutCassandraRecordTest.java
@@ -190,32 +190,6 @@ public class PutCassandraRecordTest {
     }
 
     @Test
-    public void testUpdateZeroLengthUpdateKeys() throws InitializationException {
-        setUpStandardTestConfig();
-        testRunner.setProperty(PutCassandraRecord.STATEMENT_TYPE, PutCassandraRecord.UPDATE_TYPE);
-        testRunner.setProperty(PutCassandraRecord.UPDATE_METHOD, PutCassandraRecord.INCR_TYPE);
-        testRunner.setProperty(PutCassandraRecord.UPDATE_KEYS, ",");
-        testRunner.setProperty(PutCassandraRecord.BATCH_STATEMENT_TYPE, PutCassandraRecord.COUNTER_TYPE);
-
-        testRunner.assertValid();
-
-        recordReader.addSchemaField("name", RecordFieldType.STRING);
-        recordReader.addSchemaField("age", RecordFieldType.INT);
-        recordReader.addSchemaField("goals", RecordFieldType.STRING);
-
-        recordReader.addRecord("John Doe", 48, "1");
-        recordReader.addRecord("Jane Doe", 47, "1");
-        recordReader.addRecord("Sally Doe", 47, "1");
-
-        testRunner.enqueue("");
-        testRunner.run();
-
-        testRunner.assertTransferCount(PutCassandraRecord.REL_FAILURE, 1);
-        testRunner.assertTransferCount(PutCassandraRecord.REL_SUCCESS, 0);
-        testRunner.assertTransferCount(PutCassandraRecord.REL_RETRY, 0);
-    }
-
-    @Test
     public void testUpdateSetLoggedBatch() throws InitializationException {
         setUpStandardTestConfig();
         testRunner.setProperty(PutCassandraRecord.STATEMENT_TYPE, PutCassandraRecord.UPDATE_TYPE);