Add netconf scale-util 87/35887/2
authorTomas Cere <tcere@cisco.com>
Mon, 7 Mar 2016 16:34:56 +0000 (17:34 +0100)
committerTomas Cere <tcere@cisco.com>
Tue, 8 Mar 2016 15:17:09 +0000 (16:17 +0100)
Change-Id: I37fd698794d94c48d3c91b4533385c425651d075
Signed-off-by: Tomas Cere <tcere@cisco.com>
netconf/tools/netconf-testtool/pom.xml
netconf/tools/netconf-testtool/src/main/java/org/opendaylight/netconf/test/tool/Main.java
netconf/tools/netconf-testtool/src/main/java/org/opendaylight/netconf/test/tool/ScaleUtil.java [new file with mode: 0644]
netconf/tools/netconf-testtool/src/main/java/org/opendaylight/netconf/test/tool/scale/util/ScaleUtilParameters.java [new file with mode: 0644]
netconf/tools/netconf-testtool/src/main/resources/logback.xml

index c3befad9583311b7a6e4f7bd2820057e8a67cbf2..fa1e85ed1e25d0674ed8255b13e24d953323b4a7 100644 (file)
                             <shadedClassifierName>rest-perf-client</shadedClassifierName>
                         </configuration>
                     </execution>
+
+                    <execution>
+                        <id>scale-util</id>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <phase>package</phase>
+                        <configuration>
+                            <shadedArtifactId>scale-util</shadedArtifactId>
+                            <filters>
+                                <filter>
+                                    <artifact>*:*</artifact>
+                                    <excludes>
+                                        <exclude>META-INF/*.SF</exclude>
+                                        <exclude>META-INF/*.DSA</exclude>
+                                        <exclude>META-INF/*.RSA</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <transformers>
+                                <transformer
+                                        implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+                                    <manifestEntries>
+                                        <Main-Class>org.opendaylight.netconf.test.tool.ScaleUtil</Main-Class>
+                                        <Class-Path>. lib lib/bcprov-jdk15on.jar lib/bcpkix-jdk15on.jar</Class-Path>
+                                    </manifestEntries>
+                                </transformer>
+                            </transformers>
+                            <shadedArtifactAttached>true</shadedArtifactAttached>
+                            <shadedClassifierName>scale-util</shadedClassifierName>
+                        </configuration>
+                    </execution>
                 </executions>
             </plugin>
             <plugin>
index 7f6595f614748193a9e9afedf13832c7ee8005af..1488b0545d954ff4cd6ca4f0ef64dea6336e32d6 100644 (file)
@@ -242,7 +242,7 @@ public final class Main {
         return null;
     }
 
-    private static class ConfigGenerator {
+    static class ConfigGenerator {
         public static final String NETCONF_CONNECTOR_XML = "/99-netconf-connector-simulated.xml";
         public static final String SIM_DEVICE_SUFFIX = "-sim-device";
 
diff --git a/netconf/tools/netconf-testtool/src/main/java/org/opendaylight/netconf/test/tool/ScaleUtil.java b/netconf/tools/netconf-testtool/src/main/java/org/opendaylight/netconf/test/tool/ScaleUtil.java
new file mode 100644 (file)
index 0000000..6b5667c
--- /dev/null
@@ -0,0 +1,298 @@
+/*
+ * Copyright (c) 2016 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.netconf.test.tool;
+
+import ch.qos.logback.classic.Level;
+import com.google.common.base.Charsets;
+import com.google.common.base.Stopwatch;
+import com.google.common.io.CharStreams;
+import com.ning.http.client.AsyncHttpClient;
+import com.ning.http.client.AsyncHttpClientConfig.Builder;
+import com.ning.http.client.Request;
+import com.ning.http.client.Response;
+import java.io.BufferedInputStream;
+import java.io.BufferedReader;
+import java.io.File;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import java.net.ConnectException;
+import java.util.List;
+import java.util.concurrent.Callable;
+import java.util.concurrent.ExecutionException;
+import java.util.concurrent.ScheduledExecutorService;
+import java.util.concurrent.ScheduledFuture;
+import java.util.concurrent.ScheduledThreadPoolExecutor;
+import java.util.concurrent.Semaphore;
+import java.util.concurrent.TimeUnit;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+import net.sourceforge.argparse4j.inf.ArgumentParser;
+import net.sourceforge.argparse4j.inf.ArgumentParserException;
+import org.opendaylight.netconf.test.tool.Main.Params;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public class ScaleUtil {
+
+    private static final Logger RESULTS_LOG = LoggerFactory.getLogger("results");
+    private static final ScheduledExecutorService executor = new LoggingWrapperExecutor(4);
+
+    private static final int deviceStep = 1000;
+    private static final long retryDelay = 10l;
+    private static final long timeout = 20l;
+
+    private static final Stopwatch stopwatch = Stopwatch.createUnstarted();
+
+    private static ScheduledFuture timeoutGuardFuture;
+    private static ch.qos.logback.classic.Logger root;
+    private static final Semaphore semaphore = new Semaphore(0);
+
+    public static void main(final String[] args) {
+        final Params params = parseArgs(args, Params.getParser());
+
+        root = (ch.qos.logback.classic.Logger) LoggerFactory.getLogger(Logger.ROOT_LOGGER_NAME);
+        root.setLevel(params.debug ? Level.DEBUG : Level.INFO);
+
+        // cleanup at the start in case controller was already running
+        final Runtime runtime = Runtime.getRuntime();
+        cleanup(runtime, params);
+
+        while (true) {
+            root.warn("Starting scale test with {} devices", params.deviceCount);
+            timeoutGuardFuture = executor.schedule(new TimeoutGuard(), timeout, TimeUnit.MINUTES);
+            final NetconfDeviceSimulator netconfDeviceSimulator = new NetconfDeviceSimulator();
+            try {
+                final List<Integer> openDevices = netconfDeviceSimulator.start(params);
+                if (openDevices.size() == 0) {
+                    root.error("Failed to start any simulated devices, exiting...");
+                    System.exit(1);
+                }
+                if (params.distroFolder != null) {
+                    final Main.ConfigGenerator configGenerator = new Main.ConfigGenerator(params.distroFolder, openDevices);
+                    final List<File> generated = configGenerator.generate(
+                            params.ssh, params.generateConfigBatchSize,
+                            params.generateConfigsTimeout, params.generateConfigsAddress,
+                            params.devicesPerPort);
+                    configGenerator.updateFeatureFile(generated);
+                    configGenerator.changeLoadOrder();
+                }
+            } catch (final Exception e) {
+                root.error("Unhandled exception", e);
+                netconfDeviceSimulator.close();
+                System.exit(1);
+            }
+
+            root.warn(params.distroFolder.getAbsolutePath());
+            try {
+                runtime.exec(params.distroFolder.getAbsolutePath() + "/bin/start");
+                String status;
+                do {
+                    final Process exec = runtime.exec(params.distroFolder.getAbsolutePath() + "/bin/status");
+                    try {
+                        Thread.sleep(2000l);
+                    } catch (InterruptedException e) {
+                        root.warn("Failed to sleep", e);
+                    }
+                    status = CharStreams.toString(new BufferedReader(new InputStreamReader(exec.getInputStream())));
+                    root.warn("Current status: {}", status);
+                } while (!status.startsWith("Running ..."));
+                root.warn("Doing feature install {}", params.distroFolder.getAbsolutePath() + "/bin/client -u karaf feature:install odl-restconf-noauth odl-netconf-connector-all");
+                final Process featureInstall = runtime.exec(params.distroFolder.getAbsolutePath() + "/bin/client -u karaf feature:install odl-restconf-noauth odl-netconf-connector-all");
+                root.warn(CharStreams.toString(new BufferedReader(new InputStreamReader(featureInstall.getInputStream()))));
+                root.warn(CharStreams.toString(new BufferedReader(new InputStreamReader(featureInstall.getErrorStream()))));
+
+            } catch (IOException e) {
+                root.warn("Failed to start karaf", e);
+                System.exit(1);
+            }
+
+            root.warn("Karaf started, starting stopwatch");
+            stopwatch.start();
+
+            try {
+                executor.schedule(new ScaleVerifyCallable(netconfDeviceSimulator, params.deviceCount), retryDelay, TimeUnit.SECONDS);
+                root.warn("First callable scheduled");
+                semaphore.acquire();
+                root.warn("semaphore released");
+            } catch (InterruptedException e) {
+                throw new RuntimeException(e);
+            }
+
+            timeoutGuardFuture.cancel(false);
+            params.deviceCount += deviceStep;
+            netconfDeviceSimulator.close();
+            stopwatch.reset();
+
+            cleanup(runtime, params);
+        }
+    }
+
+    private static void cleanup(final Runtime runtime, final Params params) {
+        try {
+            stopKaraf(runtime, params);
+            deleteFolder(new File(params.distroFolder.getAbsoluteFile() + "/data"));
+
+        } catch (IOException | InterruptedException e) {
+            root.warn("Failed to stop karaf", e);
+            System.exit(1);
+        }
+    }
+
+    private static void stopKaraf(final Runtime runtime, final Params params) throws IOException, InterruptedException {
+        root.info("Stopping karaf and sleeping for 10 sec..");
+        String controllerPid = "";
+        do {
+
+            final Process pgrep = runtime.exec("pgrep -f org.apache.karaf.main.Main");
+
+            controllerPid = CharStreams.toString(new BufferedReader(new InputStreamReader(pgrep.getInputStream())));
+            root.warn(controllerPid);
+            runtime.exec("kill -9 " + controllerPid);
+
+            Thread.sleep(10000l);
+        } while (!controllerPid.isEmpty());
+        deleteFolder(new File(params.distroFolder.getAbsoluteFile() + "/data"));
+    }
+
+    private static void deleteFolder(File folder) {
+        File[] files = folder.listFiles();
+        if(files!=null) { //some JVMs return null for empty dirs
+            for(File f: files) {
+                if(f.isDirectory()) {
+                    deleteFolder(f);
+                } else {
+                    f.delete();
+                }
+            }
+        }
+        folder.delete();
+    }
+
+    private static Params parseArgs(final String[] args, final ArgumentParser parser) {
+        final Params parameters = new Params();
+        try {
+            parser.parseArgs(args, parameters);
+            return parameters;
+        } catch (ArgumentParserException e) {
+            parser.handleError(e);
+        }
+
+        System.exit(1);
+        return null;
+    }
+
+    private static class ScaleVerifyCallable implements Callable {
+
+        private static final Logger LOG = LoggerFactory.getLogger(ScaleVerifyCallable.class);
+
+        private static final String RESTCONF_URL = "http://127.0.0.1:8181/restconf/operational/network-topology:network-topology/topology/topology-netconf/";
+        private static final Pattern PATTERN = Pattern.compile("connected");
+
+        private final AsyncHttpClient asyncHttpClient = new AsyncHttpClient(new Builder()
+                .setConnectTimeout(Integer.MAX_VALUE)
+                .setRequestTimeout(Integer.MAX_VALUE)
+                .setAllowPoolingConnections(true)
+                .build());
+        private final NetconfDeviceSimulator simulator;
+        private final int deviceCount;
+        private final Request request;
+
+        public ScaleVerifyCallable(final NetconfDeviceSimulator simulator, final int deviceCount) {
+            LOG.info("New callable created");
+            this.simulator = simulator;
+            this.deviceCount = deviceCount;
+            AsyncHttpClient.BoundRequestBuilder requestBuilder = asyncHttpClient.prepareGet(RESTCONF_URL)
+                    .addHeader("content-type", "application/xml")
+                    .addHeader("Accept", "application/xml")
+                    .setRequestTimeout(Integer.MAX_VALUE);
+            request = requestBuilder.build();
+        }
+
+        @Override
+        public Object call() throws Exception {
+            try {
+                final Response response = asyncHttpClient.executeRequest(request).get();
+
+                if (response.getStatusCode() != 200 && response.getStatusCode() != 204) {
+                    LOG.warn("Request failed, status code: {}", response.getStatusCode() + response.getStatusText());
+                    executor.schedule(new ScaleVerifyCallable(simulator, deviceCount), retryDelay, TimeUnit.SECONDS);
+                } else {
+                    final String body = response.getResponseBody();
+                    final Matcher matcher = PATTERN.matcher(body);
+                    int count = 0;
+                    while (matcher.find()) {
+                        count++;
+                    }
+                    RESULTS_LOG.info("Currently connected devices : {} out of {}, time elapsed: {}", count, deviceCount + 1, stopwatch);
+                    if (count != deviceCount + 1) {
+                        executor.schedule(new ScaleVerifyCallable(simulator, deviceCount), retryDelay, TimeUnit.SECONDS);
+                    } else {
+                        stopwatch.stop();
+                        RESULTS_LOG.info("All devices connected in {}", stopwatch);
+                        semaphore.release();
+                    }
+                }
+            } catch (ConnectException | ExecutionException e) {
+                LOG.warn("Failed to connect to Restconf, is the controller running?", e);
+                executor.schedule(new ScaleVerifyCallable(simulator, deviceCount), retryDelay, TimeUnit.SECONDS);
+            }
+            return null;
+        }
+    }
+
+    private static class TimeoutGuard implements Callable {
+
+        @Override
+        public Object call() throws Exception {
+            RESULTS_LOG.warn("Timeout for scale test reached after: {} ..aborting", stopwatch);
+            root.warn("Timeout for scale test reached after: {} ..aborting", stopwatch);
+            System.exit(0);
+            return null;
+        }
+    }
+
+    public static class LoggingWrapperExecutor extends ScheduledThreadPoolExecutor {
+
+        public LoggingWrapperExecutor(int corePoolSize) {
+            super(corePoolSize);
+        }
+
+        @Override
+        public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) {
+            return super.schedule(wrapCallable(callable), delay, unit);
+        }
+
+        private Callable wrapCallable(Callable callable) {
+            return new LogOnExceptionCallable(callable);
+        }
+
+        private class LogOnExceptionCallable implements Callable {
+            private Callable theCallable;
+
+            public LogOnExceptionCallable(Callable theCallable) {
+                super();
+                this.theCallable = theCallable;
+            }
+
+            @Override
+            public Object call() throws Exception {
+                try {
+                    theCallable.call();
+                    return null;
+                } catch (Exception e) {
+                    // log
+                    root.warn("error in executing: " + theCallable + ". It will no longer be run!", e);
+
+                    // rethrow so that the executor can do it's thing
+                    throw new RuntimeException(e);
+                }
+            }
+        }
+    }
+}
diff --git a/netconf/tools/netconf-testtool/src/main/java/org/opendaylight/netconf/test/tool/scale/util/ScaleUtilParameters.java b/netconf/tools/netconf-testtool/src/main/java/org/opendaylight/netconf/test/tool/scale/util/ScaleUtilParameters.java
new file mode 100644 (file)
index 0000000..1cc85ae
--- /dev/null
@@ -0,0 +1,46 @@
+/*
+ * Copyright (c) 2016 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.netconf.test.tool.scale.util;
+
+import java.io.File;
+import net.sourceforge.argparse4j.ArgumentParsers;
+import net.sourceforge.argparse4j.annotation.Arg;
+import net.sourceforge.argparse4j.inf.ArgumentParser;
+import net.sourceforge.argparse4j.inf.ArgumentParserException;
+
+public class ScaleUtilParameters {
+
+    @Arg(dest = "distro-folder")
+    public File distroFolder;
+
+    static ArgumentParser getParser() {
+        final ArgumentParser parser = ArgumentParsers.newArgumentParser("scale test helper");
+
+        parser.addArgument("--distribution-folder")
+                .type(File.class)
+                .help("Directory where the karaf distribution for controller is located")
+                .dest("distro-folder");
+
+        return parser;
+    }
+
+    static ScaleUtilParameters parseArgs(final String[] args, final ArgumentParser parser) {
+        final ScaleUtilParameters parameters = new ScaleUtilParameters();
+        try {
+            parser.parseArgs(args, parameters);
+            return parameters;
+        } catch (ArgumentParserException e) {
+            parser.handleError(e);
+        }
+
+        System.exit(1);
+        return null;
+    }
+
+}
index df3ab10f48c2145e47b053e2b5fd2cc4870346b7..1bdb2f02a0f0862d490ce7764b64bc8e0529651f 100644 (file)
         <appender-ref ref="STDOUT"/>
     </root>
 
+    <appender name="RESULTS-FILE" class="ch.qos.logback.core.FileAppender">
+        <file>scale-results.log</file>
+        <append>true</append>
+        <encoder>
+          <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
+        </encoder>
+    </appender>
+
+    <logger name="results" level="DEBUG" additivity="false">
+       <appender-ref ref="RESULTS-FILE"/>
+    </logger>
+
     <logger name="com.ning.http.client" level="WARN"/>
 </configuration>
\ No newline at end of file