You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metron.apache.org by ot...@apache.org on 2019/01/04 18:14:26 UTC

[metron] branch master updated: METRON-1963 Remove left over integration test from before refactoring (ottobackwards) closes apache/metron#1319

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8622447  METRON-1963 Remove left over integration test from before refactoring (ottobackwards) closes apache/metron#1319
8622447 is described below

commit 862244721fef7ba7389000cc2f3d0756bb07d69d
Author: ottobackwards <ot...@gmail.com>
AuthorDate: Fri Jan 4 12:55:39 2019 -0500

    METRON-1963 Remove left over integration test from before refactoring (ottobackwards) closes apache/metron#1319
---
 .../Syslog3164ParserIntegrationTest.java           | 37 ----------------------
 .../parsers/integration/ParserIntegrationTest.java |  1 +
 2 files changed, 1 insertion(+), 37 deletions(-)

diff --git a/metron-platform/metron-parsers/src/test/java/org/apache/metron/parsers/integration/Syslog3164ParserIntegrationTest.java b/metron-platform/metron-parsers/src/test/java/org/apache/metron/parsers/integration/Syslog3164ParserIntegrationTest.java
deleted file mode 100644
index e1affe6..0000000
--- a/metron-platform/metron-parsers/src/test/java/org/apache/metron/parsers/integration/Syslog3164ParserIntegrationTest.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.metron.parsers.integration;
-
-import org.apache.metron.parsers.integration.validation.SampleDataValidation;
-
-import java.util.ArrayList;
-import java.util.List;
-
-public class Syslog3164ParserIntegrationTest extends ParserIntegrationTest {
-  @Override
-  String getSensorType() {
-    return "syslog3164";
-  }
-
-  @Override
-  List<ParserValidation> getValidations() {
-    return new ArrayList<ParserValidation>() {{
-      add(new SampleDataValidation());
-    }};
-  }
-}
diff --git a/metron-platform/metron-parsing/metron-parsers-common/src/test/java/org/apache/metron/parsers/integration/ParserIntegrationTest.java b/metron-platform/metron-parsing/metron-parsers-common/src/test/java/org/apache/metron/parsers/integration/ParserIntegrationTest.java
index de0b984..f14e260 100644
--- a/metron-platform/metron-parsing/metron-parsers-common/src/test/java/org/apache/metron/parsers/integration/ParserIntegrationTest.java
+++ b/metron-platform/metron-parsing/metron-parsers-common/src/test/java/org/apache/metron/parsers/integration/ParserIntegrationTest.java
@@ -44,6 +44,7 @@ public abstract class ParserIntegrationTest extends BaseIntegrationTest {
           "squid",
           "websphere",
           "yaf",
+          "syslog3164",
           "syslog5424"
           );