Bug 1029: Remove dead code: unit_test_suite 86/7186/1
authorEd Warnicke <eaw@cisco.com>
Sun, 18 May 2014 18:01:54 +0000 (13:01 -0500)
committerEd Warnicke <eaw@cisco.com>
Sun, 18 May 2014 18:17:55 +0000 (13:17 -0500)
opendaylight/northboundtest/unit_test_suite/ is dead code that is not being
built and hasn't for some time.  Its complicating keeping
versions up to date and verifying that they are up to date.

If it needs to be revived in the future it can be retrieved
from git.

Change-Id: If7809407f1ca5e22012d9172950428ca24c5f5bc
Signed-off-by: Ed Warnicke <eaw@cisco.com>
opendaylight/northboundtest/unit_test_suite/pom.xml [deleted file]
opendaylight/northboundtest/unit_test_suite/src/main/java/org/opendaylight/controller/northboundtest/unittestsuite/internal/API3UnitTest.java [deleted file]
opendaylight/northboundtest/unit_test_suite/src/main/java/org/opendaylight/controller/northboundtest/unittestsuite/internal/Activator.java [deleted file]

diff --git a/opendaylight/northboundtest/unit_test_suite/pom.xml b/opendaylight/northboundtest/unit_test_suite/pom.xml
deleted file mode 100644 (file)
index 5a0f5f3..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-        <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <groupId>org.opendaylight.controller</groupId>
-    <artifactId>commons.opendaylight</artifactId>
-    <version>1.4.0-SNAPSHOT</version>
-    <relativePath>../../../opendaylight/commons/opendaylight</relativePath>
-  </parent>
-  <scm>
-    <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
-    <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
-    <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
-  </scm>
-
-
-        <groupId>org.opendaylight.controller</groupId>
-        <artifactId>northboundtest</artifactId>
-        <version>0.4.0-SNAPSHOT</version>
-        <packaging>bundle</packaging>
-
-        <build>
-                <plugins>
-                        <plugin>
-                                <groupId>org.apache.felix</groupId>
-                                <artifactId>maven-bundle-plugin</artifactId>
-                                <version>${bundle.plugin.version}</version>
-                                <extensions>true</extensions>
-                                <configuration>
-                                        <instructions>
-                                                <Import-Package>
-                                                        org.opendaylight.controller.sal.core,
-                                                        org.eclipse.osgi.framework.console,
-                                                        org.osgi.framework,
-                                        org.apache.felix.dm
-                                                </Import-Package>
-                                                <Export-Package>
-                                                </Export-Package>
-                                                <Bundle-Activator>
-                                          org.opendaylight.controller.northboundtest.unittestsuite.internal.Activator
-                                        </Bundle-Activator>
-                                                <Service-Component>
-                                                </Service-Component>
-                                        </instructions>
-                                </configuration>
-                        </plugin>
-                </plugins>
-        </build>
-        <dependencies>
-    <dependency>
-      <groupId>org.opendaylight.controller</groupId>
-      <artifactId>sal</artifactId>
-    </dependency>
-  </dependencies>
-</project>
diff --git a/opendaylight/northboundtest/unit_test_suite/src/main/java/org/opendaylight/controller/northboundtest/unittestsuite/internal/API3UnitTest.java b/opendaylight/northboundtest/unit_test_suite/src/main/java/org/opendaylight/controller/northboundtest/unittestsuite/internal/API3UnitTest.java
deleted file mode 100644 (file)
index aef2540..0000000
+++ /dev/null
@@ -1,210 +0,0 @@
-
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.controller.northboundtest.unittestsuite.internal;
-
-import java.io.BufferedReader;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-
-import org.eclipse.osgi.framework.console.CommandInterpreter;
-import org.eclipse.osgi.framework.console.CommandProvider;
-import org.osgi.framework.BundleContext;
-import org.osgi.framework.FrameworkUtil;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-/**
- * This java class provides the osgi console with the commands for running the unit test scripts for the API3
- *
- *
- *
- */
-public class API3UnitTest implements CommandProvider {
-    private static Logger log = LoggerFactory
-         .getLogger(API3UnitTest.class);
-
-    private static final String python = "/usr/bin/python";
-
-    /**
-     * Function called by the dependency manager when all the required
-     * dependencies are satisfied
-     *
-     */
-    void init() {
-        BundleContext bundleContext = FrameworkUtil.getBundle(this.getClass())
-                .getBundleContext();
-        bundleContext.registerService(CommandProvider.class.getName(), this,
-                null);
-    }
-
-    /**
-     * Function called by the dependency manager when at least one
-     * dependency become unsatisfied or when the component is shutting
-     * down because for example bundle is being stopped.
-     *
-     */
-    void destroy() {
-    }
-
-    /**
-     * Function called by dependency manager after "init ()" is called
-     * and after the services provided by the class are registered in
-     * the service registry
-     *
-     */
-    void start() {
-    }
-
-    /**
-     * Function called by the dependency manager before the services
-     * exported by the component are unregistered, this will be
-     * followed by a "destroy ()" calls
-     *
-     */
-    void stop() {
-    }
-
-    @Override
-    public String getHelp() {
-        StringBuffer help = new StringBuffer();
-        help.append("---API3 Unit Test---\n");
-        help
-                .append("\t api3ut             - run the python script for the specified northbound module\n");
-        help.append("\t GET <uri>");
-        help.append("\t PUT <uri>  data1==x1 data2==x2 ...");
-        help.append("\t POST <uri>  data1==x1 data2==x2 ...");
-        help.append("\t DELETE <uri>");
-        return help.toString();
-    }
-
-    public void _api3ut(CommandInterpreter ci) {
-        boolean custom = false;
-        String target = null;
-        String module = null;
-
-        module = ci.nextArgument();
-        if (module == null) {
-            printUsage(ci);
-            return;
-        }
-
-        if (module.equals("custom")) {
-            target = ci.nextArgument();
-            custom = true;
-        } else if (module.equals("flows")) {
-            target = "flowsUnitTest.py";
-        } else if (module.equals("subnets")) {
-            target = "subnetsUnitTest.py";
-        } else if (module.equals("hosts")) {
-            target = "hostsUnitTest.py";
-        } else if (module.equals("slices")) {
-            target = "slicesUnitTest.py";
-        } else if (module.equals("tif")) {
-            target = "tifUnitTest.py";
-        } else {
-            ci.println("ERROR: Coming soon");
-        }
-
-        if (target != null) {
-            executeScript(target, custom);
-        }
-    }
-
-    private void printUsage(CommandInterpreter ci) {
-        ci.println("Usage: api3ut [<module> | custom <target>]");
-        ci
-                .println("<module>: [flows, hosts, subnets, slices, tif] (You need python-httplib2 installed)");
-        ci.println("<target>: your linux script (w/ absolute path)");
-    }
-
-    private void printStream(InputStream stream) throws IOException {
-        String line;
-        BufferedReader reader = new BufferedReader(
-                new InputStreamReader(stream));
-
-        while ((line = reader.readLine()) != null) {
-            System.out.println(line);
-        }
-    }
-
-    public void executeScript(String target, boolean custom)
-            throws RuntimeException {
-        String script = (custom) ? target : "SCRIPTS/python/" + target;
-        try {
-            Runtime runTime = Runtime.getRuntime();
-            Process process = runTime.exec(python + " " + script);
-            printStream(process.getInputStream());
-            printStream(process.getErrorStream());
-        } catch (Exception e) {
-            System.out.println("Exception!");
-            log.error("",e);
-        }
-    }
-
-    public void _GET(CommandInterpreter ci) {
-        parseRestRequest("GET", ci);
-    }
-
-    public void _PUT(CommandInterpreter ci) {
-        parseRestRequest("PUT", ci);
-    }
-
-    public void _DELETE(CommandInterpreter ci) {
-        parseRestRequest("DELETE", ci);
-    }
-
-    public void _POST(CommandInterpreter ci) {
-        parseRestRequest("POST", ci);
-    }
-
-    private void parseRestRequest(String action, CommandInterpreter ci) {
-        String uri, resource;
-        StringBuffer resources = new StringBuffer(" ");
-
-        uri = ci.nextArgument();
-        if (uri == null) {
-            printRestUsage(ci);
-            return;
-        }
-
-        resource = ci.nextArgument();
-        while (resource != null) {
-            resources.append(resource);
-            resources.append(" ");
-            resource = ci.nextArgument();
-        }
-
-        executeRestCall(action, uri, resources.toString());
-
-    }
-
-    private void executeRestCall(String action, String uri, String resources) {
-        String script = "SCRIPTS/python/rest_call.py";
-
-        try {
-            Runtime runTime = Runtime.getRuntime();
-            Process process = runTime.exec(python + " " + script + " " + action
-                    + " " + uri + " " + resources);
-            printStream(process.getInputStream());
-            printStream(process.getErrorStream());
-        } catch (Exception e) {
-            System.out.println("Exception!");
-            log.error("",e);
-        }
-    }
-
-    private void printRestUsage(CommandInterpreter ci) {
-        ci.println("Usage: GET/PUT/POST/DELETE <uri>  [<resources>]");
-        ci.println("<uri>: ex: slices/red or slices/red/flowspecs");
-        ci
-                .println("<resources>: resource==<value>,... ex: switchId==2 port==3-7");
-    }
-}
diff --git a/opendaylight/northboundtest/unit_test_suite/src/main/java/org/opendaylight/controller/northboundtest/unittestsuite/internal/Activator.java b/opendaylight/northboundtest/unit_test_suite/src/main/java/org/opendaylight/controller/northboundtest/unittestsuite/internal/Activator.java
deleted file mode 100644 (file)
index 471a440..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.controller.northboundtest.unittestsuite.internal;
-
-import org.opendaylight.controller.sal.core.ComponentActivatorAbstractBase;
-
-import org.apache.felix.dm.Component;
-
-public class Activator extends ComponentActivatorAbstractBase {
-
-
-    /**
-     * Function that is used to communicate to dependency manager the
-     * list of known implementations for services inside a container
-     *
-     *
-     * @return An array containing all the CLASS objects that will be
-     * instantiated in order to get an fully working implementation
-     * Object
-     */
-    public Object[] getImplementations() {
-        return null;
-    }
-
-    /**
-     * Function that is called when configuration of the dependencies
-     * is required.
-     *
-     * @param c dependency manager Component object, used for
-     * configuring the dependencies exported and imported
-     * @param imp Implementation class that is being configured,
-     * needed as long as the same routine can configure multiple
-     * implementations
-     * @param containerName The containerName being configured, this allow
-     * also optional per-container different behavior if needed, usually
-     * should not be the case though.
-     */
-    public void configureInstance(Component c, Object imp, String containerName) {
-    }
-
-    /**
-     * Method which tells how many Global implementations are
-     * supported by the bundle. This way we can tune the number of
-     * components created. This components will be created ONLY at the
-     * time of bundle startup and will be destroyed only at time of
-     * bundle destruction, this is the major difference with the
-     * implementation retrieved via getImplementations where all of
-     * them are assumed to be in a Container!
-     *
-     *
-     * @return The list of implementations the bundle will support,
-     * in Global version
-     */
-    protected Object[] getGlobalImplementations() {
-        Object[] res = { API3UnitTest.class };
-        return res;
-    }
-
-    /**
-     * Configure the dependency for a given instance Global
-     *
-     * @param c Component assigned for this instance, this will be
-     * what will be used for configuration
-     * @param imp implementation to be configured
-     * @param containerName container on which the configuration happens
-     */
-    protected void configureGlobalInstance(Component c, Object imp) {
-        if (imp.equals(API3UnitTest.class)) {
-            // Nothing to initialize
-        }
-    }
-}