Update testtool version in tests folder 47/73547/5
authorMartial COULIBALY <martial.coulibaly@gfi.fr>
Thu, 22 Feb 2018 09:11:35 +0000 (10:11 +0100)
committerguillaume.lambert <guillaume.lambert@orange.com>
Wed, 18 Jul 2018 12:23:35 +0000 (14:23 +0200)
- testtool 1.3.1-SNAPSHOT is no more available in netconf nexus repo.
  Switched netconf submodule to branch 'release/nitrogen-sr1' (=1.3.1).
- updated portmapping tests and start.sh with testtool new version.
- changed portmapping tests restconf address 172.0.0.1 into localhost
  because of some tox issues.

Change-Id: Ie885f71c8103800a7888bd456170ceb98e2424df
Signed-off-by: Martial COULIBALY <martial.coulibaly@gfi.fr>
tests/build.sh
tests/netconf
tests/start.sh
tests/testtool_pom.xml [deleted file]
tests/transportpce_tests/test_portmapping.py

index d765ebfd8fc483ace8166565935846cabb75b4ee..676dc1c2011a16dea4b56bf36e2069877f3ddffa 100755 (executable)
@@ -15,7 +15,7 @@ netconf/netconf/models/ietf-netconf-notifications/src/main/yang/notifications@20
 rm -rf netconf mdsal && git submodule update --init
 (cd netconf && patch -p1 < ../netconf.patch && patch -p1 < ../get_connection_port_trail.patch)
 
-(cp testtool_pom.xml netconf/netconf/tools/netconf-testtool/pom.xml  && cd netconf/netconf/tools/netconf-testtool &&  mvn clean install -DskipTests)
+(cd netconf/netconf/tools/netconf-testtool &&  mvn clean install -DskipTests)
 rm -rf schemas && mkdir -p schemas
 #sample config for ordm 2.x are not yet ready
 #cp -r ../ordmodels/common/src/main/yang/org-openroadm-* schemas
index b5505bd7a925c66f59687a17d4e0e855f5cb6939..fc2c9d59ba8c17b42118ffe2e92237d92264d5c2 160000 (submodule)
@@ -1 +1 @@
-Subproject commit b5505bd7a925c66f59687a17d4e0e855f5cb6939
+Subproject commit fc2c9d59ba8c17b42118ffe2e92237d92264d5c2
index b395d89ee67c346fcb6fdd61365582e53314eee1..ef87b264d8af7bdfc8a4f2359835c76c74761140 100755 (executable)
@@ -11,7 +11,7 @@
 
 java -jar ./netconf/netconf/tools/netconf-testtool/target/netconf-testtool-1.3.1-executable.jar \
      --schemas-dir schemas \
-     --initial-config-xml-file sample-config-ROADM.xml \
+     --initial-config-xml-file sample_configs/ord_1.2.1/sample-config-ROADM.xml \
      ${opts}
 
 exit $?
