Remove aspect based logging 91/24391/9
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Mon, 23 Oct 2017 11:42:43 +0000 (17:12 +0530)
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Tue, 21 Nov 2017 12:37:43 +0000 (18:07 +0530)
Issue-Id: CLI-66

Change-Id: Ib0d9365af04710aac812e1413972354c132ebb47
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
README.md
framework/pom.xml
framework/src/main/java/org/onap/cli/fw/log/OnapCommandLogger.java [deleted file]
framework/src/test/java/org/onap/cli/fw/log/OnapCommandLoggerTest.java [deleted file]
main/src/test/java/org/onap/cli/main/OnapCliMainTest.java
validate/validation/src/test/java/org/onap/cli/validation/OnapValidationTest.java

index c3612bc..003725c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -50,9 +50,4 @@ To run in debug mode, set following environment variables:
 1. OPEN_CLI_DEBUG - By default its false, otherwise Set to true
 2. OPEN_CLI_DEBUG_PORT - By default it is 5005, otherwise set to new TCP port number
 
-<h2><a id="More_details_42"></a>More details</h2>
-<p><a href="https://wiki.onap.org">https://wiki.onap.org</a></p>
-
-<h2><a id="Download_42"></a>To download</h2>
-<p style="color:red">Please download Open CLI Platform <a href="./open-cli.zip">here</a></p>
 
index 2b7aece..ce49164 100644 (file)
             <artifactId>snakeyaml</artifactId>
             <version>1.17</version>
         </dependency>
