CSIT Fix for SDC-2585
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / cli / SpringCLIToolTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP SDC
4  * ================================================================================
5  * Copyright (C) 2019 Samsung. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END============================================
19  * ===================================================================
20  */
21
22 package org.openecomp.sdc.asdctool.cli;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
26
27 import org.junit.Test;
28 import org.springframework.context.annotation.Configuration;
29
30 public class SpringCLIToolTest {
31
32     private static final String DIR_NAME = "test-dir";
33
34     private SpringCLITool impl = new SpringCLIToolImplTest();
35
36     @Test
37     public void testInit() {
38         // when
39         final CLIToolData init = impl.init(new String[]{"-c", DIR_NAME});
40
41         // then
42         assertEquals(DIR_NAME, init.getCommandLine().getOptionValue("c"));
43         assertTrue(init.getSpringApplicationContext().containsBean("config"));
44     }
45
46     private static class SpringCLIToolImplTest extends SpringCLITool {
47         @Override
48         protected Class<?> getSpringConfigurationClass() {
49             return Config.class;
50         }
51
52         @Override
53         protected String commandName() {
54             return "run";
55         }
56     }
57 }
58
59 @Configuration
60 class Config {
61 }