Modify svnfm pom file for build docker
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / integration-test / java / org / openo / nfvo / vnfmadapter / test / ITVnfAdapterResourceRoaFail.java
1 /*
2  * Copyright 2016 Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openo.nfvo.vnfmadapter.test;
18
19 import java.io.File;
20
21 import org.junit.After;
22 import org.junit.Before;
23 import org.junit.Test;
24 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.restclient.ServiceException;
25 import org.openo.nfvo.vnfmadapter.mocoserver.VnfmAdapterSuccessServer;
26 import org.openo.nfvo.vnfmadapter.util.FailureChecker;
27 import org.openo.nfvo.vnfmadapter.util.GetSuccessChecker;
28 import org.openo.nfvo.vnfmadapter.util.MyTestManager;
29 import org.openo.nfvo.vnfmadapter.util.SuccessChecker;
30
31 /**
32  * <br>
33  * <p>
34  * </p>
35  * 
36  * @author
37  * @version NFVO 0.5 Sep 24, 2016
38  */
39 public class ITVnfAdapterResourceRoaFail extends MyTestManager {
40
41     private static final String GET_PATH = "src/integration-test/resources/vnfmadapter/testcase/vnfadapterresourceroa/querygetallcloudinfofail.json";
42
43     private VnfmAdapterSuccessServer vnfmAdapterServer = new VnfmAdapterSuccessServer(31943);
44
45
46     @Before
47     public void setup() throws ServiceException, InterruptedException {
48         vnfmAdapterServer.start();
49 //      Thread.sleep(1000*30);
50     }
51
52     @After
53     public void tearDown() throws ServiceException {
54         vnfmAdapterServer.stop();
55     }
56
57     @Test
58     public void testOperateSuccess() throws ServiceException {
59         execTestCase(new File(GET_PATH),new FailureChecker());
60     }
61 }