Change: add OPEN-O seed code for VF-C
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / integration-test / java / org / openo / nfvo / vnfmadapter / test / ITVnfRoaFail.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.openo.baseservice.remoteservice.exception.ServiceException;
25 import org.openo.nfvo.vnfmadapter.mocoserver.VnfmAdapterSuccessServer;
26 import org.openo.nfvo.vnfmadapter.util.FailureChecker;
27 import org.openo.nfvo.vnfmadapter.util.MyTestManager;
28
29 /**
30  * <br>
31  * <p>
32  * </p>
33  * 
34  * @author
35  * @version NFVO 0.5 Sep 24, 2016
36  */
37 public class ITVnfRoaFail extends MyTestManager {
38
39     private static final String POST_PATH = "src/integration-test/resources/vnfmadapter/testcase/vnfroa/addvnffail.json";
40
41     private static final String DEL_PATH = "src/integration-test/resources/vnfmadapter/testcase/vnfroa/deletevnffail.json";
42
43     private static final String GET_VNF_PATH = "src/integration-test/resources/vnfmadapter/testcase/vnfroa/getvnffail.json";
44
45     private static final String GET_JOB_PATH = "src/integration-test/resources/vnfmadapter/testcase/vnfroa/getjobfail.json";
46
47     private VnfmAdapterSuccessServer vnfmAdapterServer = new VnfmAdapterSuccessServer();
48
49
50     @Before
51     public void setup() throws ServiceException, InterruptedException {
52         vnfmAdapterServer.start();
53 //      Thread.sleep(1000*30);
54     }
55
56     @After
57     public void tearDown() throws ServiceException {
58         vnfmAdapterServer.stop();
59     }
60
61     @Test
62     public void testOperateSuccess() throws ServiceException {
63         execTestCase(new File(GET_VNF_PATH),new FailureChecker());
64         execTestCase(new File(POST_PATH),new FailureChecker());
65         execTestCase(new File(GET_JOB_PATH),new FailureChecker());
66         execTestCase(new File(DEL_PATH),new FailureChecker());
67     }
68 }