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 / ITVnfRoaSuccess.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.GetSuccessChecker;
27 import org.openo.nfvo.vnfmadapter.util.MyTestManager;
28 import org.openo.nfvo.vnfmadapter.util.SuccessChecker;
29
30 /**
31  * <br>
32  * <p>
33  * </p>
34  * 
35  * @author
36  * @version NFVO 0.5 Sep 24, 2016
37  */
38 public class ITVnfRoaSuccess extends MyTestManager {
39
40     private static final String POST_PATH = "src/integration-test/resources/vnfmadapter/testcase/vnfroa/addvnfsuccess.json";
41
42     private static final String DEL_PATH = "src/integration-test/resources/vnfmadapter/testcase/vnfroa/deletevnfsuccess.json";
43
44     private static final String GET_VNF_PATH = "src/integration-test/resources/vnfmadapter/testcase/vnfroa/getvnfsuccess.json";
45
46     private static final String GET_JOB_PATH = "src/integration-test/resources/vnfmadapter/testcase/vnfroa/getjobsuccess.json";
47
48     private VnfmAdapterSuccessServer vnfmAdapterServer = new VnfmAdapterSuccessServer();
49
50
51     @Before
52     public void setup() throws ServiceException, InterruptedException {
53         vnfmAdapterServer.start();
54 //      Thread.sleep(1000*60);
55     }
56
57     @After
58     public void tearDown() throws ServiceException {
59         vnfmAdapterServer.stop();
60     }
61
62     @Test
63     public void testOperateSuccess() throws ServiceException {
64         execTestCase(new File(GET_VNF_PATH),new GetSuccessChecker());
65 //        execTestCase(new File(POST_PATH),new GetSuccessChecker());
66         execTestCase(new File(GET_JOB_PATH),new GetSuccessChecker());
67         execTestCase(new File(DEL_PATH),new GetSuccessChecker());
68     }
69 }