aboutsummaryrefslogtreecommitdiffstats
path: root/asdctool/src/test
diff options
context:
space:
mode:
authorPiotr Borelowski <p.borelowski@partner.samsung.com>2019-06-10 13:29:13 +0200
committerOren Kleks <orenkle@amdocs.com>2019-06-13 06:37:57 +0000
commit6a000e1f45c851ac81debe326e1f1e931987612e (patch)
treec57b36d797507ce0781d18cf801b0a40f6d7014f /asdctool/src/test
parent2623c8402a57e2035db69a9d92d2851050916801 (diff)
Added unit tests for SpringCLITool
Improved the unit test coverage in the package org.openecomp.sdc.asdctool.cli Issue-ID: SDC-2327 Signed-off-by: Piotr Borelowski <p.borelowski@partner.samsung.com> Change-Id: Ie5b262587ae704952eb75f8f4008f4d321a4acbd
Diffstat (limited to 'asdctool/src/test')
-rw-r--r--asdctool/src/test/java/org/openecomp/sdc/asdctool/cli/SpringCLIToolTest.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/asdctool/src/test/java/org/openecomp/sdc/asdctool/cli/SpringCLIToolTest.java b/asdctool/src/test/java/org/openecomp/sdc/asdctool/cli/SpringCLIToolTest.java
new file mode 100644
index 0000000000..c91a694918
--- /dev/null
+++ b/asdctool/src/test/java/org/openecomp/sdc/asdctool/cli/SpringCLIToolTest.java
@@ -0,0 +1,61 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP SDC
+ * ================================================================================
+ * Copyright (C) 2019 Samsung. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END============================================
+ * ===================================================================
+ */
+
+package org.openecomp.sdc.asdctool.cli;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+import org.springframework.context.annotation.Configuration;
+
+public class SpringCLIToolTest {
+
+ private static final String DIR_NAME = "test-dir";
+
+ private SpringCLITool impl = new SpringCLIToolImplTest();
+
+ @Test
+ public void testInit() {
+ // when
+ final CLIToolData init = impl.init(new String[]{"-c", DIR_NAME});
+
+ // then
+ assertEquals(DIR_NAME, init.getCommandLine().getOptionValue("c"));
+ assertTrue(init.getSpringApplicationContext().containsBean("config"));
+ }
+
+ private static class SpringCLIToolImplTest extends SpringCLITool {
+ @Override
+ protected Class<?> getSpringConfigurationClass() {
+ return Config.class;
+ }
+
+ @Override
+ protected String commandName() {
+ return "run";
+ }
+ }
+}
+
+@Configuration
+class Config {
+}