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 / ITAuthRoaSuccess.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.AddSuccessChecker;
27 import org.openo.nfvo.vnfmadapter.util.GetSuccessChecker;
28 import org.openo.nfvo.vnfmadapter.util.MyTestManager;
29
30 /**
31  * <br>
32  * <p>
33  * </p>
34  * 
35  * @author
36  * @version NFVO 0.5 Sep 20, 2016
37  */
38 public class ITAuthRoaSuccess extends MyTestManager {
39
40     private static final String POST_PATH = "src/integration-test/resources/vnfmadapter/testcase/authroa/addauthinfosuccess.json";
41
42     private VnfmAdapterSuccessServer vnfmAdapterServer = new VnfmAdapterSuccessServer();
43
44
45     @Before
46     public void setup() throws ServiceException, InterruptedException {
47         vnfmAdapterServer.start();
48 //      Thread.sleep(1000*30);
49     }
50
51     @After
52     public void tearDown() throws ServiceException {
53         vnfmAdapterServer.stop();
54     }
55
56     @Test
57     public void testOperateSuccess1() throws ServiceException {
58         execTestCase(new File(POST_PATH));
59     }
60 }