diff --git a/tests/testtool_pom.xml b/tests/testtool_pom.xml
deleted file mode 100644 (file)
index bcb5821..0000000
+++ /dev/null
@@ -1,401 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  ~ Copyright (c) 2014 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
-  -->
-
-<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.odlparent</groupId>
-        <artifactId>odlparent</artifactId>
-        <version>2.0.5</version>
-        <relativePath/>
-    </parent>
-
-    <groupId>org.opendaylight.netconf</groupId>
-    <artifactId>netconf-testtool</artifactId>
-    <name>${project.artifactId}</name>
-    <version>1.3.1</version>
-    <packaging>jar</packaging>
-
-    <properties>
-        <sonar.skip>true</sonar.skip>
-    </properties>
-
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.opendaylight.netconf</groupId>
-                <artifactId>netconf-artifacts</artifactId>
-                <version>${project.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-            <dependency>
-                <groupId>org.opendaylight.yangtools</groupId>
-                <artifactId>yangtools-artifacts</artifactId>
-                <version>1.2.1</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-            <dependency>
-                <groupId>org.opendaylight.controller</groupId>
-                <artifactId>config-artifacts</artifactId>
-                <version>0.7.1</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-            <dependency>
-                <groupId>org.opendaylight.controller</groupId>
-                <artifactId>mdsal-artifacts</artifactId>
-                <version>1.6.1</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-            <dependency>
-                <groupId>org.opendaylight.mdsal.model</groupId>
-                <artifactId>mdsal-model-artifacts</artifactId>
-                <version>0.11.1</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.codehaus.janino</groupId>
-            <artifactId>janino</artifactId>
-            <version>2.6.1</version>
-        </dependency>
-        <dependency>
-            <groupId>net.sourceforge.argparse4j</groupId>
-            <artifactId>argparse4j</artifactId>
-            <version>0.4.3</version>
-        </dependency>
-        <dependency>
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-classic</artifactId>
-            <scope>compile</scope>
-        </dependency>
-        <dependency>
-            <groupId>com.ning</groupId>
-            <artifactId>async-http-client</artifactId>
-            <version>1.9.24</version>
-        </dependency>
-        <dependency>
-            <groupId>org.bouncycastle</groupId>
-            <artifactId>bcpkix-jdk15on</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.bouncycastle</groupId>
-            <artifactId>bcprov-jdk15on</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>netconf-netty-util</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>netconf-auth</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>config-netconf-connector</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>sal-netconf-connector</artifactId>
-        </dependency>
-       <dependency>
-            <groupId>org.opendaylight.yangtools</groupId>
-            <artifactId>mockito-configuration</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>com.google.guava</groupId>
-            <artifactId>guava</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>netconf-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>ietf-netconf-monitoring</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>ietf-netconf-monitoring-extension</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>netconf-client</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.opendaylight.mdsal.model</groupId>
-            <artifactId>ietf-yang-types-20130715</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.opendaylight.mdsal.model</groupId>
-            <artifactId>ietf-inet-types-2013-07-15</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>netconf-impl</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>netconf-mapping-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>netconf-monitoring</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>netconf-ssh</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.opendaylight.controller</groupId>
-            <artifactId>netty-config-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.opendaylight.controller</groupId>
-            <artifactId>sal-inmemory-datastore</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.opendaylight.netconf</groupId>
-            <artifactId>mdsal-netconf-connector</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.karaf.features</groupId>
-            <artifactId>org.apache.karaf.features.core</artifactId>
-            <version>${karaf.version}</version>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-dependency-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>stress-client dependency copy</id>
-                        <goals>
-                            <goal>copy</goal>
-                        </goals>
-                        <configuration>
-                            <artifactItems>
-                                <artifactItem>
-                                    <groupId>org.bouncycastle</groupId>
-                                    <artifactId>bcpkix-jdk15on</artifactId>
-                                    <outputDirectory>${project.build.directory}/lib</outputDirectory>
-                                    <overWrite>true</overWrite>
-                                    <destFileName>bcpkix-jdk15on.jar</destFileName>
-                                </artifactItem>
-                                <artifactItem>
-                                    <groupId>org.bouncycastle</groupId>
-                                    <artifactId>bcprov-jdk15on</artifactId>
-                                    <outputDirectory>${project.build.directory}/lib</outputDirectory>
-                                    <overWrite>true</overWrite>
-                                    <destFileName>bcprov-jdk15on.jar</destFileName>
-                                </artifactItem>
-                            </artifactItems>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-shade-plugin</artifactId>
-                <configuration></configuration>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>shade</goal>
-                        </goals>
-                        <phase>package</phase>
-                        <configuration>
-                            <!-- TODO investigate why jar fails without this filter-->
-                            <filters>
-                                <filter>
-                                    <artifact>*:*</artifact>
-                                    <excludes>
-                                        <exclude>META-INF/*.SF</exclude>
-                                        <exclude>META-INF/*.DSA</exclude>
-                                        <exclude>META-INF/*.RSA</exclude>
-                                        <exclude>org.opendaylight.netconf.test.tool.client</exclude>
-                                    </excludes>
-                                </filter>
-                            </filters>
-                              <transformers>
-                                  <transformer
-                                          implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
-                                      <mainClass>org.opendaylight.netconf.test.tool.Main</mainClass>
-                                  </transformer>
-                              </transformers>
-                              <shadedArtifactAttached>true</shadedArtifactAttached>
-                              <shadedClassifierName>executable</shadedClassifierName>
-                          </configuration>
-                      </execution>
-
-                      <execution>
-                          <id>stress-client</id>
-                          <goals>
-                              <goal>shade</goal>
-                          </goals>
-                          <phase>package</phase>
-                          <configuration>
-                              <shadedArtifactId>stress-client</shadedArtifactId>
-                              <filters>
-                                  <filter>
-                                      <artifact>*:*</artifact>
-                                      <excludes>
-                                          <exclude>META-INF/*.SF</exclude>
-                                          <exclude>META-INF/*.DSA</exclude>
-                                          <exclude>META-INF/*.RSA</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.client.http</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.rpc</exclude>
-                                          <exclude>AcceptingAuthProvider</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.DummyMonitoringService</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.FakeCapability</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.Main</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.NetconfDeviceSimulator</exclude>
-                                      </excludes>
-                                  </filter>
-                              </filters>
-                              <artifactSet>
-                                  <excludes>
-                                     <exclude>org.bouncycastle:*</exclude>
-                                  </excludes>
-                              </artifactSet>
-                              <transformers>
-                                  <transformer
-                                          implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
-                                      <manifestEntries>
-                                          <Main-Class>org.opendaylight.netconf.test.tool.client.stress.StressClient</Main-Class>
-                                          <Class-Path>. lib lib/bcprov-jdk15on.jar lib/bcpkix-jdk15on.jar</Class-Path>
-                                      </manifestEntries>
-                                  </transformer>
-                              </transformers>
-                              <shadedArtifactAttached>true</shadedArtifactAttached>
-                              <shadedClassifierName>stress-client</shadedClassifierName>
-                          </configuration>
-                      </execution>
-
-                      <execution>
-                          <id>restconf-perf-client</id>
-                          <goals>
-                              <goal>shade</goal>
-                          </goals>
-                          <phase>package</phase>
-                          <configuration>
-                              <shadedArtifactId>rest-perf-client</shadedArtifactId>
-                              <filters>
-                                  <filter>
-                                      <artifact>*:*</artifact>
-                                      <excludes>
-                                          <exclude>META-INF/*.SF</exclude>
-                                          <exclude>META-INF/*.DSA</exclude>
-                                          <exclude>META-INF/*.RSA</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.rpc</exclude>
-                                          <exclude>AcceptingAuthProvider</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.DummyMonitoringService</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.FakeCapability</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.Main</exclude>
-                                          <exclude>org.opendaylight.netconf.test.tool.NetconfDeviceSimulator</exclude>
-                                      </excludes>
-                                  </filter>
-                              </filters>
-                              <artifactSet>
-                                  <excludes>
-                                      <exclude>org.bouncycastle:*</exclude>
-                                      <exclude>com.google:*</exclude>
-                                      <exclude>org.opendaylight.yangtools</exclude>
-                                      <exclude>org.opendaylight.yang</exclude>
-                                  </excludes>
-                              </artifactSet>
-                              <transformers>
-                                  <transformer
-                                          implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
-                                      <mainClass>org.opendaylight.netconf.test.tool.client.http.perf.RestPerfClient</mainClass>
-                                  </transformer>
-                              </transformers>
-                              <shadedArtifactAttached>true</shadedArtifactAttached>
-                              <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>
-                  <artifactId>maven-assembly-plugin</artifactId>
-                  <configuration>
-                      <descriptors>
-                          <descriptor>src/main/assembly/stress-client.xml</descriptor>
-                      </descriptors>
-                      <finalName>stress-client-${project.version}-package</finalName>
-                  </configuration>
-                  <executions>
-                      <execution>
-                          <id>make-assembly</id>
-                          <phase>package</phase>
-                          <goals>
-                              <goal>single</goal>
-                          </goals>
-                      </execution>
-                  </executions>
-              </plugin>
-              <plugin>
-                  <groupId>org.apache.maven.plugins</groupId>
-                  <artifactId>maven-checkstyle-plugin</artifactId>
-                  <configuration>
-                      <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
-                  </configuration>
-              </plugin>
-          </plugins>
-      </build>
-
-  </project>
index a880ea80dca42a086ee450c178d99d50179843ca..296b7963cf75506a81945878df77eea164cef919 100644 (file)
@@ -25,7 +25,7 @@ class TransportPCEPortMappingTesting(unittest.TestCase):
     testtools_process1 = None
     testtools_process2 = None
     odl_process = None
-    restconf_baseurl = "http://127.0.0.1:8181/restconf"
+    restconf_baseurl = "http://localhost:8181/restconf"
 
     @classmethod
     def __start_testtools(cls):