diff options
author | Murali-P <murali.p@huawei.com> | 2017-01-30 20:25:40 +0530 |
---|---|---|
committer | Murali-P <murali.p@huawei.com> | 2017-01-31 10:30:07 +0530 |
commit | 3075304c7f0a4814e2de297fb6ca54e48ffe7b91 (patch) | |
tree | ece70a3fd823d98d68c5142b7e85da8d4d07f803 /distribution | |
parent | f4a9f582e9dc1fb064e650f8934e8a402749d6bb (diff) |
VNF SDK Function test init Code
Resolved:VNFSDK-21
Function test base code
Change-Id: Ib8070d0549acdea4775bd325c5a282d5e2a708e0
Signed-off-by: Murali-P <murali.p@huawei.com>
Diffstat (limited to 'distribution')
-rw-r--r-- | distribution/.gitignore | 6 | ||||
-rw-r--r-- | distribution/pom.xml | 25 | ||||
-rw-r--r-- | distribution/standalone/.gitignore | 6 | ||||
-rw-r--r-- | distribution/standalone/pom.xml | 160 | ||||
-rw-r--r-- | distribution/standalone/src/main/assembly/conf/vnfsdkfunctest.yml | 61 | ||||
-rw-r--r-- | distribution/standalone/src/main/assembly/find_kill_process.bat | 9 | ||||
-rw-r--r-- | distribution/standalone/src/main/assembly/run.bat | 25 | ||||
-rw-r--r-- | distribution/standalone/src/main/assembly/run.sh | 19 | ||||
-rw-r--r-- | distribution/standalone/src/main/assembly/stop.bat | 19 | ||||
-rw-r--r-- | distribution/standalone/src/main/assembly/stop.sh | 28 |
10 files changed, 358 insertions, 0 deletions
diff --git a/distribution/.gitignore b/distribution/.gitignore new file mode 100644 index 0000000..67a2e60 --- /dev/null +++ b/distribution/.gitignore @@ -0,0 +1,6 @@ +target/ +.project +.settings +.classpath +.class +.checkstyle diff --git a/distribution/pom.xml b/distribution/pom.xml new file mode 100644 index 0000000..590fdb1 --- /dev/null +++ b/distribution/pom.xml @@ -0,0 +1,25 @@ +<?xml version="1.0"?> + +<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"> + <parent> + <groupId>org.openo.vnf-sdk.function-test</groupId> + <artifactId>vnfsdk-functest-core-parent</artifactId> + <version>1.1.0-SNAPSHOT</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <artifactId>distribution</artifactId> + <name>vnfsdk-functest-distribution</name> + <packaging>pom</packaging> + + <modules> + <module>standalone</module> + </modules> + <dependencies> + <dependency> + <groupId>org.openo.vnf-sdk.function-test</groupId> + <artifactId>vnf-sdk-function-test</artifactId> + <version>1.1.0-SNAPSHOT</version> + </dependency> + </dependencies> +</project> diff --git a/distribution/standalone/.gitignore b/distribution/standalone/.gitignore new file mode 100644 index 0000000..67a2e60 --- /dev/null +++ b/distribution/standalone/.gitignore @@ -0,0 +1,6 @@ +target/ +.project +.settings +.classpath +.class +.checkstyle diff --git a/distribution/standalone/pom.xml b/distribution/standalone/pom.xml new file mode 100644 index 0000000..eff47f6 --- /dev/null +++ b/distribution/standalone/pom.xml @@ -0,0 +1,160 @@ +<?xml version="1.0"?> +<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"> + <parent> + <groupId>org.openo.vnf-sdk.function-test</groupId> + <artifactId>distribution</artifactId> + <version>1.1.0-SNAPSHOT</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <artifactId>standalone</artifactId> + <name>vnfsdk-functest-distribution-standalone</name> + <packaging>pom</packaging> + + <properties> + <packagename>openo-vnfsdk-functest</packagename> + <linux64id>linux64</linux64id> + <win64id>win64</win64id> + <linux64outputdir>target/assembly/${linux64id}</linux64outputdir> + <win64outputdir>target/assembly/${win64id}</win64outputdir> + <version.output>target/version</version.output> + </properties> + + <build> + <plugins> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <executions> + <execution> + <id>copy-resources-${linux64id}</id> + <phase>process-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${linux64outputdir}</outputDirectory> + <resources> + <resource> + <directory>src/main/assembly/</directory> + <filtering>false</filtering> + <includes> + <include>**/*</include> + </includes> + <excludes> + <exclude>**/*.bat</exclude> + </excludes> + </resource> + </resources> + <overwrite>true</overwrite> + </configuration> + </execution> + <execution> + <id>copy-resources-${win64id}</id> + <phase>process-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${win64outputdir}</outputDirectory> + <resources> + <resource> + <directory>src/main/assembly/</directory> + <filtering>false</filtering> + <includes> + <include>**/*</include> + </includes> + <excludes> + <exclude>**/*.sh</exclude> + </excludes> + </resource> + </resources> + <overwrite>true</overwrite> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <id>copy-jar-${linux64id}</id> + <goals> + <goal>copy</goal> + </goals> + <phase>prepare-package</phase> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.openo.vnf-sdk.function-test</groupId> + <artifactId>vnf-sdk-function-test</artifactId> + <type>jar</type> + <overWrite>true</overWrite> + <outputDirectory>${linux64outputdir}</outputDirectory> + <destFileName>vnf-sdk-function-test</destFileName> + </artifactItem> + </artifactItems> + </configuration> + </execution> + <execution> + <id>copy-jar-${win64id}</id> + <goals> + <goal>copy</goal> + </goals> + <phase>prepare-package</phase> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.openo.vnf-sdk.function-test</groupId> + <artifactId>vnf-sdk-function-test</artifactId> + <type>jar</type> + <overWrite>true</overWrite> + <outputDirectory>${win64outputdir}</outputDirectory> + <destFileName>vnf-sdk-function-test</destFileName> + </artifactItem> + </artifactItems> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <id>distribution</id> + <phase>package</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <target name="distribution"> + <tar destfile="${version.output}/${packagename}-${project.version}-linux64.tar.gz" longfile="posix" compression="gzip"> + <tarfileset dir="target/assembly/linux64" filemode="0644" dirmode="0755"> + <exclude name="**/*.sh"/> + </tarfileset> + <tarfileset dir="target/assembly/linux64" filemode="0755" dirmode="0755"> + <include name="**/*.sh"/> + </tarfileset> + </tar> + <attachartifact file="${version.output}/${packagename}-${project.version}-linux64.tar.gz" classifier="linux64" type="tar.gz"/> + <zip destfile="${version.output}/${packagename}-${project.version}-win64.zip" update="true"> + <zipfileset dir="target/assembly/win64" includes="**"/> + </zip> + <attachartifact file="${version.output}/${packagename}-${project.version}-win64.zip" classifier="win64" type="zip"/> + </target> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.openo.vnf-sdk.function-test</groupId> + <artifactId>vnf-sdk-function-test</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> +</project> diff --git a/distribution/standalone/src/main/assembly/conf/vnfsdkfunctest.yml b/distribution/standalone/src/main/assembly/conf/vnfsdkfunctest.yml new file mode 100644 index 0000000..e4e00d0 --- /dev/null +++ b/distribution/standalone/src/main/assembly/conf/vnfsdkfunctest.yml @@ -0,0 +1,61 @@ + +template: Hello, %s! + +defaultName: ${DW_DEFAULT_NAME:-Stranger} + +msbServerAddr: http://127.0.0.1:80 +#database +database: + + # the name of your JDBC driver + driverClass: com.mysql.jdbc.Driver + + # the username + user: functest + + # the password + password: functest + + # the JDBC URL + url: jdbc:mysql://127.0.0.1:3306/functest + +# use the simple server factory if you only want to run on a single port +#server: +# type: simple +# connector: +# type: http +# port: 8080 +server: + type: simple + rootPath: '/openoapi/vnfsdk/v1/*' + applicationContextPath: / + adminContextPath: /admin + connector: + type: http + port: 8100 + +# Logging settings. +logging: + + # The default level of all loggers. Can be OFF, ERROR, WARN, INFO, DEBUG, TRACE, or ALL. + level: ALL + + # Logger-specific levels. + loggers: + + # Sets the level for 'com.example.app' to DEBUG. + org.openo.vnfsdk.functest.VnfSdkFunTestApp: INFO + + appenders: + - type: console + threshold: INFO + timeZone: UTC + logFormat: "%d{yyyy-MM-dd HH:mm:ss SSS} %-5p [%c][%t] - %m%n" + - type: file + threshold: INFO + logFormat: "%d{yyyy-MM-dd HH:mm:ss SSS} %-5p [%c][%t] - %m%n" + currentLogFilename: ./works/logs/vnfsdk.log + archivedLogFilenamePattern: ./works/logs/zip/vnfsdk-%d{yyyy-MM-dd}.log.gz + archivedFileCount: 7 + timeZone: UTC + diff --git a/distribution/standalone/src/main/assembly/find_kill_process.bat b/distribution/standalone/src/main/assembly/find_kill_process.bat new file mode 100644 index 0000000..4a4baaf --- /dev/null +++ b/distribution/standalone/src/main/assembly/find_kill_process.bat @@ -0,0 +1,9 @@ + +echo %1 | findstr %2 >NUL +echo ERRORLEVEL=%ERRORLEVEL% +IF ERRORLEVEL 1 goto findend +for /f "tokens=1" %%a in (%1) do ( + echo kill %1 + taskkill /F /pid %%a +) +:findend
\ No newline at end of file diff --git a/distribution/standalone/src/main/assembly/run.bat b/distribution/standalone/src/main/assembly/run.bat new file mode 100644 index 0000000..3ce5172 --- /dev/null +++ b/distribution/standalone/src/main/assembly/run.bat @@ -0,0 +1,25 @@ + +@echo off +title vnfsdk-functest + +set RUNHOME=%~dp0 +echo ### RUNHOME: %RUNHOME% +echo ### Starting vnfsdk-functest + +set JAVA="%JAVA_HOME%\bin\java.exe" +set port=8312 +set jvm_opts=-Xms50m -Xmx128m +rem set jvm_opts=%jvm_opts% -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=%port%,server=y,suspend=n +set class_path=%RUNHOME%;%RUNHOME%vnf-sdk-function-test.jar +echo ### jvm_opts: %jvm_opts% +echo ### class_path: %class_path% + +%JAVA% -classpath %class_path% %jvm_opts% org.openo.vnfsdk.functest.VnfSdkFuncTestApp server %RUNHOME%conf/vnfsdkfunctest.yml + +IF ERRORLEVEL 1 goto showerror +exit +:showerror +echo WARNING: Error occurred during startup or Server abnormally stopped by way of killing the process,Please check! +echo After checking, press any key to close +pause +exit
\ No newline at end of file diff --git a/distribution/standalone/src/main/assembly/run.sh b/distribution/standalone/src/main/assembly/run.sh new file mode 100644 index 0000000..b20c252 --- /dev/null +++ b/distribution/standalone/src/main/assembly/run.sh @@ -0,0 +1,19 @@ + +DIRNAME=`dirname $0` +RUNHOME=`cd $DIRNAME/; pwd` +echo @RUNHOME@ $RUNHOME + +echo @JAVA_HOME@ $JAVA_HOME +JAVA="$JAVA_HOME/bin/java" +echo @JAVA@ $JAVA + +JAVA_OPTS="-Xms50m -Xmx128m" +port=8312 +#JAVA_OPTS="$JAVA_OPTS -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=$port,server=y,suspend=n" +echo @JAVA_OPTS@ $JAVA_OPTS + +class_path="$RUNHOME/:$RUNHOME/org.openo.vnfsdk.functest.jar" +echo @class_path@ $class_path + +"$JAVA" $JAVA_OPTS -classpath "$class_path" org.openo.vnfsdk.functest.VnfSdkFuncTestApp server "$RUNHOME/conf/vnfsdkfunctest.yml" + diff --git a/distribution/standalone/src/main/assembly/stop.bat b/distribution/standalone/src/main/assembly/stop.bat new file mode 100644 index 0000000..c075ac1 --- /dev/null +++ b/distribution/standalone/src/main/assembly/stop.bat @@ -0,0 +1,19 @@ + +@echo off +title stopping vnfsdk-functest + +set HOME=%~dp0 +set Main_Class="org.openo.vnfsdk.functest.VnfSdkFuncTestApp" + +echo ================== extsys-service info ============================================= +echo HOME=$HOME +echo Main_Class=%Main_Class% +echo =============================================================================== + +echo ### Stopping vnfsdk-functest +cd /d %HOME% + +for /f "delims=" %%i in ('"%JAVA_HOME%\bin\jcmd"') do ( + call find_kill_process "%%i" %Main_Class% +) +exit
\ No newline at end of file diff --git a/distribution/standalone/src/main/assembly/stop.sh b/distribution/standalone/src/main/assembly/stop.sh new file mode 100644 index 0000000..0080d41 --- /dev/null +++ b/distribution/standalone/src/main/assembly/stop.sh @@ -0,0 +1,28 @@ + +DIRNAME=`dirname $0` +HOME=`cd $DIRNAME/; pwd` +Main_Class="org.openo.vnfsdk.functest.VnfSdkFuncTestApp" + +echo ================== catalog-service info ============================================= +echo HOME=$HOME +echo Main_Class=$Main_Class +echo =============================================================================== +cd $HOME; pwd + +echo @WORK_DIR@ $HOME + +function save_service_pid(){ + service_pid=`ps -ef | grep $Main_Class | grep -v grep | awk '{print $2}'` + echo @service_pid@ $service_pid +} + +function kill_service_process(){ + ps -p $service_pid + if [ $? == 0 ]; then + kill -9 $service_pid + fi +} + +save_service_pid; +echo @C_CMD@ kill -9 $service_pid +kill_service_process; |