From d4a7658f72decfef05d15973d5cee13910eb47ae Mon Sep 17 00:00:00 2001 From: Kailun Qin Date: Tue, 27 Mar 2018 18:23:01 +0800 Subject: Port nfvo/vnf_functest for framework merge Merged VNF onboarding test functions and frameworks locating separately in nfvo/vnf_functest and vnfsdk/vnf-sdk-function-test seed code. 1) Reconstructed by aligning with the original interface and sequence design; 2) Replaced Restful calls with local invokes; 3) Implemented DB support (PostgreSQL) for persistent recording; 4) Added unit tests associated; 5) Unified package names to "onap"; 6) Fixed several inherent issues. Issue-ID: VNFSDK-178 Change-Id: I2147c5df8dd400adef71dafca9073b12d992d2df Signed-off-by: Kailun Qin --- vnf-sdk-function-test/pom.xml | 87 +++++++++++++++++++++++++++---------------- 1 file changed, 54 insertions(+), 33 deletions(-) (limited to 'vnf-sdk-function-test/pom.xml') diff --git a/vnf-sdk-function-test/pom.xml b/vnf-sdk-function-test/pom.xml index b9c783c..ebd0e7a 100644 --- a/vnf-sdk-function-test/pom.xml +++ b/vnf-sdk-function-test/pom.xml @@ -14,13 +14,13 @@ See the License for the specific language governing permissions and limitations under the License. --> - + - org.openo.vnf-sdk.function-test + org.onap.vnf-sdk.function-test vnfsdk-functest-core-parent - 1.1.0-SNAPSHOT + 1.0.0-SNAPSHOT 4.0.0 @@ -48,7 +48,7 @@ - + @@ -69,8 +69,6 @@ maven-jar-plugin 2.6 - 1.8 - 1.8 true @@ -102,14 +100,12 @@ shade - 1.8 - 1.8 + implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> - org.openo.vnfsdk.functest.VnfSdkFuncTestApp + implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> + org.onap.vnfsdk.functest.VnfSdkFuncTestApp @@ -126,16 +122,6 @@ copy-dependencies - - - - io.dropwizard - dropwizard-core - 0.8.0 - true - - - @@ -146,17 +132,22 @@ io.dropwizard dropwizard-core - 0.8.0 + 1.2.0 io.dropwizard dropwizard-assets - 0.8.0 + 1.2.0 io.dropwizard dropwizard-hibernate - 0.8.0 + 1.2.0 + + + io.dropwizard + dropwizard-migrations + 1.2.0 @@ -203,10 +194,15 @@ gson 2.2.4 + + + + + - mysql - mysql-connector-java - 5.1.18 + org.postgresql + postgresql + 42.1.4 @@ -215,6 +211,13 @@ 4.10 test + + + io.dropwizard + dropwizard-testing + 1.2.0 + test + org.powermock powermock-module-junit4 @@ -239,6 +242,13 @@ 1.8.2 test + + + org.assertj + assertj-core + 3.8.0 + test + org.mockito @@ -246,10 +256,21 @@ 1.9.5 - - org.jmockit - jmockit - 1.19 - + + org.jmockit + jmockit + 1.19 + + + javax.xml.bind + jaxb-api + 2.3.0 + + + + javax.activation + activation + 1.1 + -- cgit 1.2.3-korg