-        <dependency>
-            <groupId>org.aspectj</groupId>
-            <artifactId>aspectjrt</artifactId>
-            <version>1.8.10</version>
-        </dependency>
-        <dependency>
-            <groupId>org.aspectj</groupId>
-            <artifactId>aspectjweaver</artifactId>
-            <version>1.8.10</version>
-        </dependency>
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
diff --git a/framework/src/main/java/org/onap/cli/fw/log/OnapCommandLogger.java b/framework/src/main/java/org/onap/cli/fw/log/OnapCommandLogger.java
deleted file mode 100644 (file)
index a29d359..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright 2017 Huawei Technologies Co., Ltd.
- *
- * Licensed 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.onap.cli.fw.log;
-
-import org.aspectj.lang.ProceedingJoinPoint;
-import org.aspectj.lang.annotation.Around;
-import org.aspectj.lang.annotation.Aspect;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-/**
- * Helps to log the command method boundary calls.
- *
- */
-@Aspect
-public class OnapCommandLogger {
-    private static final Logger LOGGER = LoggerFactory.getLogger(OnapCommandLogger.class);
-
-    //(mrkanag) verify that it logs for all classes in this project.
-    /**
-     * Logging intercepter.
-     *
-     * @param joinPoint
-     *            joinpoint
-     * @return object
-     * @throws Throwable
-     *             exception
-     */
-    @Around("execution(* org.onap.cli.fw*(..))")
-    public Object log(ProceedingJoinPoint joinPoint) throws Throwable { // NOSONAR
-        LOGGER.info(joinPoint.getThis().toString() + "->" + joinPoint.getSignature().getName() + "("
-                + joinPoint.getArgs() + ")");
-
-        Object response = joinPoint.proceed();
-        LOGGER.info(response.toString());
-
-        return response;
-    }
-}
diff --git a/framework/src/test/java/org/onap/cli/fw/log/OnapCommandLoggerTest.java b/framework/src/test/java/org/onap/cli/fw/log/OnapCommandLoggerTest.java
deleted file mode 100644 (file)
index 4b675ed..0000000
+++ /dev/null
@@ -1,134 +0,0 @@
-/*
- * Copyright 2016-17 Huawei Technologies Co., Ltd.
- *
- * Licensed 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.onap.cli.fw.log;
-
-import org.aspectj.lang.ProceedingJoinPoint;
-import org.aspectj.lang.Signature;
-import org.aspectj.lang.reflect.SourceLocation;
-import org.aspectj.runtime.internal.AroundClosure;
-import org.junit.Test;
-
-public class OnapCommandLoggerTest {
-
-    @Test
-    public void logTest() throws Throwable {
-
-
-        ProceedingJoinPoint point = new ProceedingJoinPoint() {
-            @Override
-            public String toShortString() {
-                return null;
-            }
-
-            @Override
-            public String toLongString() {
-                return null;
-            }
-
-            @Override
-            public Object getThis() {
-                return new Object();
-            }
-
-            @Override
-            public Object getTarget() {
-                return null;
-            }
-
-            @Override
-            public StaticPart getStaticPart() {
-                return null;
-            }
-
-            @Override
-            public SourceLocation getSourceLocation() {
-                return null;
-            }
-
-            @Override
-            public Signature getSignature() {
-                return new Signature(){
-
-                    @Override
-                    public Class getDeclaringType() {
-                        // TODO Auto-generated method stub
-                        return null;
-                    }
-
-                    @Override
-                    public String getDeclaringTypeName() {
-                        // TODO Auto-generated method stub
-                        return null;
-                    }
-
-                    @Override
-                    public int getModifiers() {
-                        // TODO Auto-generated method stub
-                        return 0;
-                    }
-
-                    @Override
-                    public String getName() {
-                        // TODO Auto-generated method stub
-                        return null;
-                    }
-
-                    @Override
-                    public String toLongString() {
-                        // TODO Auto-generated method stub
-                        return null;
-                    }
-
-                    @Override
-                    public String toShortString() {
-                        // TODO Auto-generated method stub
-                        return null;
-                    }
-
-                };
-            }
-
-            @Override
-            public String getKind() {
-                return null;
-            }
-
-            @Override
-            public Object[] getArgs() {
-                return null;
-            }
-
-            @Override
-            public void set$AroundClosure(AroundClosure arg0) {
-            }
-
-            @Override
-            public Object proceed(Object[] arg0) throws Throwable {
-                return null;
-            }
-
-            @Override
-            public Object proceed() throws Throwable {
-                return new Object();
-            }
-        };
-
-        OnapCommandLogger log = new OnapCommandLogger();
-        log.log(point);
-    }
-
-}
index d720ed9..9d3b036 100644 (file)
@@ -16,6 +16,8 @@
 
 package org.onap.cli.main;
 
+import static org.junit.Assert.fail;
+
 import java.io.File;
 import java.io.IOException;
 import java.net.URL;
@@ -24,7 +26,6 @@ import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.List;
 
-import org.aspectj.lang.annotation.After;
 import org.junit.Ignore;
 import org.junit.Test;
 import org.onap.cli.fw.OnapCommand;
@@ -37,24 +38,11 @@ import jline.console.ConsoleReader;
 import mockit.Invocation;
 import mockit.Mock;
 import mockit.MockUp;
-import static org.junit.Assert.fail;
 
 public class OnapCliMainTest {
 
     OnapCli cli = null;
 
-    /**
-     * Clean up.
-     */
-    @After(value = "")
-    public void cleanup() {
-        if (this.cli != null) {
-            if (cli.getExitCode() != 0) {
-                // Fail test case
-            }
-        }
-    }
-
     private void handle(String[] args) {
         cli = new OnapCli(args);
         cli.handle();
index de55f99..fffec3f 100644 (file)
@@ -25,7 +25,6 @@ import java.util.List;
 import java.util.Map;
 
 import org.apache.commons.io.FileUtils;
-import org.aspectj.lang.annotation.After;
 import org.junit.Ignore;
 import org.junit.Test;
 import org.onap.cli.fw.OnapCommandRegistrar;
@@ -39,18 +38,6 @@ public class OnapValidationTest {
 
     OnapCli cli = null;
 
-    /**
-     * Clean up.
-     */
-    @After(value = "")
-    public void cleanup() {
-        if (this.cli != null) {
-            if (cli.getExitCode() != 0) {
-                // Fail test case
-            }
-        }
-    }
-
     private void handle(String[] args) {
         cli = new OnapCli(args);
         cli.handle();
@@ -84,7 +71,7 @@ public class OnapValidationTest {
             System.out.println("==========================\n\n");
             int i = 1;
             for (SchemaInfo sch : OnapCommandRegistrar.getRegistrar().listCommandInfo()) {
-               if (sch.isIgnore()) {
+                if (sch.isIgnore()) {
                     continue;
                 }
                 if (sch.getProduct().equals(version)) {