Migrate policy api startup & config, controller to springboot
[policy/api.git] / main / src / test / java / org / onap / policy / api / main / startstop / TestApiCommandLineArguments.java
diff --git a/main/src/test/java/org/onap/policy/api/main/startstop/TestApiCommandLineArguments.java b/main/src/test/java/org/onap/policy/api/main/startstop/TestApiCommandLineArguments.java
deleted file mode 100644 (file)
index 8d3c42c..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP Policy API
- * ================================================================================
- * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
- * Modifications Copyright (C) 2021 Nordix Foundation.
- * ================================================================================
- * 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.
- *
- * SPDX-License-Identifier: Apache-2.0
- * ============LICENSE_END=========================================================
- */
-
-package org.onap.policy.api.main.startstop;
-
-import static org.assertj.core.api.Assertions.assertThat;
-import static org.assertj.core.api.Assertions.assertThatThrownBy;
-
-import org.junit.Test;
-import org.onap.policy.api.main.exception.PolicyApiRuntimeException;
-
-public class TestApiCommandLineArguments {
-    private ApiCommandLineArguments apiCmdArgs = new ApiCommandLineArguments();
-
-    @Test(expected = PolicyApiRuntimeException.class)
-    public void testApiCommandLineArgumentsStringArray() {
-        String[] args = {"---d"};
-        new ApiCommandLineArguments(args);
-    }
-
-    @Test
-    public void testNonExistentFileValidateReadableFile() {
-        apiCmdArgs.setConfigurationFilePath("src/test/resources/filetest/nonexist.json ");
-        assertThatThrownBy(apiCmdArgs::validate)
-                .hasMessageContaining("file \"src/test/resources/filetest/nonexist.json \" does not exist");
-    }
-
-    @Test
-    public void testEmptyFileNameValidateReadableFile() {
-        apiCmdArgs.setConfigurationFilePath("");
-        assertThatThrownBy(apiCmdArgs::validate)
-                .hasMessageContaining("policy-api configuration file was not specified as an argument");
-    }
-
-    @Test
-    public void testInvalidUrlValidateReadableFile() {
-        apiCmdArgs.setConfigurationFilePath("src/test\\resources/filetest\\n");
-        assertThatThrownBy(apiCmdArgs::validate).hasMessageContaining(
-                "policy-api configuration file \"src/test\\resources/filetest\\n\" does not exist");
-    }
-
-    @Test
-    public void testVersion() {
-        String[] testArgs = {"-v"};
-        ApiCommandLineArguments cmdArgs = new ApiCommandLineArguments(testArgs);
-        assertThat(cmdArgs.version()).startsWith("ONAP Policy Framework Api Service");
-    }
-}